summaryrefslogtreecommitdiff
path: root/sw/source/uibase/config/fontcfg.cxx
blob: 7511424b61c5be0dec962bc44549a8b0693fed58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <fontcfg.hxx>
#include <i18nlangtag/mslangid.hxx>
#include <vcl/outdev.hxx>
#include <unotools/lingucfg.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/i18n/ScriptType.hpp>
#include <swtypes.hxx>

#include <unomid.h>

using namespace utl;
using namespace com::sun::star::uno;

static inline LanguageType lcl_LanguageOfType(sal_Int16 nType, sal_Int16 eWestern, sal_Int16 eCJK, sal_Int16 eCTL)
{
    return LanguageType(
                nType < FONT_STANDARD_CJK ? eWestern :
                    nType >= FONT_STANDARD_CTL ? eCTL : eCJK);
}

Sequence<OUString> SwStdFontConfig::GetPropertyNames()
{
    Sequence<OUString> aNames;
    if(!aNames.getLength())
    {
        static const char* aPropNames[] =
        {
            "DefaultFont/Standard",    // 0
            "DefaultFont/Heading",     // 1
            "DefaultFont/List",        // 2
            "DefaultFont/Caption",     // 3
            "DefaultFont/Index",       // 4
            "DefaultFontCJK/Standard", // 5
            "DefaultFontCJK/Heading",  // 6
            "DefaultFontCJK/List",     // 7
            "DefaultFontCJK/Caption",  // 8
            "DefaultFontCJK/Index",    // 9
            "DefaultFontCTL/Standard", // 10
            "DefaultFontCTL/Heading",  // 11
            "DefaultFontCTL/List",     // 12
            "DefaultFontCTL/Caption",  // 13
            "DefaultFontCTL/Index",    // 14
            "DefaultFont/StandardHeight",    // 15
            "DefaultFont/HeadingHeight",     // 16
            "DefaultFont/ListHeight",        // 17
            "DefaultFont/CaptionHeight",     // 18
            "DefaultFont/IndexHeight",       // 19
            "DefaultFontCJK/StandardHeight", // 20
            "DefaultFontCJK/HeadingHeight",  // 21
            "DefaultFontCJK/ListHeight",     // 22
            "DefaultFontCJK/CaptionHeight",  // 23
            "DefaultFontCJK/IndexHeight",    // 24
            "DefaultFontCTL/StandardHeight", // 25
            "DefaultFontCTL/HeadingHeight",  // 26
            "DefaultFontCTL/ListHeight",     // 27
            "DefaultFontCTL/CaptionHeight",  // 28
            "DefaultFontCTL/IndexHeight"     // 29
        };
        const int nCount = sizeof(aPropNames)/sizeof(const char*);
        aNames.realloc(nCount);
        OUString* pNames = aNames.getArray();
        for(int i = 0; i < nCount; i++)
        {
            pNames[i] = OUString::createFromAscii(aPropNames[i]);
        }
    }
    return aNames;
}

SwStdFontConfig::SwStdFontConfig() :
    utl::ConfigItem("Office.Writer")
{
    SvtLinguOptions aLinguOpt;

    SvtLinguConfig().GetOptions( aLinguOpt );

    sal_Int16   eWestern = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, ::com::sun::star::i18n::ScriptType::LATIN),
                eCJK = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, ::com::sun::star::i18n::ScriptType::ASIAN),
                eCTL = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, ::com::sun::star::i18n::ScriptType::COMPLEX);

    for(sal_Int16 i = 0; i < DEF_FONT_COUNT; i++)
    {
        sDefaultFonts[i] = GetDefaultFor(i,
            lcl_LanguageOfType(i, eWestern, eCJK, eCTL));
        nDefaultFontHeight[i] = -1;
    }

    Sequence<OUString> aNames = GetPropertyNames();
    Sequence<Any> aValues = GetProperties(aNames);
    const Any* pValues = aValues.getConstArray();
    OSL_ENSURE(aValues.getLength() == aNames.getLength(), "GetProperties failed");
    if(aValues.getLength() == aNames.getLength())
    {
        for(int nProp = 0; nProp < aNames.getLength(); nProp++)
        {
            if(pValues[nProp].hasValue())
            {
                if( nProp < DEF_FONT_COUNT)
                {
                    OUString sVal;
                    pValues[nProp] >>= sVal;
                    sDefaultFonts[nProp] = sVal;
                }
                else
                {
                   pValues[nProp] >>= nDefaultFontHeight[nProp - DEF_FONT_COUNT];
                   nDefaultFontHeight[nProp - DEF_FONT_COUNT] = convertMm100ToTwip(nDefaultFontHeight[nProp - DEF_FONT_COUNT]);
                }
            }
        }
    }
}

void SwStdFontConfig::ImplCommit()
{
    Sequence<OUString> aNames = GetPropertyNames();
    Sequence<Any> aValues(aNames.getLength());
    Any* pValues = aValues.getArray();
    SvtLinguOptions aLinguOpt;

    SvtLinguConfig().GetOptions( aLinguOpt );

    sal_Int16   eWestern = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, ::com::sun::star::i18n::ScriptType::LATIN),
                eCJK = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, ::com::sun::star::i18n::ScriptType::ASIAN),
                eCTL = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, ::com::sun::star::i18n::ScriptType::COMPLEX);

    for(sal_uInt16 nProp = 0;
        nProp < sal::static_int_cast< sal_uInt16, sal_Int32 >( aNames.getLength() );
            nProp++)
    {
        if( nProp < DEF_FONT_COUNT )
        {
            if(GetDefaultFor(nProp, lcl_LanguageOfType(nProp, eWestern, eCJK, eCTL)) != sDefaultFonts[nProp])
                pValues[nProp] <<= OUString(sDefaultFonts[nProp]);
        }
        else
        {
            if(nDefaultFontHeight[nProp - DEF_FONT_COUNT] > 0)
                pValues[nProp] <<= static_cast<sal_Int32>(convertTwipToMm100(nDefaultFontHeight[nProp - DEF_FONT_COUNT]));
        }
    }
    PutProperties(aNames, aValues);
}

SwStdFontConfig::~SwStdFontConfig()
{
}

bool SwStdFontConfig::IsFontDefault(sal_uInt16 nFontType) const
{
    bool bSame = false;
    SvtLinguOptions aLinguOpt;

    SvtLinguConfig().GetOptions( aLinguOpt );

    sal_Int16   eWestern = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, ::com::sun::star::i18n::ScriptType::LATIN),
                eCJK = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, ::com::sun::star::i18n::ScriptType::ASIAN),
                eCTL = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, ::com::sun::star::i18n::ScriptType::COMPLEX);

    OUString sDefFont(GetDefaultFor(FONT_STANDARD, eWestern));
    OUString sDefFontCJK(GetDefaultFor(FONT_STANDARD_CJK, eCJK));
    OUString sDefFontCTL(GetDefaultFor(FONT_STANDARD_CTL, eCTL));
    LanguageType eLang = lcl_LanguageOfType(nFontType, eWestern, eCJK, eCTL);
    switch( nFontType )
    {
        case FONT_STANDARD:
            bSame = sDefaultFonts[nFontType] == sDefFont;
        break;
        case FONT_STANDARD_CJK:
            bSame = sDefaultFonts[nFontType] == sDefFontCJK;
        break;
        case FONT_STANDARD_CTL:
            bSame = sDefaultFonts[nFontType] == sDefFontCTL;
        break;
        case FONT_OUTLINE :
        case FONT_OUTLINE_CJK :
        case FONT_OUTLINE_CTL :
            bSame = sDefaultFonts[nFontType] ==
                GetDefaultFor(nFontType, eLang);
        break;
        case FONT_LIST    :
        case FONT_CAPTION :
        case FONT_INDEX   :
            bSame = sDefaultFonts[nFontType] == sDefFont &&
                    sDefaultFonts[FONT_STANDARD] == sDefFont;
        break;
        case FONT_LIST_CJK    :
        case FONT_CAPTION_CJK :
        case FONT_INDEX_CJK   :
        {
            bool b1 = sDefaultFonts[FONT_STANDARD_CJK] == sDefFontCJK;
            bSame = b1 && sDefaultFonts[nFontType] == sDefFontCJK;
        }
        break;
        case FONT_LIST_CTL    :
        case FONT_CAPTION_CTL :
        case FONT_INDEX_CTL   :
        {
            bool b1 = sDefaultFonts[FONT_STANDARD_CJK] == sDefFontCTL;
            bSame = b1 && sDefaultFonts[nFontType] == sDefFontCTL;
        }
        break;
    }
    return bSame;
}

OUString  SwStdFontConfig::GetDefaultFor(sal_uInt16 nFontType, LanguageType eLang)
{
    DefaultFontType nFontId;
    switch( nFontType )
    {
        case FONT_OUTLINE :
            nFontId = DefaultFontType::LATIN_HEADING;
        break;
        case FONT_OUTLINE_CJK :
            nFontId = DefaultFontType::CJK_HEADING;
        break;
        case FONT_OUTLINE_CTL :
            nFontId = DefaultFontType::CTL_HEADING;
        break;
        case FONT_STANDARD_CJK:
        case FONT_LIST_CJK    :
        case FONT_CAPTION_CJK :
        case FONT_INDEX_CJK   :
            nFontId = DefaultFontType::CJK_TEXT;
        break;
        case FONT_STANDARD_CTL:
        case FONT_LIST_CTL    :
        case FONT_CAPTION_CTL :
        case FONT_INDEX_CTL   :
            nFontId = DefaultFontType::CTL_TEXT;
        break;
        default:
            nFontId = DefaultFontType::LATIN_TEXT;
    }
    vcl::Font aFont = OutputDevice::GetDefaultFont(nFontId, eLang, GetDefaultFontFlags::OnlyOne);
    return  aFont.GetName();
}

sal_Int32 SwStdFontConfig::GetDefaultHeightFor(sal_uInt16 nFontType, LanguageType eLang)
{
    sal_Int32 nRet = FONTSIZE_DEFAULT;
    switch( nFontType )
    {
        case  FONT_OUTLINE:
        case  FONT_OUTLINE_CJK:
        case  FONT_OUTLINE_CTL:
            nRet = FONTSIZE_OUTLINE;
            break;
        case FONT_STANDARD_CJK:
            nRet = FONTSIZE_CJK_DEFAULT;
            break;
    }
    if( eLang == LANGUAGE_THAI && nFontType >= FONT_STANDARD_CTL )
    {
        nRet = nRet * 4 / 3;
    }
    return nRet;
}

void SwStdFontConfig::ChangeInt( sal_uInt16 nFontType, sal_Int32 nHeight )
{
    OSL_ENSURE( nFontType < DEF_FONT_COUNT, "invalid index in SwStdFontConfig::ChangInt()");
    if( nFontType < DEF_FONT_COUNT && nDefaultFontHeight[nFontType] != nHeight)
    {
        SvtLinguOptions aLinguOpt;
        SvtLinguConfig().GetOptions( aLinguOpt );

        sal_Int16 eWestern = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, ::com::sun::star::i18n::ScriptType::LATIN),
                  eCJK = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, ::com::sun::star::i18n::ScriptType::ASIAN),
                  eCTL = MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, ::com::sun::star::i18n::ScriptType::COMPLEX);

        // #i92090# default height value sets back to -1
        const sal_Int32 nDefaultHeight = GetDefaultHeightFor(nFontType, lcl_LanguageOfType(nFontType, eWestern, eCJK, eCTL));
        const bool bIsDefaultHeight = nHeight == nDefaultHeight;
        if( bIsDefaultHeight && nDefaultFontHeight[nFontType] > 0 )
        {
            SetModified();
            nDefaultFontHeight[nFontType] = -1;
        }
        else if( !bIsDefaultHeight && nHeight != nDefaultFontHeight[nFontType] )
        {
            SetModified();
            nDefaultFontHeight[nFontType] = nHeight;
        }
    }
}

sal_Int32 SwStdFontConfig::GetFontHeight( sal_uInt8 nFont, sal_uInt8 nScriptType, LanguageType eLang )
{
    OSL_ENSURE(nFont + FONT_PER_GROUP * nScriptType < DEF_FONT_COUNT, "wrong index in SwStdFontConfig::GetFontHeight()");
    sal_Int32 nRet = nDefaultFontHeight[nFont + FONT_PER_GROUP * nScriptType];
    if(nRet <= 0)
        return GetDefaultHeightFor(nFont + FONT_PER_GROUP * nScriptType, eLang);
    return nRet;
}

void SwStdFontConfig::Notify( const ::com::sun::star::uno::Sequence< OUString >& ) {}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
lations/diff/source/bo/helpcontent2/source/text/swriter/01.po?h=distro/collabora/co-24.04&id=e882b1d51ebaf4054a12c8ea007efda3097f17a8'>source/bo/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/bo/sfx2/messages.po4
-rw-r--r--source/bo/sw/messages.po24
-rw-r--r--source/bo/vcl/messages.po19
-rw-r--r--source/br/cui/messages.po102
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/br/sfx2/messages.po4
-rw-r--r--source/br/sw/messages.po24
-rw-r--r--source/br/vcl/messages.po19
-rw-r--r--source/brx/cui/messages.po102
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/brx/sfx2/messages.po4
-rw-r--r--source/brx/sw/messages.po24
-rw-r--r--source/brx/vcl/messages.po19
-rw-r--r--source/bs/cui/messages.po102
-rw-r--r--source/bs/helpcontent2/source/auxiliary.po10
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po609
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po64
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/bs/sfx2/messages.po4
-rw-r--r--source/bs/sw/messages.po24
-rw-r--r--source/bs/vcl/messages.po19
-rw-r--r--source/ca-valencia/cui/messages.po102
-rw-r--r--source/ca-valencia/helpcontent2/source/auxiliary.po16
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ca-valencia/sfx2/messages.po4
-rw-r--r--source/ca-valencia/sw/messages.po24
-rw-r--r--source/ca-valencia/vcl/messages.po19
-rw-r--r--source/ca/cui/messages.po104
-rw-r--r--source/ca/helpcontent2/source/auxiliary.po16
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po91
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po13
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po21
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ca/sfx2/messages.po4
-rw-r--r--source/ca/sw/messages.po60
-rw-r--r--source/ca/vcl/messages.po19
-rw-r--r--source/ckb/cui/messages.po102
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ckb/sfx2/messages.po4
-rw-r--r--source/ckb/sw/messages.po26
-rw-r--r--source/ckb/vcl/messages.po19
-rw-r--r--source/cs/cui/messages.po118
-rw-r--r--source/cs/helpcontent2/source/auxiliary.po16
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po673
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po46
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po74
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po96
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/cs/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po6
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po288
-rw-r--r--source/cs/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po180
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/cs/sd/messages.po8
-rw-r--r--source/cs/sfx2/messages.po4
-rw-r--r--source/cs/svx/messages.po6
-rw-r--r--source/cs/sw/messages.po74
-rw-r--r--source/cs/vcl/messages.po19
-rw-r--r--source/cy/cui/messages.po104
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/cy/sfx2/messages.po4
-rw-r--r--source/cy/sw/messages.po24
-rw-r--r--source/cy/vcl/messages.po19
-rw-r--r--source/da/cui/messages.po106
-rw-r--r--source/da/helpcontent2/source/auxiliary.po16
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po623
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po94
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po28
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/da/sfx2/messages.po6
-rw-r--r--source/da/sw/messages.po24
-rw-r--r--source/da/vcl/messages.po21
-rw-r--r--source/de/cui/messages.po162
-rw-r--r--source/de/dbaccess/messages.po8
-rw-r--r--source/de/desktop/messages.po20
-rw-r--r--source/de/dictionaries/en/dialog.po6
-rw-r--r--source/de/filter/messages.po18
-rw-r--r--source/de/filter/source/config/fragments/types.po10
-rw-r--r--source/de/formula/messages.po20
-rw-r--r--source/de/helpcontent2/source/auxiliary.po24
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/de/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po681
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/de/helpcontent2/source/text/scalc.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po156
-rw-r--r--source/de/helpcontent2/source/text/scalc/02.po4
-rw-r--r--source/de/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po10
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/de/helpcontent2/source/text/shared.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po32
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po172
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/de/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/autokorr.po26
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po112
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po56
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po126
-rw-r--r--source/de/helpcontent2/source/text/shared/menu.po10
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po104
-rw-r--r--source/de/helpcontent2/source/text/simpress.po18
-rw-r--r--source/de/helpcontent2/source/text/simpress/00.po14
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po74
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/de/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po50
-rw-r--r--source/de/helpcontent2/source/text/smath/00.po10
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po86
-rw-r--r--source/de/helpcontent2/source/text/smath/guide.po104
-rw-r--r--source/de/helpcontent2/source/text/swriter.po14
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po44
-rw-r--r--source/de/helpcontent2/source/text/swriter/04.po4
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po32
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/de/officecfg/registry/data/org/openoffice.po25
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/de/sc/messages.po6
-rw-r--r--source/de/scp2/source/graphicfilter.po26
-rw-r--r--source/de/scp2/source/ooo.po6
-rw-r--r--source/de/sd/messages.po44
-rw-r--r--source/de/setup_native/source/mac.po10
-rw-r--r--source/de/sfx2/messages.po84
-rw-r--r--source/de/starmath/messages.po8
-rw-r--r--source/de/svtools/messages.po10
-rw-r--r--source/de/svx/messages.po10
-rw-r--r--source/de/sw/messages.po104
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po8
-rw-r--r--source/de/vcl/messages.po19
-rw-r--r--source/de/wizards/messages.po6
-rw-r--r--source/de/wizards/source/resources.po6
-rw-r--r--source/dgo/cui/messages.po102
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/dgo/sfx2/messages.po4
-rw-r--r--source/dgo/sw/messages.po24
-rw-r--r--source/dgo/vcl/messages.po19
-rw-r--r--source/dsb/cui/messages.po102
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/dsb/sfx2/messages.po4
-rw-r--r--source/dsb/sw/messages.po24
-rw-r--r--source/dsb/vcl/messages.po19
-rw-r--r--source/dz/cui/messages.po102
-rw-r--r--source/dz/helpcontent2/source/auxiliary.po10
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po70
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/dz/sfx2/messages.po4
-rw-r--r--source/dz/sw/messages.po24
-rw-r--r--source/dz/vcl/messages.po19
-rw-r--r--source/el/cui/messages.po106
-rw-r--r--source/el/helpcontent2/source/auxiliary.po16
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po92
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po22
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po18
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po8
-rw-r--r--source/el/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/el/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po48
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/el/sfx2/messages.po6
-rw-r--r--source/el/sw/messages.po42
-rw-r--r--source/el/vcl/messages.po19
-rw-r--r--source/en-GB/cui/messages.po104
-rw-r--r--source/en-GB/helpcontent2/source/auxiliary.po16
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/en-GB/sfx2/messages.po4
-rw-r--r--source/en-GB/sw/messages.po24
-rw-r--r--source/en-GB/vcl/messages.po19
-rw-r--r--source/en-ZA/cui/messages.po102
-rw-r--r--source/en-ZA/helpcontent2/source/auxiliary.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/en-ZA/sfx2/messages.po4
-rw-r--r--source/en-ZA/sw/messages.po24
-rw-r--r--source/en-ZA/vcl/messages.po19
-rw-r--r--source/eo/cui/messages.po102
-rw-r--r--source/eo/helpcontent2/source/auxiliary.po14
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po613
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/eo/sfx2/messages.po4
-rw-r--r--source/eo/sw/messages.po24
-rw-r--r--source/eo/vcl/messages.po19
-rw-r--r--source/es/cui/messages.po110
-rw-r--r--source/es/helpcontent2/source/auxiliary.po16
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po627
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po47
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po154
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po134
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/es/sc/messages.po14
-rw-r--r--source/es/scaddins/messages.po46
-rw-r--r--source/es/sfx2/messages.po8
-rw-r--r--source/es/svx/messages.po6
-rw-r--r--source/es/sw/messages.po78
-rw-r--r--source/es/vcl/messages.po19
-rw-r--r--source/es/wizards/messages.po6
-rw-r--r--source/et/cui/messages.po102
-rw-r--r--source/et/helpcontent2/source/auxiliary.po16
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po66
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/et/sfx2/messages.po4
-rw-r--r--source/et/sw/messages.po24
-rw-r--r--source/et/vcl/messages.po19
-rw-r--r--source/eu/chart2/messages.po8
-rw-r--r--source/eu/connectivity/messages.po6
-rw-r--r--source/eu/cui/messages.po130
-rw-r--r--source/eu/helpcontent2/source/auxiliary.po16
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po635
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po61
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po88
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po84
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po129
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po38
-rw-r--r--source/eu/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/autopi.po12
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po56
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po50
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po38
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po50
-rw-r--r--source/eu/nlpsolver/src/locale.po8
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/eu/sc/messages.po22
-rw-r--r--source/eu/sd/messages.po14
-rw-r--r--source/eu/sfx2/messages.po4
-rw-r--r--source/eu/svtools/messages.po6
-rw-r--r--source/eu/svx/messages.po8
-rw-r--r--source/eu/sw/messages.po86
-rw-r--r--source/eu/vcl/messages.po23
-rw-r--r--source/fa/cui/messages.po102
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/fa/sfx2/messages.po4
-rw-r--r--source/fa/sw/messages.po24
-rw-r--r--source/fa/vcl/messages.po19
-rw-r--r--source/fi/cui/messages.po102
-rw-r--r--source/fi/helpcontent2/source/auxiliary.po16
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/fi/sfx2/messages.po4
-rw-r--r--source/fi/sw/messages.po24
-rw-r--r--source/fi/vcl/messages.po19
-rw-r--r--source/fr/cui/messages.po102
-rw-r--r--source/fr/helpcontent2/source/auxiliary.po16
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po74
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/fr/sfx2/messages.po4
-rw-r--r--source/fr/sw/messages.po24
-rw-r--r--source/fr/vcl/messages.po19
-rw-r--r--source/fur/cui/messages.po102
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/fur/sfx2/messages.po4
-rw-r--r--source/fur/sw/messages.po24
-rw-r--r--source/fur/vcl/messages.po19
-rw-r--r--source/fy/cui/messages.po104
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/fy/sfx2/messages.po4
-rw-r--r--source/fy/sw/messages.po24
-rw-r--r--source/fy/vcl/messages.po19
-rw-r--r--source/ga/cui/messages.po102
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ga/sfx2/messages.po4
-rw-r--r--source/ga/sw/messages.po24
-rw-r--r--source/ga/vcl/messages.po19
-rw-r--r--source/gd/cui/messages.po102
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/gd/sfx2/messages.po4
-rw-r--r--source/gd/sw/messages.po24
-rw-r--r--source/gd/vcl/messages.po19
-rw-r--r--source/gl/cui/messages.po118
-rw-r--r--source/gl/helpcontent2/source/auxiliary.po16
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po617
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po74
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/gl/sd/messages.po8
-rw-r--r--source/gl/sfx2/messages.po4
-rw-r--r--source/gl/sw/messages.po74
-rw-r--r--source/gl/vcl/messages.po19
-rw-r--r--source/gu/cui/messages.po102
-rw-r--r--source/gu/helpcontent2/source/auxiliary.po10
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po607
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/gu/sfx2/messages.po4
-rw-r--r--source/gu/sw/messages.po24
-rw-r--r--source/gu/vcl/messages.po19
-rw-r--r--source/gug/cui/messages.po102
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po16
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po627
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po47
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po154
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po134
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/gug/sfx2/messages.po4
-rw-r--r--source/gug/sw/messages.po24
-rw-r--r--source/gug/vcl/messages.po19
-rw-r--r--source/he/cui/messages.po102
-rw-r--r--source/he/helpcontent2/source/auxiliary.po12
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/he/sfx2/messages.po4
-rw-r--r--source/he/sw/messages.po24
-rw-r--r--source/he/vcl/messages.po19
-rw-r--r--source/hi/cui/messages.po102
-rw-r--r--source/hi/helpcontent2/source/auxiliary.po10
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po577
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hi/sfx2/messages.po4
-rw-r--r--source/hi/sw/messages.po24
-rw-r--r--source/hi/vcl/messages.po19
-rw-r--r--source/hr/cui/messages.po102
-rw-r--r--source/hr/helpcontent2/source/auxiliary.po14
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po607
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hr/sfx2/messages.po4
-rw-r--r--source/hr/sw/messages.po24
-rw-r--r--source/hr/vcl/messages.po19
-rw-r--r--source/hsb/cui/messages.po102
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hsb/sfx2/messages.po4
-rw-r--r--source/hsb/sw/messages.po24
-rw-r--r--source/hsb/vcl/messages.po19
-rw-r--r--source/hu/cui/messages.po102
-rw-r--r--source/hu/helpcontent2/source/auxiliary.po16
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hu/sfx2/messages.po4
-rw-r--r--source/hu/sw/messages.po24
-rw-r--r--source/hu/vcl/messages.po19
-rw-r--r--source/id/cui/messages.po102
-rw-r--r--source/id/helpcontent2/source/auxiliary.po14
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/id/sc/messages.po8
-rw-r--r--source/id/sd/messages.po8
-rw-r--r--source/id/sfx2/messages.po4
-rw-r--r--source/id/sw/messages.po24
-rw-r--r--source/id/vcl/messages.po19
-rw-r--r--source/is/cui/messages.po102
-rw-r--r--source/is/helpcontent2/source/auxiliary.po14
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po607
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/is/sfx2/messages.po4
-rw-r--r--source/is/sw/messages.po24
-rw-r--r--source/is/vcl/messages.po19
-rw-r--r--source/it/cui/messages.po102
-rw-r--r--source/it/helpcontent2/source/auxiliary.po16
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po74
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/it/sfx2/messages.po4
-rw-r--r--source/it/sw/messages.po24
-rw-r--r--source/it/vcl/messages.po19
-rw-r--r--source/ja/cui/messages.po146
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po12
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ja/sfx2/messages.po4
-rw-r--r--source/ja/sw/messages.po24
-rw-r--r--source/ja/vcl/messages.po19
-rw-r--r--source/jv/cui/messages.po102
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/jv/sfx2/messages.po4
-rw-r--r--source/jv/sw/messages.po24
-rw-r--r--source/jv/vcl/messages.po19
-rw-r--r--source/ka/cui/messages.po102
-rw-r--r--source/ka/helpcontent2/source/auxiliary.po10
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po573
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po66
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ka/sfx2/messages.po4
-rw-r--r--source/ka/sw/messages.po24
-rw-r--r--source/ka/vcl/messages.po19
-rw-r--r--source/kab/cui/messages.po102
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kab/sfx2/messages.po4
-rw-r--r--source/kab/sw/messages.po24
-rw-r--r--source/kab/vcl/messages.po19
-rw-r--r--source/kk/cui/messages.po102
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kk/sfx2/messages.po4
-rw-r--r--source/kk/sw/messages.po26
-rw-r--r--source/kk/vcl/messages.po19
-rw-r--r--source/kl/cui/messages.po102
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kl/sfx2/messages.po4
-rw-r--r--source/kl/sw/messages.po24
-rw-r--r--source/kl/vcl/messages.po19
-rw-r--r--source/km/cui/messages.po102
-rw-r--r--source/km/helpcontent2/source/auxiliary.po10
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/km/sfx2/messages.po4
-rw-r--r--source/km/sw/messages.po24
-rw-r--r--source/km/vcl/messages.po19
-rw-r--r--source/kmr-Latn/cui/messages.po102
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kmr-Latn/sfx2/messages.po4
-rw-r--r--source/kmr-Latn/sw/messages.po24
-rw-r--r--source/kmr-Latn/vcl/messages.po19
-rw-r--r--source/kn/cui/messages.po102
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kn/sfx2/messages.po4
-rw-r--r--source/kn/sw/messages.po24
-rw-r--r--source/kn/vcl/messages.po19
-rw-r--r--source/ko/cui/messages.po102
-rw-r--r--source/ko/helpcontent2/source/auxiliary.po16
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ko/sfx2/messages.po4
-rw-r--r--source/ko/sw/messages.po24
-rw-r--r--source/ko/vcl/messages.po19
-rw-r--r--source/kok/cui/messages.po102
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/kok/sfx2/messages.po4
-rw-r--r--source/kok/sw/messages.po24
-rw-r--r--source/kok/vcl/messages.po19
-rw-r--r--source/ks/cui/messages.po102
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ks/sfx2/messages.po4
-rw-r--r--source/ks/sw/messages.po24
-rw-r--r--source/ks/vcl/messages.po19
-rw-r--r--source/ky/cui/messages.po102
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ky/sfx2/messages.po4
-rw-r--r--source/ky/sw/messages.po24
-rw-r--r--source/ky/vcl/messages.po19
-rw-r--r--source/lb/cui/messages.po102
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/lb/sfx2/messages.po4
-rw-r--r--source/lb/sw/messages.po24
-rw-r--r--source/lb/vcl/messages.po19
-rw-r--r--source/lo/cui/messages.po102
-rw-r--r--source/lo/helpcontent2/source/auxiliary.po10
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po565
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/lo/sfx2/messages.po4
-rw-r--r--source/lo/sw/messages.po24
-rw-r--r--source/lo/vcl/messages.po19
-rw-r--r--source/lt/cui/messages.po102
-rw-r--r--source/lt/helpcontent2/source/auxiliary.po16
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po74
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/lt/sfx2/messages.po4
-rw-r--r--source/lt/sw/messages.po24
-rw-r--r--source/lt/vcl/messages.po19
-rw-r--r--source/lv/cui/messages.po102
-rw-r--r--source/lv/helpcontent2/source/auxiliary.po10
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po595
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po64
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/lv/sfx2/messages.po4
-rw-r--r--source/lv/sw/messages.po26
-rw-r--r--source/lv/vcl/messages.po19
-rw-r--r--source/mai/cui/messages.po102
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/mai/sfx2/messages.po4
-rw-r--r--source/mai/sw/messages.po24
-rw-r--r--source/mai/vcl/messages.po19
-rw-r--r--source/mk/cui/messages.po102
-rw-r--r--source/mk/helpcontent2/source/auxiliary.po10
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/mk/sfx2/messages.po4
-rw-r--r--source/mk/sw/messages.po24
-rw-r--r--source/mk/vcl/messages.po19
-rw-r--r--source/ml/cui/messages.po102
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ml/sfx2/messages.po4
-rw-r--r--source/ml/sw/messages.po24
-rw-r--r--source/ml/vcl/messages.po19
-rw-r--r--source/mn/cui/messages.po102
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/mn/sfx2/messages.po4
-rw-r--r--source/mn/sw/messages.po24
-rw-r--r--source/mn/vcl/messages.po19
-rw-r--r--source/mni/cui/messages.po102
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/mni/sfx2/messages.po4
-rw-r--r--source/mni/sw/messages.po24
-rw-r--r--source/mni/vcl/messages.po19
-rw-r--r--source/mr/cui/messages.po102
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/mr/sfx2/messages.po4
-rw-r--r--source/mr/sw/messages.po24
-rw-r--r--source/mr/vcl/messages.po19
-rw-r--r--source/my/cui/messages.po102
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/my/sfx2/messages.po4
-rw-r--r--source/my/sw/messages.po24
-rw-r--r--source/my/vcl/messages.po19
-rw-r--r--source/nb/cui/messages.po102
-rw-r--r--source/nb/helpcontent2/source/auxiliary.po16
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po581
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po64
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/nb/sfx2/messages.po4
-rw-r--r--source/nb/sw/messages.po24
-rw-r--r--source/nb/vcl/messages.po19
-rw-r--r--source/ne/cui/messages.po102
-rw-r--r--source/ne/helpcontent2/source/auxiliary.po10
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ne/sfx2/messages.po4
-rw-r--r--source/ne/sw/messages.po24
-rw-r--r--source/ne/vcl/messages.po19
-rw-r--r--source/nl/cui/messages.po106
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po16
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po74
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po78
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/nl/sfx2/messages.po4
-rw-r--r--source/nl/svx/messages.po4
-rw-r--r--source/nl/sw/messages.po44
-rw-r--r--source/nl/vcl/messages.po19
-rw-r--r--source/nn/cui/messages.po108
-rw-r--r--source/nn/helpcontent2/source/auxiliary.po16
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po739
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po78
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po42
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po40
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po48
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po46
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/nn/sfx2/messages.po4
-rw-r--r--source/nn/sw/messages.po24
-rw-r--r--source/nn/vcl/messages.po21
-rw-r--r--source/nr/cui/messages.po102
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/nr/sfx2/messages.po4
-rw-r--r--source/nr/sw/messages.po24
-rw-r--r--source/nr/vcl/messages.po19
-rw-r--r--source/nso/cui/messages.po102
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/nso/sfx2/messages.po4
-rw-r--r--source/nso/sw/messages.po24
-rw-r--r--source/nso/vcl/messages.po19
-rw-r--r--source/oc/cui/messages.po112
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/oc/sfx2/messages.po16
-rw-r--r--source/oc/svtools/messages.po4
-rw-r--r--source/oc/svx/messages.po12
-rw-r--r--source/oc/sw/messages.po44
-rw-r--r--source/oc/vcl/messages.po21
-rw-r--r--source/om/cui/messages.po102
-rw-r--r--source/om/helpcontent2/source/auxiliary.po10
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/om/sfx2/messages.po4
-rw-r--r--source/om/sw/messages.po24
-rw-r--r--source/om/vcl/messages.po19
-rw-r--r--source/or/cui/messages.po102
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/or/sfx2/messages.po4
-rw-r--r--source/or/sw/messages.po24
-rw-r--r--source/or/vcl/messages.po19
-rw-r--r--source/pa-IN/cui/messages.po102
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/pa-IN/sfx2/messages.po4
-rw-r--r--source/pa-IN/sw/messages.po24
-rw-r--r--source/pa-IN/vcl/messages.po19
-rw-r--r--source/pl/cui/messages.po106
-rw-r--r--source/pl/helpcontent2/source/auxiliary.po16
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pl/sfx2/messages.po4
-rw-r--r--source/pl/sw/messages.po42
-rw-r--r--source/pl/vcl/messages.po21
-rw-r--r--source/pt-BR/cui/messages.po106
-rw-r--r--source/pt-BR/helpcontent2/source/auxiliary.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po625
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po90
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress.po98
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po38
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pt-BR/sfx2/messages.po6
-rw-r--r--source/pt-BR/sw/messages.po42
-rw-r--r--source/pt-BR/vcl/messages.po21
-rw-r--r--source/pt/cui/messages.po120
-rw-r--r--source/pt/helpcontent2/source/auxiliary.po16
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/pt/helpcontent2/source/text/sdatabase.po34
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/pt/sd/messages.po8
-rw-r--r--source/pt/sfx2/messages.po4
-rw-r--r--source/pt/svx/messages.po6
-rw-r--r--source/pt/sw/messages.po78
-rw-r--r--source/pt/vcl/messages.po19
-rw-r--r--source/ro/cui/messages.po102
-rw-r--r--source/ro/helpcontent2/source/auxiliary.po10
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po565
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ro/sfx2/messages.po4
-rw-r--r--source/ro/sw/messages.po24
-rw-r--r--source/ro/vcl/messages.po19
-rw-r--r--source/ru/cui/messages.po102
-rw-r--r--source/ru/helpcontent2/source/auxiliary.po14
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ru/sfx2/messages.po4
-rw-r--r--source/ru/sw/messages.po24
-rw-r--r--source/ru/vcl/messages.po19
-rw-r--r--source/rw/cui/messages.po102
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/rw/sfx2/messages.po4
-rw-r--r--source/rw/sw/messages.po24
-rw-r--r--source/rw/vcl/messages.po19
-rw-r--r--source/sa-IN/cui/messages.po102
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sa-IN/sfx2/messages.po4
-rw-r--r--source/sa-IN/sw/messages.po24
-rw-r--r--source/sa-IN/vcl/messages.po19
-rw-r--r--source/sah/cui/messages.po102
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sah/sfx2/messages.po4
-rw-r--r--source/sah/sw/messages.po24
-rw-r--r--source/sah/vcl/messages.po19
-rw-r--r--source/sat/cui/messages.po102
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sat/sfx2/messages.po4
-rw-r--r--source/sat/sw/messages.po24
-rw-r--r--source/sat/vcl/messages.po19
-rw-r--r--source/sd/cui/messages.po102
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sd/sfx2/messages.po4
-rw-r--r--source/sd/sw/messages.po24
-rw-r--r--source/sd/vcl/messages.po19
-rw-r--r--source/si/accessibility/messages.po30
-rw-r--r--source/si/avmedia/messages.po30
-rw-r--r--source/si/basctl/messages.po30
-rw-r--r--source/si/basic/messages.po30
-rw-r--r--source/si/chart2/messages.po87
-rw-r--r--source/si/connectivity/messages.po30
-rw-r--r--source/si/cui/messages.po240
-rw-r--r--source/si/dbaccess/messages.po30
-rw-r--r--source/si/desktop/messages.po30
-rw-r--r--source/si/dictionaries/si_LK.po17
-rw-r--r--source/si/editeng/messages.po30
-rw-r--r--source/si/extensions/messages.po30
-rw-r--r--source/si/filter/messages.po30
-rw-r--r--source/si/forms/messages.po30
-rw-r--r--source/si/formula/messages.po30
-rw-r--r--source/si/fpicker/messages.po30
-rw-r--r--source/si/framework/messages.po30
-rw-r--r--source/si/helpcontent2/source/auxiliary.po10
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po597
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/si/oox/messages.po32
-rw-r--r--source/si/reportdesign/messages.po30
-rw-r--r--source/si/sc/messages.po30
-rw-r--r--source/si/scaddins/messages.po32
-rw-r--r--source/si/sccomp/messages.po30
-rw-r--r--source/si/sd/messages.po30
-rw-r--r--source/si/sfx2/messages.po32
-rw-r--r--source/si/shell/messages.po32
-rw-r--r--source/si/starmath/messages.po32
-rw-r--r--source/si/svl/messages.po30
-rw-r--r--source/si/svtools/messages.po30
-rw-r--r--source/si/svx/messages.po30
-rw-r--r--source/si/sw/messages.po52
-rw-r--r--source/si/uui/messages.po30
-rw-r--r--source/si/vcl/messages.po47
-rw-r--r--source/si/wizards/messages.po30
-rw-r--r--source/si/writerperfect/messages.po30
-rw-r--r--source/si/xmlsecurity/messages.po30
-rw-r--r--source/sid/cui/messages.po102
-rw-r--r--source/sid/helpcontent2/source/auxiliary.po10
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po64
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sid/sfx2/messages.po4
-rw-r--r--source/sid/sw/messages.po24
-rw-r--r--source/sid/vcl/messages.po19
-rw-r--r--source/sk/cui/messages.po104
-rw-r--r--source/sk/helpcontent2/source/auxiliary.po10
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po593
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po66
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sk/sfx2/messages.po4
-rw-r--r--source/sk/sw/messages.po24
-rw-r--r--source/sk/vcl/messages.po19
-rw-r--r--source/sq/cui/messages.po102
-rw-r--r--source/sq/helpcontent2/source/auxiliary.po14
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po577
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sq/sfx2/messages.po4
-rw-r--r--source/sq/sw/messages.po24
-rw-r--r--source/sq/vcl/messages.po19
-rw-r--r--source/sr-Latn/cui/messages.po102
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sr-Latn/sfx2/messages.po4
-rw-r--r--source/sr-Latn/sw/messages.po24
-rw-r--r--source/sr-Latn/vcl/messages.po19
-rw-r--r--source/sr/chart2/messages.po130
-rw-r--r--source/sr/cui/messages.po614
-rw-r--r--source/sr/dbaccess/messages.po8
-rw-r--r--source/sr/extras/source/autocorr/emoji.po8
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/sr/sc/messages.po6
-rw-r--r--source/sr/sfx2/messages.po4
-rw-r--r--source/sr/svx/messages.po7
-rw-r--r--source/sr/sw/messages.po24
-rw-r--r--source/sr/vcl/messages.po19
-rw-r--r--source/ss/cui/messages.po102
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ss/sfx2/messages.po4
-rw-r--r--source/ss/sw/messages.po24
-rw-r--r--source/ss/vcl/messages.po19
-rw-r--r--source/st/cui/messages.po102
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/st/sfx2/messages.po4
-rw-r--r--source/st/sw/messages.po24
-rw-r--r--source/st/vcl/messages.po19
-rw-r--r--source/sv/cui/messages.po102
-rw-r--r--source/sv/helpcontent2/source/auxiliary.po14
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po619
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sv/sfx2/messages.po4
-rw-r--r--source/sv/sw/messages.po24
-rw-r--r--source/sv/vcl/messages.po21
-rw-r--r--source/sw-TZ/cui/messages.po102
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/sw-TZ/sfx2/messages.po4
-rw-r--r--source/sw-TZ/sw/messages.po24
-rw-r--r--source/sw-TZ/vcl/messages.po19
-rw-r--r--source/szl/cui/messages.po102
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/szl/sfx2/messages.po4
-rw-r--r--source/szl/sw/messages.po26
-rw-r--r--source/szl/vcl/messages.po19
-rw-r--r--source/ta/cui/messages.po102
-rw-r--r--source/ta/helpcontent2/source/auxiliary.po10
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po571
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po16
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ta/sfx2/messages.po4
-rw-r--r--source/ta/sw/messages.po24
-rw-r--r--source/ta/vcl/messages.po19
-rw-r--r--source/te/cui/messages.po102
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/te/sfx2/messages.po4
-rw-r--r--source/te/sw/messages.po24
-rw-r--r--source/te/vcl/messages.po19
-rw-r--r--source/tg/cui/messages.po102
-rw-r--r--source/tg/helpcontent2/source/auxiliary.po10
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po569
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po70
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/tg/sfx2/messages.po4
-rw-r--r--source/tg/sw/messages.po24
-rw-r--r--source/tg/vcl/messages.po19
-rw-r--r--source/th/cui/messages.po102
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/th/sfx2/messages.po4
-rw-r--r--source/th/sw/messages.po24
-rw-r--r--source/th/vcl/messages.po19
-rw-r--r--source/ti/cui/messages.po102
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ti/sfx2/messages.po4
-rw-r--r--source/ti/sw/messages.po24
-rw-r--r--source/ti/vcl/messages.po19
-rw-r--r--source/tn/cui/messages.po102
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/tn/sfx2/messages.po4
-rw-r--r--source/tn/sw/messages.po24
-rw-r--r--source/tn/vcl/messages.po19
-rw-r--r--source/tr/cui/messages.po102
-rw-r--r--source/tr/helpcontent2/source/auxiliary.po14
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/tr/sfx2/messages.po4
-rw-r--r--source/tr/sw/messages.po24
-rw-r--r--source/tr/vcl/messages.po19
-rw-r--r--source/ts/cui/messages.po102
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ts/sfx2/messages.po4
-rw-r--r--source/ts/sw/messages.po24
-rw-r--r--source/ts/vcl/messages.po19
-rw-r--r--source/tt/cui/messages.po102
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/tt/sfx2/messages.po4
-rw-r--r--source/tt/sw/messages.po24
-rw-r--r--source/tt/vcl/messages.po19
-rw-r--r--source/ug/cui/messages.po102
-rw-r--r--source/ug/helpcontent2/source/auxiliary.po10
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po571
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ug/sfx2/messages.po4
-rw-r--r--source/ug/sw/messages.po24
-rw-r--r--source/ug/vcl/messages.po19
-rw-r--r--source/uk/chart2/messages.po46
-rw-r--r--source/uk/cui/messages.po104
-rw-r--r--source/uk/helpcontent2/source/auxiliary.po16
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/uk/helpcontent2/source/text/schart/01.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/uk/sc/messages.po30
-rw-r--r--source/uk/sfx2/messages.po16
-rw-r--r--source/uk/svx/messages.po44
-rw-r--r--source/uk/sw/messages.po24
-rw-r--r--source/uk/vcl/messages.po19
-rw-r--r--source/ur/cui/messages.po102
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ur/sfx2/messages.po4
-rw-r--r--source/ur/sw/messages.po24
-rw-r--r--source/ur/vcl/messages.po19
-rw-r--r--source/uz/cui/messages.po102
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/uz/sfx2/messages.po4
-rw-r--r--source/uz/sw/messages.po24
-rw-r--r--source/uz/vcl/messages.po19
-rw-r--r--source/ve/cui/messages.po102
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/ve/sfx2/messages.po4
-rw-r--r--source/ve/sw/messages.po24
-rw-r--r--source/ve/vcl/messages.po19
-rw-r--r--source/vec/cui/messages.po114
-rw-r--r--source/vec/desktop/messages.po6
-rw-r--r--source/vec/fpicker/messages.po10
-rw-r--r--source/vec/framework/messages.po42
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/vec/readlicense_oo/docs.po12
-rw-r--r--source/vec/reportdesign/messages.po80
-rw-r--r--source/vec/sc/messages.po8
-rw-r--r--source/vec/sfx2/messages.po26
-rw-r--r--source/vec/sw/messages.po38
-rw-r--r--source/vec/vcl/messages.po19
-rw-r--r--source/vec/xmlsecurity/messages.po14
-rw-r--r--source/vi/cui/messages.po102
-rw-r--r--source/vi/helpcontent2/source/auxiliary.po10
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/vi/sfx2/messages.po4
-rw-r--r--source/vi/sw/messages.po24
-rw-r--r--source/vi/vcl/messages.po19
-rw-r--r--source/xh/cui/messages.po102
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/xh/sfx2/messages.po4
-rw-r--r--source/xh/sw/messages.po24
-rw-r--r--source/xh/vcl/messages.po19
-rw-r--r--source/zh-CN/chart2/messages.po6
-rw-r--r--source/zh-CN/cui/messages.po200
-rw-r--r--source/zh-CN/helpcontent2/source/auxiliary.po16
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po621
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/01.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/zh-CN/sfx2/messages.po16
-rw-r--r--source/zh-CN/svx/messages.po8
-rw-r--r--source/zh-CN/sw/messages.po46
-rw-r--r--source/zh-CN/vcl/messages.po21
-rw-r--r--source/zh-TW/cui/messages.po102
-rw-r--r--source/zh-TW/helpcontent2/source/auxiliary.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po615
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po29
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po72
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po92
-rw-r--r--source/zh-TW/sd/messages.po18
-rw-r--r--source/zh-TW/sfx2/messages.po4
-rw-r--r--source/zh-TW/sw/messages.po24
-rw-r--r--source/zh-TW/vcl/messages.po21
-rw-r--r--source/zu/cui/messages.po102
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/zu/sfx2/messages.po4
-rw-r--r--source/zu/sw/messages.po24
-rw-r--r--source/zu/vcl/messages.po19
1259 files changed, 37454 insertions, 39730 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index ed49b4bf692..749b9ad5487 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -3536,10 +3536,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8974,6 +8974,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9275,13 +9293,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14362,157 +14380,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Аилыркаага"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Аартра/Аиқәырхара рдиалогқәа"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Акьыҧхьра адиалогқәа"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Адокумент аҭагылазаашьа"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ашықәс (ҩ-цифрак)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME афаилқәа рассоциациақәа"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17211,33 +17235,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ab/extras/source/autocorr/emoji.po b/source/ab/extras/source/autocorr/emoji.po
index 31c719a568e..87c682bbb1d 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-28 09:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:39+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"
@@ -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: 1516028970.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
@@ -734,7 +734,7 @@ msgctxt ""
"PRIME\n"
"LngText.text"
msgid "prime"
-msgstr ""
+msgstr "азгәаҭа"
#. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji
#. qR3Eg
@@ -1174,7 +1174,7 @@ msgctxt ""
"SMALL_CONTAINS_AS_MEMBER\n"
"LngText.text"
msgid "small ni"
-msgstr ""
+msgstr "имаҷу аҵанакуеит"
#. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji
#. xexAk
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 0abfeb38eab..02d75953168 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -28730,6 +28730,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Аҭыҧи ашәагааи"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 2204d7d8410..59c034a9a3d 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2859,7 +2859,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index ed1396a5458..5cd42b19fec 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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Abkhazian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -9820,6 +9820,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Даҽакы:"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20258,14 +20270,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index cd01ff3f08c..5973432266c 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\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"
@@ -1161,8 +1161,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 54f12aa15ac..f5d3e2697fd 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-30 09:34+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/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.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -3550,11 +3550,11 @@ 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."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
+msgstr ""
#. eGMCZ
#: cui/inc/toolbarmode.hrc:29
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Ken spesifieke makro's toe aan programme. 'n Toegewysde makro sal outomaties loop elke keer as die gekose gebeurtenis plaasvind."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Font-funksionaliteit"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Voorskou"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Kies tipografiese fontstyle en pas dit toe op karakters."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Fontinstellings vir HTML-, Basic- en SQL-bronkode"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Uitg_ebreide wenke"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Hierdie opsie vertoon hulpteks wanneer u die wyser oor 'n ikoon, menu-opdrag of beheerelement in 'n dialoog hou."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Wys “Geen vanlynhulp geïnstalleer” opwipvenster"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Vertoon \"Wenk vir die Dag\" dialoog tydens Begin"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hulp"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Gebr_uik %PRODUCTNAME-dialoë"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Stoor-dialoë"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Gebruik %PRODUCTNAME-_dialoë"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Drukdialoë"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukaksie stel “dokument gewysig”-status"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Bepaal of die druk van 'n dokument as 'n verandering genoteer word."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreteer as jare tussen "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Hier spesifiseer u die datumbereik vir die outomatiese interpretasie van tweesyferige jare."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaar (twee syfers)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Versamel gebruiksdata en stuur dit aan die Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Stuur data oor gebruike, om \"The Document Foundation\" te help om die handigheid van die sagteware te verbeter."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Dien falings-verslae in by \"The Document Foundation\""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te verbeter"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Laai %PRODUCTNAME wanneer rekenaar aanskakel"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktieer Snelbeginner in stelsellaai"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME-snelbeginner"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows Verstek Toeps"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME Lêer Assosiasies"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Spesifiseer algemene gebruike vir %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Bo"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr "Agtergrond sluit kantlyne in"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr "Enige agtergrond sal die kantlyne van die bladsy insluit"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr "Indien geaktiveer, sal enige agtergrond die hele bladsy, insluitend kantlyne dek. Indien gedeaktiveer, sal enige agtergrond die bladsy dek net binne die kantlyne."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Uitlegopstelling"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
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 f0af6ae65a1..d482c1d39db 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-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-21 05:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+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"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posisie en grootte"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30056,7 +30066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Vertoon skema- vouwisseling knoppies"
#. 4hvcy
#: WriterCommands.xcu
@@ -30066,7 +30076,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Vertoon 'n knoppie langs opskrifte en subopskrifte om te help met skema se vouwisseling. Selfs sonder die knoppie, kan u die vouwerk met die Navigator uitvoer."
#. C5mHk
#: WriterCommands.xcu
@@ -35426,7 +35436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Verwissel Skema se uitvou"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index d9af083c521..6c4860a1e61 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Hier kan u aan u dokument gebruikergedefinieerde velde toewys."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sluit Sybalk"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 64d717022e8..91f8841ba2c 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-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-30 09:34+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+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"
@@ -5882,7 +5882,7 @@ msgstr "Af"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Klik om die skema se uitvou te verwissel"
#. 44jEc
#: sw/inc/strings.hrc:659
@@ -5894,7 +5894,7 @@ msgstr "regsmuisklik om subvlakke in te sluit"
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Klik om die skema se uitvou te verwissel"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5906,7 +5906,7 @@ msgstr "regsmuisklik om subvlakke in te sluit"
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Skema uitvou"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5918,13 +5918,13 @@ msgstr "Wissel"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Alles Uitvou"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Alles Invou"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Doelgemaak"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Open die \"Sjabloon Selekteerder\"-dialoog."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Kies begindokument vir die massapos"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Spesifiseer die dokument wat gebruik moet word as basis vir die epos saamvoegdokument."
@@ -20214,7 +20232,7 @@ msgstr "Verwyder Alles"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Skema Invou"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -29315,7 +29333,7 @@ msgstr "Instellings"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "_Vertoon Skema_vouwisseling knoppies"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29327,7 +29345,7 @@ msgstr "Subvlakke Ins_luit"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Skema Vouwisseling"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index b3cae20fa6d..f37b3509be8 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\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"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Skeidingskarakter"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 4c5022318fa..37ebb8e4556 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\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"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "ወደ ፕሮግራም ሁኔታዎች ማክሮስ መመደቢያ: የ ተመደበው ማክሮስ ራሱ በራሱ ሁኔታው ሲሟላ ይሄዳል "
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "የ ፊደል ገጽታዎች"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "ቅድመ እይታ"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "ፊደል ማሰናጃ ለ HTML, መሰረታዊ እና ለ SQL ምንጮች"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "የ _ተስፋፉ ምክሮች"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "መጠቆሚያውን በ ምልክት ላይ ሲያደርጉ የ እርዳታ ጽሁፍ: ዝርዝር ትእዛዝ ወይንም የ ንግግር መቆጣጠሪያ ማሳያ"
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "ማሳያ \"ከ መስመር ውጪ እርዳታ አልተገጠመም\" ብቅባይ"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "እርዳታ"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_መጠቀሚያ %PRODUCTNAME ንግግሮች"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "መክፈቻ/ማስቀመጫ ንግግሮች"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "መጠቀሚያ %PRODUCTNAME _ንግግሮች"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "የ ማተሚያ ንግግሮች"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ማተሚያ ማሰናጃ ለ \"ሰነድ ማሻሻያ\" ሁኔታ"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "ሰነድ በሚታተም ጊዜ እንደ ማሻሻያ ይቆጠር እንደሆን መወሰኛ: "
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "የሰነድ ሁኔታዎች"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_መተርጓሚያ እንደ በ አመቶች መካከል "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "የ ቀን መጠን መግለጫ: ስርአቱ በሚያውቀው በ ሁለት-አሀዝ አመት "
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "እና "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "አመት (ሁለት አሀዝ)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "የ አጠቃቀም ዳታ መስብሰቢያ እና ለ ሰነድ አዘጋጆቹ መላኪያ"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "የ አጠቃቀም ዳታ ለ እርዳታ ለ ሰነድ አዘጋጆቹ የ ሶፍትዌር አጠቃቀሙን ለማሻሻል እንዲችሉ ይላኩ: "
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "እንድናሻሻል ይርዱን %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "መጫኛ %PRODUCTNAME ስርአቱ በሚጀምር-ጊዜ"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "በ ስርአቱ ትሪ ላይ በፍጥነት ማስጀመሪያ ማስቻያ"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME በፍጥነት ማስጀመሪያ"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "ባጠቃላይ ማሰናጃዎች መወሰኛ ለ %PRODUCTNAME."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "እቅድ ማሰናጃዎች"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index 308c9be5375..a13ec21d1cc 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-01 14:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/am/>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr "የ ትእዛዝ ማመሳከሪያ"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "ተግባሮች: አረፍተ ነገር እና አንቀሳቃሾች:"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 7c941be2b75..bf7f293f641 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>የ ነፃ ፋይል ተግባር</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">ነፃ ፋይል ተግባር</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "የሚቀጥለውን ዝግጁ የ ፋይል ቁጥር ይመልሳል ፋይል ለ መክፈት: ይህን ተግባር ይጠቀሙ ፋይል ለ መክፈት የ ፋይል ቁጥር በ መጠቀም: አሁን የ ተከፈተው ፋይል ያልተጠቀመበትን"
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "ኢንቲጀር"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "ይህን ፋይል መጠቀም የሚቻለው ከ ተከፈተ አረፍተ ነገር ፊት ለ ፊት ነው: ነፃ ፋይል የሚመልሰው የሚቀጥለውን ዝግጁ የ ፋይል ቁጥር ነው: ነገር ግን አያስቀምጥም"
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>ማስገቢያ መግለጫ</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">ማስገቢያ# አረፍተ ነገር</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "የ ፋይል መጠቆሚያ ፋይሉ መጨረሻ ጋር ደርሶ እንደሆን መወሰኛ"
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "መጨረሻ ለ (ኢንቲጀር መግለጫ እንደ ኢንቲጀር)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "ቡል"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "ይጠቀሙ የ ፋይል መጨረሻ ስህተት ለ ማስወገድ እርስዎ በሚሞክሩ ጊዜ ለ ማግኘት ማስገቢያ በ ፋይሉ መጨረሻ ላይ: እርስዎ በሚጠቀሙ ጊዜ ማስገቢያ ወይንም አረፍተ ነገር ማግኛ ከ ፋይል ውስጥ ለ ማንበብ: የ ፋይል መጠቆሚያ በ ቁጥር ወይንም ባይቶች ያነባል: በ ፋይሉ መጨረሻ ላይ ሲደርስ: የ ፋይል መጨረሻ ይመልሳል ዋጋ \"እውነት\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "የ ተከፈተ የ ፋይል መጠን በ ባይቶች ይመልሳል"
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "ፋይል መቆለፊያ(የ ፋይል ቁጥር)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "ረጅም"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "የ ተከፈተ የ ፋይል እርዝመት ለማግኘት: ይጠቀሙ የ <emph> ፋይል እርዝመት </emph> ተግባር"
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "ይህን ይመልከቱ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\"> መክፈቻ </link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "ፋይል መለያ (የ ፋይል ቁጥር እንደ ኢንቲጀር, መለያ እንደ ኢንቲጀር)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "ኢንቲጀር"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (ፋይል መክፈቻ በ binary ዘዴ)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "ፋይል ከ ዲስክ ውስጥ ማጥፊያ"
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "ፋይል መግደያ እንደ ሀረግ"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>ፋይል:</emph> ማንኛውም የ ሀረግ መግለጫ የያዘ ምንም የማያሻማ ፋይል መወሰኛ: እርስዎ እንዲሁም መጠቀም ይችላሉ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "የ ስህተት-አያያዝ አሰራር ማስቻያ ስህተት ከ ተፈጠረ በኋላ: ወይንም የ ፕሮግራም መፈጸሚያ ይቀጥላል"
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "በ ስህተት ጊዜ የ መሄጃ ወደ አረፍተ ነገር የሚጠቅመው ስህተት ለ መከላከል ነው በ ማክሮስ ውስጥ"
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>ዘዴ አንቀሳቃሽ (ሂሳብ)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">ዘዴ አንቀሳቃሽ</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "በሚካፈል ጊዜ የ ኢንቲጀር ቀሪ ይመልሳል"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "ውጤት = መግለጫ1 ዘዴ መግለጫ2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "ይመልሳል ዋጋ:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "ኢንቲጀር"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
+"help.text"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
+
+#. tjLmf
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>ውጤት:</emph> ማንኛውም የ ቁጥር ተለዋዋጭ የ ዘዴ አንቀሳቃሽ ውጤት የያዘ"
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. uVobi
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id3147560\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>መግለጫ1, መግለጫ2:</emph> ማንኛውም የ ቁጥር መግለጫ እርስዎ ማካፈል የሚፈልጉት"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "ውጤት = መግለጫ1 ዘዴ መግለጫ2"
-#. PEAiU
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3153380\n"
"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
+msgid "Integer"
+msgstr "ኢንቲጀር"
-#. ucwCQ
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "ማተሚያ 10 ዘዴ 2.5 ' ይመልሳል 0"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "ማተሚያ 10 / 2.5 ' ይመልሳል 4"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "ማተሚያ 10 ዘዴ 5 ' ይመልሳል 0"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "ማተሚያ 10 / 5 ' ይመልሳል 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "ማተሚያ 5 ዘዴ 10 ' ይመልሳል 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "ማተሚያ 5 / 10 ' ይመልሳል 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "የ ማነፃፀሪያ አንቀሳቃሾች"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">ማነፃፀሪያ አንቀሳቃሽ</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "ዝግጁ የ ማነፃፀሪያ አንቀሳቃሾች እዚህ ተገልጸዋል"
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index 2a539c588a9..e76b07d167b 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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 25c099c5c38..216917aaaae 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "የተወሰነ"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">ቁጥር እንደ ጽሁፍ ይመልሳል በ ተወሰነ ቁጥር የ ዴሲማል ቦታዎች እና በ ምርጫ የ ሺዎች መለያያ </ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>ቁጥር</emph> የሚቀርበውን ቁጥር ማመሳከሪያ"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>ዴሲማል</emph> የሚያመሳክረው የሚታየው የ ዴሲማል ቦታ ቁጥር ነው"
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>ሺዎች መለያያ የለም</emph> (በ ምርጫ) የ ሺዎች መለያያ ይጠቀሙ እንደሆን መወሰኛ: ደንቡ ቁጥር ከሆነ እና እኩል ካልሆነ ከ 0, ጋር: የ ሺዎች መለያያ ማስቀሪያ: ደንቡ እኩል ከሆነ ከ 0 ጋር ወይንም ባጠቃላይ ከጎደለ: የ ሺዎች መለያያ ለ እርስዎ <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">የ አሁኑ ቋንቋ ማሰናጃ </link> ይታያል"
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=የተወሰነ(1234567.89;3)</item> ይመልሳል 1,234,567.890 እንደ ጽሁፍ ሀረግ"
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=የተወሰነ(1234567.89;3;1)</item> ይመልሳል 1234567.890 እንደ ጽሁፍ ሀረግ"
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index c15cca0c8bc..ea4ae4295a0 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,14 +41812,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "ማክሮስ መመደቢያ"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/01/06130000.xhp\"> ማክሮስ መምረጫ </link> ለ መመደብ ማክሮስ ወደ ተመረጠው ሁኔታ </ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index a2469eb26c8..adec9bac291 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-12-09 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">እቃ ከ ዝርዝር ውስጥ ይምረጡ እና ይጫኑ የ ቀስት ቁልፍ እቃውን ለማንቀሳቀስ </ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "የ ኢ-ሜይል መልእክት"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "የ ኢ-ሜይል መልእክት"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr "ባህሪዎች"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index dcecb63f16f..29c441c4b44 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "የ መጀመሪያውን ፊደል በ አቢይ ፊደል መጻፍ ለማስቆም"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
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 ba1876e8b8e..1982120b3bc 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "ቦታ እና መጠን"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 7768f43f9ee..393e7dedf12 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -2915,7 +2915,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "በ እርስዎ ሰነድ ውስጥ የ መረጃ ሜዳዎች ማስተካከያ መመደብ ያስችሎታል"
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 29c85efbba3..83add09be79 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-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-30 18:23+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 15:05+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/am/>\n"
"Language: am\n"
@@ -9772,6 +9772,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "ማስተካከያ"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20018,14 +20030,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "የ ቲምፕሌት መምረጫ ንግግር መክፈቻ "
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "ለ ደብዳቤ ማዋሀጃ መጀመሪያ ሰነድ ይምረጡ"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "እርስዎ እንደ መሰረት መጠቀም የሚፈልጉትን የ ደብዳቤ ማዋሀጃ ሰነድ ይምረጡ "
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index 1cc3b135d07..5619521b828 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\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"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index c5795980c2e..8ab65d0786d 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\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"
@@ -3537,10 +3537,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9035,6 +9035,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9339,13 +9357,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14478,157 +14496,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Aduya"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17358,33 +17382,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
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 000c5d649cf..1c00ccda47e 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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -30619,6 +30619,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y grandaria..."
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 572a44d10e1..5fb8242a985 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -2872,7 +2872,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index c2638f99379..f3859ee13f6 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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -9907,6 +9907,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizau 1"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20321,14 +20333,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index f718576db92..b9703f5649c 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\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"
@@ -1166,8 +1166,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 83a5ea51465..171922c25ff 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-29 16:04+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/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.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563567066.000000\n"
#. GyY9M
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "خصائص الخط"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "إعدادات الخط لمصادر HTML و Basic و SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "تل_ميحات موسّعة"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "أظهر حواري \"تلميحة اليوم\" عند البدأ"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "مساعدة"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "ا_ستخدم مربّعات حوار %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "مربّعات حوار الفتح و الحفظ"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "استخدم مربعات _حوار %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "مربعات حوار الطباعة"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ال_طباعة تجعل حالة المستند ”مستند معدل“"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "حالة المستند"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "فسّرها على أنها ال_سنوات بين "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "السنة (رقمان)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "اجمع بيانات الاستخدام و أرسلها إلى «مؤسسة المستند المفتوح»"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "أرس_ل تقارير الإنهيار إلى مؤسسة The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "ساعد في تحسين %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "حمّل %PRODUCTNAME أثناء بدء النظام"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "فعّل التشغيل السريع في صينية النظام"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "تشغيل %PRODUCTNAME السريع"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "إعدادات التخطيط"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ar/editeng/messages.po b/source/ar/editeng/messages.po
index 88769edfb5b..82ceb502b46 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-03-29 16:04+0000\n"
+"PO-Revision-Date: 2021-04-06 08:37+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"
@@ -1554,7 +1554,7 @@ msgstr "اتجاه النص من اليسار إلى اليمين (عمودي)"
#: include/editeng/editrids.hrc:273
msgctxt "RID_SVXITEMS_FRMDIR_ENVIRONMENT"
msgid "Use superordinate object text direction setting"
-msgstr "استخدام إعداد اتجاه نص الكائن الأفضل"
+msgstr "استخدم إعداد اتجاه نص الكائن الرئيسي"
#. waJEN
#: include/editeng/editrids.hrc:274
diff --git a/source/ar/extensions/messages.po b/source/ar/extensions/messages.po
index 13ea846a63a..f19e69ae307 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-03-18 14:58+0000\n"
+"PO-Revision-Date: 2021-04-06 08:37+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"
@@ -517,7 +517,7 @@ msgstr "متعدد"
#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
-msgstr "مدى"
+msgstr "المجال"
#. 8dCg5
#: extensions/inc/stringarrays.hrc:155
diff --git a/source/ar/helpcontent2/source/auxiliary.po b/source/ar/helpcontent2/source/auxiliary.po
index 7093506d31f..26652b78ae5 100644
--- a/source/ar/helpcontent2/source/auxiliary.po
+++ b/source/ar/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/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.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1532004315.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "مرجع الأوامر"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "دوالّ وجُمل ومُعاملات"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "لائحة ألفبائية بالدوالّ والجُمل والمُعاملات"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index 0d68a0e29c5..249f88ef0c4 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ar/>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr ""
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr ""
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "عدد صحيح"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr ""
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr ""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,13 +10186,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr ""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. PwUYq
@@ -10366,49 +10339,112 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr ""
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
msgstr ""
#. FrzSY
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr ""
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr ""
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr ""
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr ""
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr ""
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr ""
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr ""
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr ""
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr ""
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr ""
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr ""
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr ""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr ""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr ""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr ""
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr ""
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "عدد صحيح"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr ""
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,22 +11932,22 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr ""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
msgstr ""
#. BDNvF
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr ""
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr ""
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,22 +12526,13 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
msgstr ""
#. hWy62
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr ""
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,13 +17647,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr ""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. YAR7R
@@ -19294,148 +19087,157 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr ""
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "عدد صحيح"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "مثال:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr ""
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
+msgid "Integer"
+msgstr "عدد صحيح"
+
+#. pk9HC
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
+msgid "Print a Mod b 'Returns 2"
msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
+msgid "Print a Mod b 'Returns 0"
msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
+msgid "Print a Mod b 'Returns 4"
msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
msgstr ""
#. cFFCi
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr ""
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr ""
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr ""
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared/03.po b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
index 4ddff7fb6eb..e6013b349e5 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ar/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ar/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 27a61045237..d3b217aa466 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ar/>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr ""
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 0d7ed890b63..cd0813b5f69 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ar/>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index ba1a90efaaa..16199e25bf7 100644
--- a/source/ar/helpcontent2/source/text/swriter/01.po
+++ b/source/ar/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ar/>\n"
@@ -28591,22 +28591,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr ""
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
+msgid "Email Message"
msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
+msgid "Email Message"
msgstr ""
#. PTucc
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 64a65032f1d..8215fe723d8 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr ""
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
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 06f593cdc6e..f38ed926eef 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-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-29 14:28+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08: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"
@@ -2374,7 +2374,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "R~efresh Range"
-msgstr "ت~حديث النطاق"
+msgstr "ت~حديث المجال"
#. DQNFa
#: CalcCommands.xcu
@@ -3364,7 +3364,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Define Range..."
-msgstr ""
+msgstr "~عرّف المجال..."
#. hQQPE
#: CalcCommands.xcu
@@ -3374,7 +3374,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select ~Range..."
-msgstr ""
+msgstr "ح~دد المجال..."
#. LGT6z
#: CalcCommands.xcu
@@ -3384,7 +3384,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Strea~ms..."
-msgstr "التدف~قات..."
+msgstr "الدف~قات..."
#. jHBWd
#: CalcCommands.xcu
@@ -3394,7 +3394,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Resume streaming"
-msgstr "متابعة التدفّق"
+msgstr "متابعة الدفق"
#. aC3B9
#: CalcCommands.xcu
@@ -3404,7 +3404,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop streaming"
-msgstr "إيقاف التدفّق"
+msgstr "إيقاف الدفق"
#. BcMEb
#: CalcCommands.xcu
@@ -28778,6 +28778,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "الموضع و الحجم"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 60eb6806fbe..8c672853661 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-29 14:08+0000\n"
+"PO-Revision-Date: 2021-04-06 08:37+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
@@ -1423,7 +1423,7 @@ msgstr ""
#: sc/inc/globstr.hrc:253
msgctxt "STR_AREA"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. FQACy
#: sc/inc/globstr.hrc:254
@@ -4153,10 +4153,9 @@ msgstr "حساب عدد الأيام بين تاريخين استنادًا إل
#. ZUUYG
#: sc/inc/scfuncs.hrc:209
-#, fuzzy
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
msgid "Date 1"
-msgstr "تاريخ "
+msgstr "تاريخ 1"
#. isAbX
#: sc/inc/scfuncs.hrc:210
@@ -4166,10 +4165,9 @@ msgstr "تاريخ البدء لحساب الفرق بالأيام."
#. wWHWp
#: sc/inc/scfuncs.hrc:211
-#, fuzzy
msgctxt "SC_OPCODE_GET_DIFF_DATE_360"
msgid "Date 2"
-msgstr "تاريخ "
+msgstr "تاريخ 2"
#. 9DEEN
#: sc/inc/scfuncs.hrc:212
@@ -4559,10 +4557,9 @@ msgstr "حساب عدد الأيام بين تاريخين."
#. bGFGP
#: sc/inc/scfuncs.hrc:345
-#, fuzzy
msgctxt "SC_OPCODE_GET_DIFF_DATE"
msgid "Date 2"
-msgstr "تاريخ "
+msgstr "تاريخ 2"
#. u2ebL
#: sc/inc/scfuncs.hrc:346
@@ -4572,10 +4569,9 @@ msgstr "تاريخ الانتهاء لحساب الفرق بالأيام."
#. mAuEW
#: sc/inc/scfuncs.hrc:347
-#, fuzzy
msgctxt "SC_OPCODE_GET_DIFF_DATE"
msgid "Date 1"
-msgstr "تاريخ "
+msgstr "تاريخ 1"
#. hPAVA
#: sc/inc/scfuncs.hrc:348
@@ -5784,10 +5780,9 @@ msgstr "معدل الخصم لفترة واحدة."
#. cGmzv
#: sc/inc/scfuncs.hrc:656
-#, fuzzy
msgctxt "SC_OPCODE_NPV"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. HKDEV
#: sc/inc/scfuncs.hrc:657
@@ -6285,10 +6280,9 @@ msgstr "موضع الخلية التي تريد أن تختبرها."
#. Dyn4C
#: sc/inc/scfuncs.hrc:843
-#, fuzzy
msgctxt "SC_OPCODE_CURRENT"
msgid "Calculates the current value of the formula at the present location."
-msgstr "حساب القيمة الحالية للصيغة في الموضع الحالي. "
+msgstr "يحسب القيمة الحالية للصيغة في الموضع الحالي."
#. yQMAM
#: sc/inc/scfuncs.hrc:849
@@ -6541,13 +6535,13 @@ msgstr "عد الخلايا الفارغة في نطاق محدد."
#: sc/inc/scfuncs.hrc:944
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. p3U4L
#: sc/inc/scfuncs.hrc:945
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "The range in which empty cells are to be counted."
-msgstr "النطاق الذي ستعد الخلايا الفارغة من خلاله."
+msgstr "المجال الذي ستحسَب الخلايا الفارغة فيه."
#. NRYYy
#: sc/inc/scfuncs.hrc:951
@@ -6623,7 +6617,7 @@ msgstr "إيجاد معدل الوسائط التي تفي بالشروط."
#: sc/inc/scfuncs.hrc:982
msgctxt "SC_OPCODE_SUM_IF"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. je6F2
#: sc/inc/scfuncs.hrc:983
@@ -6667,7 +6661,7 @@ msgstr "إيجاد معدل الوسائط التي تفي بالشروط."
#: sc/inc/scfuncs.hrc:994
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. i6C6r
#: sc/inc/scfuncs.hrc:995
@@ -6722,10 +6716,9 @@ msgstr "النطاق المراد جمع القيم الموجودة به."
#. wcHBn
#: sc/inc/scfuncs.hrc:1007
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IFS"
msgid "Range "
-msgstr "النطاق"
+msgstr "المجال "
#. 9qDvh
#: sc/inc/scfuncs.hrc:1008
@@ -6767,10 +6760,9 @@ msgstr "النطاق المراد حساب متوسط القيم الموجود
#. a99iD
#: sc/inc/scfuncs.hrc:1019
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IFS"
msgid "Range "
-msgstr "النطاق"
+msgstr "المجال "
#. wvbDq
#: sc/inc/scfuncs.hrc:1020
@@ -6799,10 +6791,9 @@ msgstr "حساب الخلايا التي تحقق معايير متعددة في
#. BDv5j
#: sc/inc/scfuncs.hrc:1029
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_IFS"
msgid "Range "
-msgstr "النطاق"
+msgstr "المجال "
#. 8GRAv
#: sc/inc/scfuncs.hrc:1030
@@ -6833,14 +6824,13 @@ msgstr "عد الوسائط التي تفي بالشروط المعينة."
#: sc/inc/scfuncs.hrc:1039
msgctxt "SC_OPCODE_COUNT_IF"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. KXd5A
#: sc/inc/scfuncs.hrc:1040
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_IF"
msgid "The range of cells to be evaluated by the criteria given."
-msgstr "النطاق المراد تطبيق المعايير عليه."
+msgstr "مجال الخلايا المراد تقييمه بالمعايير المعطاة."
#. pGUfg
#: sc/inc/scfuncs.hrc:1041
@@ -6924,10 +6914,9 @@ msgstr "حساب عدد المركبات لعدد من العناصر بدون
#. xQEvM
#: sc/inc/scfuncs.hrc:1079
-#, fuzzy
msgctxt "SC_OPCODE_COMBIN"
msgid "Number 1"
-msgstr "الرقم "
+msgstr "الرقم 1"
#. ACGaC
#: sc/inc/scfuncs.hrc:1080
@@ -6937,10 +6926,9 @@ msgstr "إجمالي عدد العناصر."
#. WJTxU
#: sc/inc/scfuncs.hrc:1081
-#, fuzzy
msgctxt "SC_OPCODE_COMBIN"
msgid "Number 2"
-msgstr "الرقم "
+msgstr "الرقم 2"
#. JKD75
#: sc/inc/scfuncs.hrc:1082
@@ -6956,10 +6944,9 @@ msgstr "حساب عدد المركبات لعدد من العناصر مع ال
#. YEVJh
#: sc/inc/scfuncs.hrc:1089
-#, fuzzy
msgctxt "SC_OPCODE_COMBIN_A"
msgid "Number 1"
-msgstr "الرقم "
+msgstr "الرقم 1"
#. smqPP
#: sc/inc/scfuncs.hrc:1090
@@ -6969,10 +6956,9 @@ msgstr "إجمالي عدد العناصر."
#. vCGLG
#: sc/inc/scfuncs.hrc:1091
-#, fuzzy
msgctxt "SC_OPCODE_COMBIN_A"
msgid "Number 2"
-msgstr "الرقم "
+msgstr "الرقم 2"
#. F9A6f
#: sc/inc/scfuncs.hrc:1092
@@ -7280,10 +7266,9 @@ msgstr "إرجاع زاوية الظل للإحداثيات المعطاة."
#. dYtW9
#: sc/inc/scfuncs.hrc:1227
-#, fuzzy
msgctxt "SC_OPCODE_ARC_TAN_2"
msgid "Number X"
-msgstr "الرقم "
+msgstr "الرقم س"
#. WsSq4
#: sc/inc/scfuncs.hrc:1228
@@ -7294,10 +7279,9 @@ msgstr "قيمة الإحداثي س."
#. PWbXR
#: sc/inc/scfuncs.hrc:1229
-#, fuzzy
msgctxt "SC_OPCODE_ARC_TAN_2"
msgid "Number Y"
-msgstr "الرقم "
+msgstr "الرقم ص"
#. TRECx
#: sc/inc/scfuncs.hrc:1230
@@ -7586,13 +7570,13 @@ msgstr "فهرس الدوال. فهرس للدوال المحتملة مثل ا
#: sc/inc/scfuncs.hrc:1347
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. QkjWV
#: sc/inc/scfuncs.hrc:1348
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "The cells of the range which are to be taken into account."
-msgstr "خلايا النطاق التي ستؤخذ في الحسبان."
+msgstr "خلايا المجال التي ستؤخذ في الحسبان."
#. us3F9
#: sc/inc/scfuncs.hrc:1354
@@ -8215,10 +8199,9 @@ msgstr "ضرب المصفوفة. إرجاع حاصل ضرب مصفوفتين."
#. FhD6y
#: sc/inc/scfuncs.hrc:1555
-#, fuzzy
msgctxt "SC_OPCODE_MAT_MULT"
msgid "Array 1"
-msgstr "مصفوفة "
+msgstr "مصفوفة 1"
#. FdTzG
#: sc/inc/scfuncs.hrc:1556
@@ -8228,10 +8211,9 @@ msgstr "المصفوفة الأولى المراد ضربها."
#. Ebs87
#: sc/inc/scfuncs.hrc:1557
-#, fuzzy
msgctxt "SC_OPCODE_MAT_MULT"
msgid "Array 2"
-msgstr "مصفوفة "
+msgstr "مصفوفة 2"
#. 3xEDC
#: sc/inc/scfuncs.hrc:1558
@@ -8320,10 +8302,9 @@ msgstr "إرجاع مجموع الفارق بين مربع عناصر مصفوف
#. AUFNs
#: sc/inc/scfuncs.hrc:1597
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "Array X"
-msgstr "مصفوفة "
+msgstr "مصفوفة س"
#. 9vSGo
#: sc/inc/scfuncs.hrc:1598
@@ -8333,10 +8314,9 @@ msgstr "المصفوفة الأولى المراد جمع مربع وسائطه
#. YSPPg
#: sc/inc/scfuncs.hrc:1599
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "Array Y"
-msgstr "مصفوفة "
+msgstr "مصفوفة ص"
#. 9T4Rr
#: sc/inc/scfuncs.hrc:1600
@@ -8352,10 +8332,9 @@ msgstr "إرجاع مجموع مربع عناصر مصفوفتين."
#. FrwhU
#: sc/inc/scfuncs.hrc:1607
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "Array X"
-msgstr "مصفوفة "
+msgstr "مصفوفة س"
#. H8mTf
#: sc/inc/scfuncs.hrc:1608
@@ -8365,10 +8344,9 @@ msgstr "المصفوفة الأولى المراد جمع مربع وسائطه
#. Vtggo
#: sc/inc/scfuncs.hrc:1609
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "Array Y"
-msgstr "مصفوفة "
+msgstr "مصفوفة ص"
#. reqfP
#: sc/inc/scfuncs.hrc:1610
@@ -8384,10 +8362,9 @@ msgstr "إرجاع مجموع مربع الفارق بين عناصر مصفوف
#. ZMxo6
#: sc/inc/scfuncs.hrc:1617
-#, fuzzy
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "Array X"
-msgstr "مصفوفة "
+msgstr "مصفوفة س"
#. 53FNi
#: sc/inc/scfuncs.hrc:1618
@@ -8397,10 +8374,9 @@ msgstr "المصفوفة الأولى المراد طرح وسائط المصف
#. BKfnC
#: sc/inc/scfuncs.hrc:1619
-#, fuzzy
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "Array Y"
-msgstr "مصفوفة "
+msgstr "مصفوفة ص"
#. 2mWCE
#: sc/inc/scfuncs.hrc:1620
@@ -8678,10 +8654,9 @@ msgstr "حساب عدد الأرقام الموجودة في قائمة من ا
#. iDFDE
#: sc/inc/scfuncs.hrc:1693
-#, fuzzy
msgctxt "SC_OPCODE_COUNT"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. 54dLB
#: sc/inc/scfuncs.hrc:1694
@@ -8697,10 +8672,9 @@ msgstr "حساب عدد القيم الموجودة في قائمة من الو
#. iqtKK
#: sc/inc/scfuncs.hrc:1701
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_2"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. sDGzy
#: sc/inc/scfuncs.hrc:1702
@@ -8734,10 +8708,9 @@ msgstr "إرجاع القيمة الكبرى لقائمة وسائط. تبلغ
#. 6ZyXF
#: sc/inc/scfuncs.hrc:1717
-#, fuzzy
msgctxt "SC_OPCODE_MAX_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. 5XaxK
#: sc/inc/scfuncs.hrc:1718
@@ -8771,10 +8744,9 @@ msgstr "إرجاع القيمة الصغرى في قائمة وسائط. تبل
#. hWgKX
#: sc/inc/scfuncs.hrc:1733
-#, fuzzy
msgctxt "SC_OPCODE_MIN_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. vUbLY
#: sc/inc/scfuncs.hrc:1734
@@ -8828,10 +8800,9 @@ msgstr "حساب التباين استنادًا إلى عينة. تبلغ قي
#. Q4kGy
#: sc/inc/scfuncs.hrc:1757
-#, fuzzy
msgctxt "SC_OPCODE_VAR_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. QDDDd
#: sc/inc/scfuncs.hrc:1758
@@ -8884,10 +8855,9 @@ msgstr "حساب التباين استنادًا إلى المجتمع كله.
#. eRVBj
#: sc/inc/scfuncs.hrc:1781
-#, fuzzy
msgctxt "SC_OPCODE_VAR_P_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. yZFuZ
#: sc/inc/scfuncs.hrc:1782
@@ -8941,10 +8911,9 @@ msgstr "حساب الانحراف المعياري استنادًا إلى عي
#. Smbhk
#: sc/inc/scfuncs.hrc:1805
-#, fuzzy
msgctxt "SC_OPCODE_ST_DEV_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. pXYdc
#: sc/inc/scfuncs.hrc:1806
@@ -9002,7 +8971,7 @@ msgstr "حساب الانحراف المعياري استنادًا إلى ال
#, fuzzy
msgctxt "SC_OPCODE_ST_DEV_P_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. GGkKW
#: sc/inc/scfuncs.hrc:1830
@@ -9038,10 +9007,9 @@ msgstr "حساب الوسط الحسابي لعينة. تبلغ قيمة الن
#. eCCGY
#: sc/inc/scfuncs.hrc:1845
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_A"
msgid "Value "
-msgstr "القيمة"
+msgstr "القيمة "
#. NxVLD
#: sc/inc/scfuncs.hrc:1846
@@ -12887,10 +12855,9 @@ msgstr "حساب نتيجة اختبار F."
#. EeFFo
#: sc/inc/scfuncs.hrc:2984
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. YfKrA
#: sc/inc/scfuncs.hrc:2985
@@ -12900,10 +12867,9 @@ msgstr "مصفوفة السجل الأول."
#. HcSHD
#: sc/inc/scfuncs.hrc:2986
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST"
msgid "Data 2"
-msgstr "تاريخ "
+msgstr "بيانات 2"
#. DdRTF
#: sc/inc/scfuncs.hrc:2987
@@ -12919,10 +12885,9 @@ msgstr "حساب نتيجة اختبار F."
#. K37cV
#: sc/inc/scfuncs.hrc:2994
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST_MS"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. tEFdd
#: sc/inc/scfuncs.hrc:2995
@@ -13007,10 +12972,9 @@ msgstr "حساب اختبار تي."
#. 5fHC3
#: sc/inc/scfuncs.hrc:3018
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. F5qSy
#: sc/inc/scfuncs.hrc:3019
@@ -13191,10 +13155,9 @@ msgstr "حساب معامل بيرسون للارتباط العزومي."
#. ZhepS
#: sc/inc/scfuncs.hrc:3072
-#, fuzzy
msgctxt "SC_OPCODE_PEARSON"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. RAEvh
#: sc/inc/scfuncs.hrc:3073
@@ -13223,10 +13186,9 @@ msgstr "إرجاع معامل الارتباط."
#. ojEas
#: sc/inc/scfuncs.hrc:3082
-#, fuzzy
msgctxt "SC_OPCODE_CORREL"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. 7VtBm
#: sc/inc/scfuncs.hrc:3083
@@ -13256,10 +13218,9 @@ msgstr "حساب التباين المشترك."
#. MBP4T
#: sc/inc/scfuncs.hrc:3092
-#, fuzzy
msgctxt "SC_OPCODE_COVAR"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. skBUc
#: sc/inc/scfuncs.hrc:3093
@@ -13289,10 +13250,9 @@ msgstr "حساب التباين المشترك."
#. GRFHF
#: sc/inc/scfuncs.hrc:3102
-#, fuzzy
msgctxt "SC_OPCODE_COVARIANCE_P"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. AQzmF
#: sc/inc/scfuncs.hrc:3103
@@ -13322,10 +13282,9 @@ msgstr "حساب التباين المشترك."
#. eSQnz
#: sc/inc/scfuncs.hrc:3112
-#, fuzzy
msgctxt "SC_OPCODE_COVARIANCE_S"
msgid "Data 1"
-msgstr "تاريخ "
+msgstr "بيانات 1"
#. VZuaM
#: sc/inc/scfuncs.hrc:3113
@@ -14357,19 +14316,19 @@ msgstr "العمود في المدى"
#: sc/inc/scfuncs.hrc:3388
msgctxt "SC_OPCODE_INDEX"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. U4YBB
#: sc/inc/scfuncs.hrc:3389
msgctxt "SC_OPCODE_INDEX"
msgid "The index of the subrange if referring to a multiple range."
-msgstr "فهرس انطاق الجزئي إذا كان يشير إلى نطاق متعدد."
+msgstr "فهرس المجال الفرعي إن كانت الإشارة إلى مجال متعدد."
#. AAABU
#: sc/inc/scfuncs.hrc:3395
msgctxt "SC_OPCODE_INDIRECT"
msgid "Returns the contents of a cell that is referenced in text form."
-msgstr "إرجاع محتويات خلية محددة كمرجع على هيئة نص."
+msgstr "يُرجِع محتويات خلية محددة كمرجع على هيئة نص."
#. ng7BT
#: sc/inc/scfuncs.hrc:3396
@@ -17514,10 +17473,9 @@ msgstr "غيّر اسم التنسيق التلقائي"
#. KCDoJ
#: sc/inc/strings.hrc:133
-#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
-msgstr "هل تريد بالفعل حذف الإدخال #؟"
+msgstr "هل تريد بالفعل حذف التنسيق التلقائي #؟"
#. GDdL3
#: sc/inc/strings.hrc:134
@@ -18107,21 +18065,19 @@ msgstr ""
#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_RANGE"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. LHk8p
#: sc/inc/strings.hrc:242
-#, fuzzy
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
-msgstr "الحد الأدنى"
+msgstr "الأدنى"
#. LtMJs
#: sc/inc/strings.hrc:243
-#, fuzzy
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
-msgstr "الحد الأقصى"
+msgstr "الأقصى"
#. Q5r5c
#: sc/inc/strings.hrc:244
@@ -19584,19 +19540,19 @@ msgstr ""
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "You are pasting data into cells that already contain data."
-msgstr ""
+msgstr "أنت تلصق بيانات في خلايا تحتوي بيانات مسبقًا."
#. CKjJw
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:12
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "Do you really want to overwrite the existing data?"
-msgstr ""
+msgstr "هل تريد بالفعل الكتابة على البيانات الموجودة؟"
#. thPSB
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:76
msgctxt "checkwarningdialog|ask"
msgid "Warn me about this in the future."
-msgstr ""
+msgstr "حذّرني عن هذا مستقبلا."
#. SE9uJ
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:8
@@ -19734,13 +19690,13 @@ msgstr "أدر التّنسيقات الشّرطيّة"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:129
msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
-msgstr ""
+msgstr "المجال"
#. Gipiw
#: sc/uiconfig/scalc/ui/condformatmanager.ui:142
msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
msgid "First Condition"
-msgstr ""
+msgstr "الشرط الأول"
#. Cshpe
#: sc/uiconfig/scalc/ui/condformatmanager.ui:153
@@ -21966,28 +21922,27 @@ msgstr ""
#. nHoB2
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:18
-#, fuzzy
msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog"
msgid "Define Database Range"
-msgstr "تحديد نطاق قاعدة البيانات"
+msgstr "عرّف مجال قاعدة البيانات"
#. CyzxS
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:44
msgctxt "definedatabaserangedialog|extended_tip|ok"
msgid "Saves all changes and closes dialog."
-msgstr ""
+msgstr "يحفظ كل التغييرات ويغلق الحواري."
#. djkZd
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:63
msgctxt "definedatabaserangedialog|extended_tip|cancel"
msgid "Closes dialog and discards all changes."
-msgstr ""
+msgstr "يغلق الحواري ويستبعد كل التغييرات."
#. RMghE
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:171
msgctxt "definedatabaserangedialog|extended_tip|entry"
msgid "Enter a name for the database range that you want to define, or select an existing name from the list."
-msgstr ""
+msgstr "أدخِل اسمًا لمجال قاعدة البيانات الذي تريد تعريفه، أو حدد اسمًا موجودا من اللائحة."
#. 4FqWF
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:186
@@ -22011,13 +21966,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:256
msgctxt "definedatabaserangedialog|Range"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. CPDFA
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:284
msgctxt "definedatabaserangedialog|extended_tip|add"
msgid "Adds the selected cell range to the database range list, or modifies an existing database range."
-msgstr ""
+msgstr "يضيف مجال الخلايا المحدد الى لائحة مجال قاعدة البيانات، أو يعدّل مجال قاعدة بيانات موجود."
#. N8Lui
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:296
@@ -22042,7 +21997,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:358
msgctxt "definedatabaserangedialog|extended_tip|ContainsColumnLabels"
msgid "Selected cell ranges contains labels."
-msgstr ""
+msgstr "مجالات الخلايا المحددة تحتوي لصائق."
#. QBs5X
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:370
@@ -24995,7 +24950,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/namerangesdialog.ui:387
msgctxt "namerangesdialog|label1"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. aDbLN
#: sc/uiconfig/scalc/ui/namerangesdialog.ui:412
@@ -32531,7 +32486,7 @@ msgstr "ت~مييز القيم"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:96
msgctxt "extended_tip|value"
msgid "Mark the Value highlighting box to show the cell contents in different colors, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted."
-msgstr ""
+msgstr "أشّر مربع تمييز القيمة لإظهار محتويات الخلايا بألوان مختلفة، استنادا إلى النوع. تُنسَّق خلايا النص بالأسود والصيغ بالأخضر وخلايا الأرقام بالأزرق وتظهر الخلايا المحمية بخلفية رمادية فاتحة بغضّ النظر عن تنسيق عَرضها."
#. ah84V
#: sc/uiconfig/scalc/ui/tpviewpage.ui:107
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 32643747d18..1fb1acf888f 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-16 04:36+0000\n"
+"PO-Revision-Date: 2021-04-06 08:37+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"
@@ -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: 1542022446.000000\n"
#. WDjkB
@@ -8245,7 +8245,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/presentationdialog.ui:241
msgctxt "presentationdialog|label1"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. tmJvs
#: sd/uiconfig/simpress/ui/presentationdialog.ui:285
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index ea7b63b9d06..676552d1457 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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-18 14:58+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+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"
@@ -2944,7 +2944,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
@@ -3676,9 +3676,10 @@ msgstr ""
#. 8gPai
#: sfx2/uiconfig/ui/linefragment.ui:149
+#, fuzzy
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
-msgstr ""
+msgstr "..."
#. x4Fjd
#: sfx2/uiconfig/ui/linefragment.ui:185
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index cddfe67768f..3ecf5b47a55 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/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-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-29 14:28+0000\n"
+"PO-Revision-Date: 2021-04-06 08:37+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"
@@ -9873,7 +9873,7 @@ msgstr ""
#: include/svx/strings.hrc:1749
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "استخدم إعدادات الكائن الرئيسي"
#. G2Jyh
#. page direction
@@ -18457,10 +18457,9 @@ msgstr ""
#. mGrjp
#: svx/uiconfig/ui/redlinefilterpage.ui:217
-#, fuzzy
msgctxt "redlinefilterpage|rangeedit-atkobject"
msgid "Range"
-msgstr "النطاق"
+msgstr "المجال"
#. B4t2S
#: svx/uiconfig/ui/redlinefilterpage.ui:218
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 37d67936939..22aea062a91 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-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-19 16:39+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+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"
@@ -9830,6 +9830,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "مخصص"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -15837,7 +15849,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/frmaddpage.ui:444
msgctxt "frmaddpage|extended_tip|textflow"
msgid "Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select Use superordinate object settings from the list."
-msgstr ""
+msgstr "يحدد اتجاه انسياب النص المفضّل في الإطار. لتستخدم إعدادات انسياب النص المبدئي للصفحة، حدد استخدام إعدادات الكائن الرئيسي من اللائحة."
#. ph8JN
#: sw/uiconfig/swriter/ui/frmaddpage.ui:457
@@ -20137,14 +20149,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "اختر مستند البداية لدمج المراسلات"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -27370,7 +27388,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
-msgstr "استخدم إعدادات كائن الاحداثيات الرئيسية"
+msgstr "استخدم إعدادات الكائن الرئيسي"
#. FJnts
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
diff --git a/source/ar/vcl/messages.po b/source/ar/vcl/messages.po
index da9312a81de..97f9602b86c 100644
--- a/source/ar/vcl/messages.po
+++ b/source/ar/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\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"
@@ -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.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022451.000000\n"
#. k5jTM
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 1dd8c773097..05451ccfe8c 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3561,10 +3561,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9160,6 +9160,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9470,13 +9488,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14732,161 +14750,167 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "HTML, Basic আৰু SQL উৎসসমূহৰ বাবে ফন্ট সংহতিসমূহ"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "প্ৰসাৰিত সহায়সমূহ (_E)"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_U)"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ডাইলগসমূহ খোলক/সঞ্চয় কৰক"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_d)"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ডাইলগসমূহ প্ৰিন্ট কৰক"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "সংহতিসমূহ \"দস্তাবেজ সলনি কৰা হৈছে\" অৱস্থা প্ৰিন্ট কৰা হৈ আছে (_P)"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দস্তাবেজ অৱস্থা"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "বছৰসমূহ মাজত থকাকে অনুবাদ কৰক (_I) "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "আৰু "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছৰ (দুটা ডিজিট)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME -ক চিস্টেম আৰম্ভ হোৱাৰ সময়ত লোড কৰক"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter সামৰ্থবান কৰক"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17645,34 +17669,40 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "বিন্যাস সংহতিসমূহ"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
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 afe0d57a975..929e68219ea 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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -29066,6 +29066,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "অৱস্থান আৰু আকাৰ"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index f3d2a19b651..fad66d4703c 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2946,7 +2946,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index b0403f8188d..4cc8dc18e8f 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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9990,6 +9990,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20574,14 +20586,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/as/vcl/messages.po b/source/as/vcl/messages.po
index d872e3df3e6..820ce13032e 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1157,8 +1157,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index f365e48cd72..6852f84abed 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\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"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Carauterístiques tipográfiques"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14514,161 +14532,167 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Configuración de fontes pa HTML, Basic y oríxenes de datos SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Ayuda emerxente e_stendía"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Amuesa un testu d'ayuda cuando'l cursor déxase sobre un iconu, un comandu de menú o un control nun cuadru de diálogu."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diálogos p'abrir/guardar"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diálogos d'imprentación"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Im_prentar afita l'estáu de \"documentu camudáu\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Especifica si la impresión del documentu considérase una cambéu."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estáu del documentu"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años ente "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Define un intervalu de feches, dientro del cual el sistema reconoz un añu de dos díxitos."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Añu (con dos díxitos)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME nel arranque del sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar l'aniciu rápidu nel área de notificación"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Aniciu rápidu de %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Especifica la configuración xeneral de %PRODUCTNAME."
@@ -17419,34 +17443,40 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Configuración del diseñu"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ast/helpcontent2/source/auxiliary.po b/source/ast/helpcontent2/source/auxiliary.po
index ea9a5034605..324dbbde683 100644
--- a/source/ast/helpcontent2/source/auxiliary.po
+++ b/source/ast/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-10 14:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/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.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1532004324.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referencia d'órdenes"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funciones, instrucciones y operadores"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Llista alfabética de funciones, instrucciones y operadores"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 146a3ae0392..5e8537587ff 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile;función</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Devuelve'l siguiente númberu de ficheru disponible pa l'apertura d'un ficheru. Esta función utilizar p'abrir un ficheru usando un númberu que nun tea n'usu anguaño por un ficheru abiertu anguaño."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de torna:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enteru"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Esta función namái pue usase darréu delantre d'una instrucción Open. FreeFile devuelve'l númberu de ficheru disponible, pero nun lu acuta."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNúmberu, \"Primer llinia de testu\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNúmberu, \"Otra llinia de testu\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNúmberu, \"Esta ye otra llinia de testu\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNúmberu, \"Esta ye una llinia de testu nueva\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Tolos ficheros van zarrase\",0,\"Fallu\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Posición al entamu"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Esta ye la primera llinia de testu\" ' Rellena la llinia con testu"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Print #iNúmberu, \"Esta ye la segunda llinia de testu\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Print #iNúmberu, \"Esta ye la tercer llinia de testu\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNúmberu,,\"Esto ye un testu nuevu\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNúmberu,20,\"Esti ye'l testu del rexistru 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input;función</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determina si'l punteru de ficheru llegó a la fin d'ésti."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (ExpresiónEntero As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de torna:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Lóxicu"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF utilizar pa evitar fallos al intentar llograr datos más allá del final d'un ficheru. Cuando s'utiliza la instrucción Input o Get pa lleer d'un ficheru, el punteru de ficheru avanzar según el númberu de bytes lleíos. Cuando se llega a la fin del ficheru, EOF devuelve'l valor \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNúmberu, \"Primer llinia de testu\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNúmberu, \"Otra llinia de testu\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Devuelve'l tamañu d'un ficheru abiertu en bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (NúmberuFicheru)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de torna:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Llargu"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Pa llograr el llargor d'un ficheru que nun ta abiertu, utilízase la función <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sTestu As Variant REM Tien De ser una variante"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNúmberu,1 REM Posición de primeres"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNúmberu,, \"Esta ye la primer llinia de testu\" REM Rellenar con testu"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Print #iNúmberu, \"Esta ye la segunda llinia de testu\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Print #iNúmberu, \"Esta ye la tercer llinia de testu\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNúmberu,,\"Esto ye una llinia de testu nueva\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNúmberu,20,\"Esti ye'l testu del rexistru 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Consulte tamién: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (NúmberuFicheru As Integer, Atributu As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de torna:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enteru"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (ficheru abiertu en mou binariu)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNúmberu, \"Esta ye una llinia de testu\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNúmberu, 1 ),0,\"Mou d'accesu\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNúmberu, 2 ),0,\"Atributu de ficheru\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Desanicia un ficheru d'un discu."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Ficheru As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Ficheru:</emph> Cualquier espresión de cadena que contenga una especificación de ficheru inequívoca. Tamién pue usase la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notación URL\">notación URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' El ficheru tien de crease con anterioridá"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Habilita una rutina de manexu de fallos dempués de producise éstos o sigue la execución del programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "La instrucción On Fallu GoTo utilizar pa reaccionar a los fallos que se producen nuna macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNúmberu, \"Esta ye una llinia de testu\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Tolos ficheros van zarrase\",0,\"Fallu\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operador (matemáticu)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Devuelve'l restu enteru d'una división."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultáu = Espresión1 MOD Espresión2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valor de torna:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Enteru"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultáu:</emph> Cualesquier variable numbérica que contenga la resultancia de la operación MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Espresión1, Espresión2:</emph> Les espresiones numbériques que se deseya estremar."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultáu = Espresión1 MOD Espresión2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' devuelve 0"
+msgid "Integer"
+msgstr "Enteru"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' devuelve 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' devuelve 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' devuelve 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' devuelve 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' devuelve 0,5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadores de comparanza"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Operadores de comparanza</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Los operadores de comparanza disponibles descríbense equí."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 81c17ef6a9e..b6b75c17f50 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-24 12:37+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"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 6a794e2bba5..3722fc696b0 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -21050,50 +21050,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXU"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Devuelve un númberu como testu con un númberu especificáu de decimales y separadores de miles opcionales.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Númberu</emph> fai referencia al númberu al que se va a dar formatu."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimales</emph> fai referencia al númberu de posiciones decimales que se van amosar."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>Nun dixebrar_millares</emph> (opcional) determina si utiliza'l separador de millares. Si'l parámetru ye un númberu non igual a 0, esaníciase'l separador de millares. Si'l parámetru ye igual a 0 o si nun apaez n'absolutu, amuésense los separadores de millares de la <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">configuración rexonal actual</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21104,14 +21104,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXU(1234567,89;3)</item> devuelve 1.234.567,890 como cadena de testu."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXU(1234567,89;3)</item> devuelve 1234567,890 como una cadena de testu."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 42eaa46f0d1..b727c4221aa 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 0eaf4f4314d..9d31ed8a4df 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Escueya un elementu de la llista y faiga clic nun botón de flecha pa mover dichu elementu.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaxe de corréu electrónicu"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaxe de corréu electrónicu"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedaes"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index fc656020c60..526029b7808 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Pa dexar de poner en mayúscula la primer lletra d'una frase"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
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 015080ab85e..f143eec10ee 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -29022,6 +29022,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamañu"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 406d4dc9c71..1b7d5eb2fe4 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -2938,7 +2938,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 7ce7e15cda4..8881651d638 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-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-23 10:56+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+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"
@@ -6004,10 +6004,9 @@ msgstr ""
#. xvSRm
#: sw/inc/strings.hrc:669
-#, fuzzy
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
-msgstr "Inxertar hiperenllaz"
+msgstr "Inxertar como hiperenllaz"
#. sdfGe
#: sw/inc/strings.hrc:670
@@ -6043,17 +6042,15 @@ msgstr "anubríu"
#. 3VWjq
#: sw/inc/strings.hrc:675
-#, fuzzy
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "activa"
#. YjPvg
#: sw/inc/strings.hrc:676
-#, fuzzy
msgctxt "STR_INACTIVE"
msgid "inactive"
-msgstr "inactivu"
+msgstr "inactiva"
#. tBPKU
#: sw/inc/strings.hrc:677
@@ -9935,6 +9932,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizáu"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20378,15 +20387,21 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleicionar documentu de partida pa la combinación de corréu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/ast/vcl/messages.po b/source/ast/vcl/messages.po
index 00298c97428..21cee67d734 100644
--- a/source/ast/vcl/messages.po
+++ b/source/ast/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\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"
@@ -1157,8 +1157,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index c053365b6cd..0a779f1ff1c 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3534,10 +3534,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9018,6 +9018,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9321,13 +9339,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14457,160 +14475,166 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Yardım"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialoqları"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialoqları"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "və"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17316,33 +17340,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
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 76194472dc3..b31a863eae9 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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28850,6 +28850,16 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
#, fuzzy
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 586738634bf..be133470e9f 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2867,7 +2867,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 1cd0c374273..d3760697853 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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9848,6 +9848,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr ""
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20189,14 +20201,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/az/vcl/messages.po b/source/az/vcl/messages.po
index 6af8b16070e..d5fcb2c550a 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1170,8 +1170,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index d340e2dae51..123f960cfb6 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3546,10 +3546,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8979,6 +8979,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9280,13 +9298,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14365,157 +14383,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Настаўленні шрыфтаў для крынічных тэкстаў HTML, Basic і SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Пашыраныя наменкі"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Даведка"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Дыялогі Адкрыцця і Запісу"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Дыялогі друкавання"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Друкаванне азначае \"дакумент зменены\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Стан дакумента"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Інтэрпрэтаваць як гады паміж "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "і "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Год (дзве лічбы)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Збіраць звесткі пра выкарыстанне і адпраўляць у The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Дапамажыце палепшыць %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Пуск %PRODUCTNAME пры пуску сістэмы"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Значок Хуткапуску ў сістэмным трэі"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Хуткі Пускальнік %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17216,33 +17240,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Настаўленні выкладу"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
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 0c265966854..56a7b827c2f 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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -28733,6 +28733,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Месца і памер"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index 25ba5fb581f..86382fd10f9 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2908,7 +2908,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 501dc3029f3..fe53704326f 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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9786,6 +9786,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Свой"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20026,14 +20038,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Выбраць дакумент як аснову для памножанай пошты"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/be/vcl/messages.po b/source/be/vcl/messages.po
index 7c8eadcee96..6ebfc77fe6b 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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index a8391e8b53b..394994bf66d 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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-22 13:07+0000\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bg/>\n"
"Language: bg\n"
@@ -3548,11 +3548,11 @@ 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 "Лентата с групи предоставя достъп до функциите по групи, с икони за най-често използваните функции и падащи менюта за останалите. Този пълен вариант отдава по-голямо значение на функциите и е малко по-голям от другите."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
+msgstr ""
#. eGMCZ
#: cui/inc/toolbarmode.hrc:29
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Приписва макроси на събития в програмата. Приписаните макроси се изпълняват автоматично при всяко възникване на избраното събитие."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Възможности на шрифта"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Мостра"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Тук можете да избирате и прилагате типографски възможности върху знаците."
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Настройки на шрифтове за изходен код на HTML, Basic и SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Разширени подсказки"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Показва помощен текст, когато задържите курсора върху икона, команда от меню или контрола в диалогов прозорец."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Предупреждение за неинсталирана офлайн помощ"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Показване на „Съвет на деня“ при стартиране"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Помощ"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Диалогови прозорци за отваряне/записване"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Диалогови прозорци за печат"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Печатането установява състояние „променен документ“"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Определя дали отпечатването на документ се счита за промяна."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Състояние на документа"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Интерпретиране като години между "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Определя диапазон от дати, в които системата ще разпознава двуцифрени години."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Двуцифрени години"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Събиране и изпращане на данни за употребата към TDF"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Изпращане на данни за употребата на софтуера, които помагат на The Document Foundation да подобрява удобството на работа с него."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Изпращане на доклади за сривове към The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Помогнете за подобряване на %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Зареждане на %PRODUCTNAME при стартиране на системата"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Икона за бързо стартиране"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Подразбирани приложения на Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Файлови асоциации на %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Задава общите настройки за %PRODUCTNAME."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Отгоре"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
-msgstr ""
+msgstr "Фонът покрива полетата"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
-msgstr ""
+msgstr "Ако има фон, той ще покрива и полетата на страницата."
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
-msgstr ""
+msgstr "Ако е включено, всеки зададен фон ще покрива цялата страница, включително полетата. Ако е изключено, фонът ще покрива страницата само вътре между полетата."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Настройки за оформление"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -18317,14 +18347,14 @@ msgstr "Текстът, от който се генерира QR кодът."
#: cui/uiconfig/ui/qrcodegen.ui:132
msgctxt "qrcodegen|label_text"
msgid "URL/Text:"
-msgstr ""
+msgstr "URL/текст:"
#. FoKEY
#. Set Margin around QR
#: cui/uiconfig/ui/qrcodegen.ui:147
msgctxt "qrcodegen|label_margin"
msgid "Margin:"
-msgstr ""
+msgstr "Поле:"
#. i2kkj
#. Error Correction Level of QR code
@@ -18337,7 +18367,7 @@ msgstr "Коригиране на грешки:"
#: cui/uiconfig/ui/qrcodegen.ui:200
msgctxt "edit margin"
msgid "The margin surrounding the QR code."
-msgstr ""
+msgstr "Полето, обграждащо QR кода."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:217
@@ -21043,19 +21073,19 @@ msgstr "Стандартна лента с инструменти"
#: 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 ""
+msgstr "Единична лента с инструменти"
#. KDJfx
#: cui/uiconfig/ui/toolbarmodedialog.ui:174
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Sidebar"
-msgstr ""
+msgstr "Странична лента"
#. YvSd9
#: cui/uiconfig/ui/toolbarmodedialog.ui:192
@@ -21067,13 +21097,13 @@ msgstr "С раздели, компактна"
#: cui/uiconfig/ui/toolbarmodedialog.ui:210
msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
-msgstr ""
+msgstr "Лента с групи"
#. qwCAA
#: cui/uiconfig/ui/toolbarmodedialog.ui:228
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Лента с групи, компактна"
#. iSVgL
#: cui/uiconfig/ui/toolbarmodedialog.ui:246
diff --git a/source/bg/helpcontent2/source/auxiliary.po b/source/bg/helpcontent2/source/auxiliary.po
index 40c32db87c3..08cba1f7f32 100644
--- a/source/bg/helpcontent2/source/auxiliary.po
+++ b/source/bg/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/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: 1562422107.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Справочник за командите"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Функции, оператори и операции"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Азбучен списък на функции, оператори и операции"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index 13f0ddec980..9ea33277e3b 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-21 21:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/bg/>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile, функция</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">Функция FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Връща следващия достъпен файлов номер за отваряне на файл. Използвайте тази функция, за да отворите файл с файлов номер, който не е в употреба от друг отворен в момента файл."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Тази функция може да бъде използвана само непосредствено преди оператор Open. FreeFile връща следващия достъпен файлов номер, но не го резервира."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Първият ред с текст\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Още един ред с текст\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Това е още един ред с текст\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Това е нов ред с текст\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Всички файлове ще бъдат затворени\", 0, \"Грешка\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber, 1 ' Позиционираме в началото"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Това е първият ред с текст\" ' Запълваме ред с текст"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Това е третият ред с текст\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,, \"Това е нов текст\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber, 20, \"Това е текстът в запис 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input, оператор</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Оператор Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Определя дали файловият указател е достигнал края на файла."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (IntExpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Използвайте EOF, за да избегнете грешки при опит за четене след края на файл. Когато четете от файл с оператора Input или Get, файловият указател нараства с броя на прочетените байтове. Когато бъде достигнат краят на файла, EOF връща стойността True (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Първият ред с текст\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Още един ред с текст\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Връща размера на отворен файл в байтове."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "За да намерите дължината на файл, който не е отворен, използвайте функцията <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Трябва да бъде Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Позиционираме в началото"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Това е първият ред с текст\" REM Запълваме с текст"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Това е вторият ред с текст\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Това е третият ред с текст\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,, \"Това е нов ред с текст\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber, 20, \"Това е текстът в запис 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Виж също: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 – BINARY (файлът е отворен в двоичен режим)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Това е ред с текст\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1), 0, \"Режим на достъп\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2), 0, \"Атрибути на файла\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Изтрива файл от диск."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> низов израз, който еднозначно посочва файл. Може да бъде във вид на <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL\">URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Файлът трябва предварително да е създаден"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Служи за задаване на подпрограма за обработка на грешки и продължаване на изпълнението на програмата."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Операторът On Error GoTo служи за обработка на грешките, които възникват в даден макрос."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Пример:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Това е ред с текст\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Всички файлове ще бъдат затворени\", 0, \"Грешка\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Mod, математическа операция</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Операция Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Връща целочисления остатък от деление."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Синтаксис:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 Mod Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Връщана стойност:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Параметри:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
+"help.text"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
+
+#. tjLmf
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph> числов израз, който съдържа остатъка от делението."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. uVobi
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id3147560\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> числовите изрази, чиито стойности искате да разделите."
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 Mod Expression2"
-#. PEAiU
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3153380\n"
"help.text"
-msgid "Example:"
-msgstr "Пример:"
+msgid "Integer"
+msgstr "Integer"
-#. ucwCQ
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' връща 0"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' връща 4"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' връща 0"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' връща 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' връща 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' връща 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr "Функции <link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> и <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link>"
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Операции за сравнение"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Операции за сравнение\">Операции за сравнение</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Тук са описани наличните операции за сравнение."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/03.po b/source/bg/helpcontent2/source/text/sbasic/shared/03.po
index 67ec5915f4c..2e990f2e911 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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index bfe8fff54cf..9cfa5116e07 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-25 13:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
@@ -21050,50 +21050,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Връща число като текст със зададен брой десетични позиции и – по желание – с разделители на хилядите.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXED(Число; ДробниПозиции [; БезРазделителНаХилядите])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Число</emph> е числото, което да бъде форматирано."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>ДробниПозиции</emph> е броят дробни позиции, който да се показва."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>БезРазделителНаХилядите</emph> (незадължителен) определя дали да се използва разделител на хилядите. Ако параметърът е число, различно от 0, разделителят на хилядите се пропуска. Ако параметърът е равен на 0 или липсва, се използва разделителят на хилядите, зададен в <link href=\"text/shared/optionen/01140000.xhp\" name=\"текуща настройка за локал\">текущата настройка за локал</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21104,14 +21104,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567,89;3)</item> връща „1 234 567,890“ като текстов низ."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> връща „1234567,890“ като текстов низ."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/bg/helpcontent2/source/text/sdatabase.po b/source/bg/helpcontent2/source/text/sdatabase.po
index a34a8a3272b..e2661b749af 100644
--- a/source/bg/helpcontent2/source/text/sdatabase.po
+++ b/source/bg/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/bg/>\n"
"Language: bg\n"
@@ -4468,7 +4468,7 @@ msgctxt ""
"par_id3156117\n"
"help.text"
msgid "Match the data field names in the<emph> Copy Table</emph> dialog on the <link href=\"text/sdatabase/05030400.xhp\" name=\"Apply Columns\">Apply Columns</link> page."
-msgstr ""
+msgstr "Задайте съответствието между полетата с данни в диалоговия прозорец <emph>Копиране на таблица</emph>, на страницата <link href=\"text/sdatabase/05030400.xhp\" name=\"Apply Columns\">Прилагане на колони</link>."
#. toArF
#: 05030100.xhp
@@ -4477,7 +4477,7 @@ msgctxt ""
"par_id3153252\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/data\">If the data cannot be attached, you will see a list of fields in the <emph>Column Info</emph> dialog whose data cannot be copied.</ahelp> If you confirm this dialog with OK, only the data that does not appear in the list will be attached."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/data\">Ако данните не могат да бъдат добавени, в диалоговия прозорец <emph>Информация за колони</emph> ще видите полетата, чиито данни не могат да се копират.</ahelp> Ако потвърдите този диалог с OK, ще се добавят само данните, които не са в този списък."
#. 8JYz8
#: 05030100.xhp
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table."
-msgstr ""
+msgstr "Ако по време на добавянето на данните полетата на таблицата цел са по-къси от тези в таблицата източник, съдържанието на полетата от източника ще бъде автоматично скъсено, за да се побере."
#. 6oNSE
#: 05030100.xhp
@@ -4495,7 +4495,7 @@ msgctxt ""
"bm_id3149164\n"
"help.text"
msgid "<bookmark_value>primary keys; defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>първични ключове; задаване</bookmark_value>"
#. odQAJ
#: 05030100.xhp
@@ -4504,7 +4504,7 @@ msgctxt ""
"hd_id3149164\n"
"help.text"
msgid "Create primary key"
-msgstr ""
+msgstr "Създаване на първичен ключ"
#. T7Dmr
#: 05030100.xhp
@@ -4513,7 +4513,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Automatically generates a primary key data field and fills it with values.</ahelp> You should always use this field, since a primary key must always be available in order to edit the table."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Автоматично създава поле – първичен ключ и го попълва със стойности.</ahelp> Препоръчва се винаги да използвате това поле, тъй като за редактиране на таблица е задължително тя да има първичен ключ."
#. EhRtD
#: 05030100.xhp
@@ -4522,7 +4522,7 @@ msgctxt ""
"hd_id3146794\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Име"
#. v9USa
#: 05030100.xhp
@@ -4531,7 +4531,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/keyname\">Specifies a name for the primary key generated. This name is optional.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/keyname\">Задава име за генерирания първичен ключ. Това име не е задължително.</ahelp>"
#. seBiB
#: 05030100.xhp
@@ -4540,7 +4540,7 @@ msgctxt ""
"par_id3151056\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Следваща страница</link>"
#. DDJC9
#: 05030200.xhp
@@ -4549,7 +4549,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Apply columns"
-msgstr ""
+msgstr "Избиране на колони"
#. FnB9J
#: 05030200.xhp
@@ -4558,7 +4558,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Apply columns</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Избиране на колони</link>"
#. 6b9Li
#: 05030200.xhp
@@ -4567,7 +4567,7 @@ msgctxt ""
"par_id3147143\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The <emph>Apply columns </emph>dialog is the second window of the <emph>Copy table</emph> dialog."
-msgstr ""
+msgstr "В изгледа с източници на данни можете да копирате таблица, като я плъзнете и пуснете върху контейнера на таблици. Диалоговият прозорец <emph>Избиране на колони</emph> е втората стъпка на <emph>Копиране на таблица</emph>."
#. 8r9yc
#: 05030200.xhp
@@ -4576,7 +4576,7 @@ msgctxt ""
"hd_id3155552\n"
"help.text"
msgid "Existing columns"
-msgstr ""
+msgstr "Съществуващи колони"
#. NDcVA
#: 05030200.xhp
@@ -4585,7 +4585,7 @@ msgctxt ""
"hd_id3154751\n"
"help.text"
msgid "Left list box"
-msgstr ""
+msgstr "Ляв списък"
#. AkHFX
#: 05030200.xhp
@@ -4594,7 +4594,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/from\">Lists the available data fields that you can include in the copied table. To copy a data field, click its name, and then click the > button. To copy all of the fields, click the <emph>>></emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/from\">Съдържа наличните полета с данни, които можете да включите в копираната таблица. За да копирате поле с данни, щракнете върху името му и после – върху бутона „>“. За да копирате всички полета, натиснете бутона <emph>>></emph>.</ahelp>"
#. FYG4i
#: 05030200.xhp
@@ -4603,7 +4603,7 @@ msgctxt ""
"hd_id3154823\n"
"help.text"
msgid "Right list box"
-msgstr ""
+msgstr "Десен списък"
#. KgGGQ
#: 05030200.xhp
@@ -4612,7 +4612,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Lists the fields that you want to include in the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Съдържа полетата, които ще бъдат включени в новата таблица.</ahelp>"
#. VyQwS
#: 05030200.xhp
@@ -4621,7 +4621,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Buttons"
-msgstr ""
+msgstr "Бутони"
#. NT8C3
#: 05030200.xhp
@@ -4630,7 +4630,7 @@ msgctxt ""
"par_id3146797\n"
"help.text"
msgid "<ahelp hid=\".\">Adds or removes the selected field (> or < button) or all of the fields (<< or >> button).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Добавя или премахва избраното поле (бутон „>“ или „<“) или всички полета (бутон „>>“ или „<<“).</ahelp>"
#. CuqBd
#: 05030200.xhp
@@ -4639,7 +4639,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Следваща страница</link>"
#. gTg68
#: 05030300.xhp
@@ -4648,7 +4648,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Type formatting"
-msgstr ""
+msgstr "Форматиране на типовете"
#. ybz5D
#: 05030300.xhp
@@ -4657,7 +4657,7 @@ msgctxt ""
"hd_id3163829\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Type formatting</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Форматиране на типовете</link>"
#. EkSPG
#: 05030300.xhp
@@ -4666,7 +4666,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The<emph> Type formatting </emph>dialog is the third window of the <emph>Copy table</emph> dialog."
-msgstr ""
+msgstr "В изгледа с източници на данни можете да копирате таблица, като я плъзнете и пуснете върху контейнера на таблици. Диалоговият прозорец <emph>Форматиране на типовете</emph> е третата стъпка на <emph>Копиране на таблица</emph>."
#. mnHDq
#: 05030300.xhp
@@ -4675,7 +4675,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "List box"
-msgstr ""
+msgstr "Списък"
#. EqDjY
#: 05030300.xhp
@@ -4684,7 +4684,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/columnnames\">Lists the data fields that will be included in to the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/columnnames\">Показва полетата с данни, които ще бъдат включени в копираната таблица.</ahelp>"
#. NCTje
#: 05030300.xhp
@@ -4693,7 +4693,7 @@ msgctxt ""
"hd_id3155535\n"
"help.text"
msgid "Column information"
-msgstr ""
+msgstr "Информация за колоната"
#. eiXTf
#: 05030300.xhp
@@ -4702,7 +4702,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "Field name"
-msgstr ""
+msgstr "Име на полето"
#. MNzaq
#: 05030300.xhp
@@ -4711,7 +4711,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the name of the selected data field. If you want, you can enter a new name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Показва името на избраното поле за данни. Ако желаете, можете да въведете ново име.</ahelp>"
#. GhbYj
#: 05030300.xhp
@@ -4720,7 +4720,7 @@ msgctxt ""
"hd_id3156113\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Тип на полето"
#. MmakP
#: 05030300.xhp
@@ -4729,7 +4729,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Изберете тип на полето.</ahelp>"
#. E9Z9q
#: 05030300.xhp
@@ -4738,7 +4738,7 @@ msgctxt ""
"hd_id3149763\n"
"help.text"
msgid "Length"
-msgstr ""
+msgstr "Дължина"
#. BE8Ct
#: 05030300.xhp
@@ -4747,7 +4747,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of characters for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Въведете броя знаци за полето.</ahelp>"
#. FqaDj
#: 05030300.xhp
@@ -4756,7 +4756,7 @@ msgctxt ""
"hd_id3159176\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Дробни позиции"
#. 4pH6B
#: 05030300.xhp
@@ -4765,7 +4765,7 @@ msgctxt ""
"par_id3153666\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of decimal places for the data field. This option is only available for numerical or decimal data fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Въведете броя на дробните позиции за полето с данни. Тази настройка е налице само за числови и десетични полета.</ahelp>"
#. 8H7Yy
#: 05030300.xhp
@@ -4774,7 +4774,7 @@ msgctxt ""
"hd_id3150276\n"
"help.text"
msgid "Default value"
-msgstr ""
+msgstr "Подразбирана стойност"
#. uF2x5
#: 05030300.xhp
@@ -4783,7 +4783,7 @@ msgctxt ""
"par_id3147620\n"
"help.text"
msgid "<ahelp hid=\".\">Select the default value for a Yes/No field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Изберете подразбирана стойност за поле от типа „да/не“.</ahelp>"
#. H7JCy
#: 05030300.xhp
@@ -4792,7 +4792,7 @@ msgctxt ""
"hd_id3153087\n"
"help.text"
msgid "Automatic type recognition"
-msgstr ""
+msgstr "Автоматично разпознаване на типа"
#. KTPFP
#: 05030300.xhp
@@ -4801,7 +4801,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "$[officename] can automatically recognize field contents when you copy database tables by drag and drop."
-msgstr ""
+msgstr "$[officename] може автоматично да разпознава съдържанието на полета, когато копирате таблици в база от данни чрез плъзгане и пускане."
#. XbBEn
#: 05030300.xhp
@@ -4810,7 +4810,7 @@ msgctxt ""
"hd_id3156023\n"
"help.text"
msgid "(max.) lines"
-msgstr ""
+msgstr "Редове (макс.)"
#. 9uGo7
#: 05030300.xhp
@@ -4819,7 +4819,7 @@ msgctxt ""
"par_id3155923\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/auto\">Enter the number of lines to use for automatic type recognition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/auto\">Въведете броя на редовете, които да бъдат използвани за автоматичното разпознаване на типове.</ahelp>"
#. ZojMW
#: 05030300.xhp
@@ -4828,7 +4828,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "Auto"
-msgstr ""
+msgstr "Автоматично"
#. KXrRC
#: 05030300.xhp
@@ -4837,7 +4837,7 @@ msgctxt ""
"par_id3152361\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/autobutton\">Enables automatic type recognition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/autobutton\">Разрешава автоматичното разпознаване на типове.</ahelp>"
#. U6GAf
#: 05030400.xhp
@@ -4846,7 +4846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Assign columns"
-msgstr ""
+msgstr "Присвояване на колони"
#. qFHro
#: 05030400.xhp
@@ -4855,7 +4855,7 @@ msgctxt ""
"hd_id3151100\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030400.xhp\" name=\"Assign columns\">Assign columns</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030400.xhp\" name=\"Assign columns\">Присвояване на колони</link>"
#. EkAFg
#: 05030400.xhp
@@ -4864,7 +4864,7 @@ msgctxt ""
"par_id3156027\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. If you select the <emph>Attach data </emph>check box on the first page of the <emph>Copy table </emph>dialog, the <emph>Assign columns </emph>dialog opens as the second window. You can use this dialog to map the contents of a data field in the source table to a different data field in the destination table."
-msgstr ""
+msgstr "В изгледа с източници на данни можете да копирате таблица, като я плъзнете и пуснете върху контейнера на таблици. Ако изберете <emph>Добавяне на данни</emph> в първата страница на диалога <emph>Копиране на таблица</emph>, като втора стъпка се показва прозорецът <emph>Присвояване на колони</emph>. В него можете да зададете съответствие между полета от таблицата източник и полета от таблицата назначение."
#. fGrH7
#: 05030400.xhp
@@ -4873,7 +4873,7 @@ msgctxt ""
"hd_id3157958\n"
"help.text"
msgid "Source table"
-msgstr ""
+msgstr "Таблица източник"
#. XA5ur
#: 05030400.xhp
@@ -4882,7 +4882,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/left\">Lists the data fields in the source table. To include a data field from the source table in the destination table, select the check box in front of the data field name. To map the contents of a data field in the source table to a different data field in the destination table, click the data field in the source table list, and then click the up or down arrow.</ahelp> To include all of the source data fields in the destination table, click <emph>All</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/left\">Показва полетата за данни в таблицата източник. За да включите някое от тях в таблицата назначение, отметнете името му. За да насочите съдържанието на поле от таблицата източник към различно поле в таблицата назначение, щракнете върху полето в списъка за таблицата източник и после върху стрелка нагоре или надолу.</ahelp> За да включите всички полета от източника в таблицата назначение, натиснете <emph>Всички</emph>."
#. Kn5tW
#: 05030400.xhp
@@ -4891,7 +4891,7 @@ msgctxt ""
"hd_id3166410\n"
"help.text"
msgid "Destination table"
-msgstr ""
+msgstr "Таблица назначение"
#. CHq7j
#: 05030400.xhp
@@ -4900,7 +4900,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/right\">Lists the possible data fields in the destination table. Only the data fields that are selected in the source table list will be included the destination table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/right\">Показва възможните полета в таблицата назначение. В нея ще бъдат включени само полетата, които са избрани в списъка за таблицата източник.</ahelp>"
#. yGCzC
#: 05030400.xhp
@@ -4909,7 +4909,7 @@ msgctxt ""
"hd_id3150670\n"
"help.text"
msgid "up"
-msgstr ""
+msgstr "Нагоре"
#. AoHnF
#: 05030400.xhp
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected entry up one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Премества избрания елемент с една позиция нагоре в списъка.</ahelp>"
#. BsfZK
#: 05030400.xhp
@@ -4927,7 +4927,7 @@ msgctxt ""
"hd_id3149580\n"
"help.text"
msgid "down"
-msgstr ""
+msgstr "Надолу"
#. XUyNh
#: 05030400.xhp
@@ -4936,7 +4936,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected entry down one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Премества избрания елемент с една позиция надолу в списъка.</ahelp>"
#. DqTjR
#: 05030400.xhp
@@ -4945,7 +4945,7 @@ msgctxt ""
"hd_id3156156\n"
"help.text"
msgid "all"
-msgstr ""
+msgstr "Всички"
#. FBk6i
#: 05030400.xhp
@@ -4954,7 +4954,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/all\">Selects all of the data fields in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/all\">Избира всички изброени в списъка полета.</ahelp>"
#. eFJ6S
#: 05030400.xhp
@@ -4963,7 +4963,7 @@ msgctxt ""
"hd_id3153541\n"
"help.text"
msgid "none"
-msgstr ""
+msgstr "Никои"
#. LYsDF
#: 05030400.xhp
@@ -4972,7 +4972,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">Clears all of the check boxes in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">Изчиства всички отметки от списъка.</ahelp>"
#. cLmBi
#: main.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 277020e7181..48c12e79adb 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -25298,13 +25298,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41813,14 +41813,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Макрос"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Отваря прозореца <link href=\"text/shared/01/06130000.xhp\">Избор на макрос</link>, в който да зададете макрос за избраното събитие.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index e5c711a35b4..5c13c5ad3ca 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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\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"
@@ -28593,23 +28593,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Изберете елемент от списъка и натиснете бутон със стрелка, за да го преместите.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Електронно писмо"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Електронно писмо"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28926,14 +28926,14 @@ msgctxt ""
msgid "Properties"
msgstr "Свойства"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\">Отваря диалоговия прозорец <link href=\"text/swriter/01/mm_emabod.xhp\">Електронна поща</link>, където можете да въведете текста на електронното съобщение за циркулярните файлове, които изпращате като прикачени.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 7a3e3291e22..378a48476f6 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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/textswriterguide/bg/>\n"
@@ -620,15 +620,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "За да спрете превръщането на първите букви от изреченията в главни"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
-#, fuzzy
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Изберете <menuitem>Инструменти - Настройки на автокорекция</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index c97f1772a01..266ef65b546 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-22 13:07+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/bg/>\n"
"Language: bg\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Позиция и размер"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30056,7 +30066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Показване на бутони за свиване на плана"
#. 4hvcy
#: WriterCommands.xcu
@@ -30066,7 +30076,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Показва бутон до заглавията и подзаглавията, който улеснява свиването на плана. Дори и без бутона, можете да свивате плана с Навигатора."
#. C5mHk
#: WriterCommands.xcu
@@ -35426,7 +35436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Превключване на свиването на плана"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index d5674fd6121..c9a551f8a6f 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Позволява ви да приписвате на документа ваши собствени информационни полета."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 0300b454613..a93459ec39d 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\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"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "По избор"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Отваря диалог за избор на шаблон."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Изберете начален документ за циркулярно писмо"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Укажете документа, който искате да се използва за основа на циркулярното писмо."
diff --git a/source/bg/vcl/messages.po b/source/bg/vcl/messages.po
index 723a1a6d0c5..9382675f19c 100644
--- a/source/bg/vcl/messages.po
+++ b/source/bg/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/bg/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Разделител"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index be8b65c1787..4a690f30016 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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\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"
@@ -3551,10 +3551,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9011,6 +9011,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9312,13 +9330,13 @@ msgid "Font Features"
msgstr "ফন্টের বৈশিষ্ট্যগুলি"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "পূর্বরূপ"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14407,157 +14425,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "HTML, বেসিক এবং SQL সোর্সের জন্য ফন্ট সেটিং"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "বর্ধিত পরামর্শ (_E)"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "আপনি কার্সারটি ডায়ালগের একটি আইকন, তালিকার নির্দেশ, বা নিয়ন্ত্রণের উপর স্থির রাখার সময় সহায়িকার পাঠ্য প্রদর্শিত হয়।"
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_U)"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "খুলুন/সংরক্ষণ ডায়লগ"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_d)"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "মুদ্রণ ডায়ালগ"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "মুদ্রণ \"নথি পরিবর্তিত\" অবস্থান নির্ধারণ করেছে (_P)"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "নথির মুদ্রণকরণ পরিবর্তন হিসেবে গণনা করা হয় কিনা তা উল্লেখ করা হয়।"
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির অবস্থা"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "মধ্যবর্তী বছর দিয়ে হিসাব করুন (_I)"
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "একটি তারিখ পরিসর সুনির্দিষ্ট করে, যার মধ্য হতে সিস্টেম দুই-ডিজিটের বছর শনাক্ত করে।"
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছর (দুই সংখ্যার)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "ব্যবহৃত তথ্য সংগ্রহ করুন এবং ডকুমেন্ট ফাউন্ডেশনে পাঠান"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম আরম্ভ করার সময় %PRODUCTNAME লোড"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার সক্রিয়"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME কুইকস্টার্টার"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "%PRODUCTNAME এর জন্য সাধারণ সেটিং সুনির্দিষ্ট করে।"
@@ -17264,33 +17288,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "বহির্বিন্যাসের সেটিং"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/bn-IN/helpcontent2/source/auxiliary.po b/source/bn-IN/helpcontent2/source/auxiliary.po
index 233c2d356be..a640e9db5ac 100644
--- a/source/bn-IN/helpcontent2/source/auxiliary.po
+++ b/source/bn-IN/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-21 08:15+0000\n"
"Last-Translator: Anshuman Das <das.anshuman2018@gmail.com>\n"
"Language-Team: Bengali (India) <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/bn_IN/>\n"
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "কমান্ড উল্লেখ"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "কার্য, বিবৃতি এবং অপারেটর"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "ক্রিয়াকলাপ, বিবৃতি এবং অপারেটরগুলির বর্ণমালা তালিকা"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index 65ab19686e4..ecb6ecc3d97 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile function</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "একটি ফাইল খোলার জন্য পরবর্তীতে উপস্থিত ফাইল সংখ্যা প্রদান করে। বর্তমানে খোলা ফাইল দ্বারা ইতোমধ্যেই ব্যবহৃত নয় এমন ফাইল সংখ্যা ব্যবহার করে একটি ফাইল খোলার জন্য এই ফাংশনটি ব্যবহার করা হয়।"
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "এই ফাংশনটি তাৎ‍ক্ষণিকভাবে শুধুমাত্র একটি ওপেন স্টেটমেন্টের সামনে ব্যবহার করা যাবে। FreeFile পরবর্তী বিদ্যমান ফাইল সংখ্যা প্রদান করে, কিন্তু এটি সংরক্ষণ করেনা।"
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input statement</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "ফাইল পয়েন্টারটি ফাইলের শেষে পৌঁছৈছে কিনা তা নির্ধারণ করা হয়।"
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "একটি ফাইলের শেষ থেকে ইনপুট নেয়ার চেষ্টা করার সময় ত্রুটি পরিহার করার জন্য EOF ব্যবহার করুন। আপনি একটি ফাইল থেকে পড়ার সময় Input অথবা Get statement ব্যবহার করার সময়, ফাইল পয়েন্টারটি পঠিত বাইটের সংখ্যা অনুসারে অগ্রসর হয়। ফাইলের শেষে পৌঁছালে, EOF \"True\" (-1) মান প্রদান করে থাকে।"
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "একটি খোলা ফাইলের আকার বাইটে প্রদান করে থাকে।"
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "লং"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "<emph>FileLen</emph> ফাংশনটি ব্যবহার করে, খোলা নয় এমন একটি ফাইলের সমান দৈর্ঘ্য পাওয়া যায়।"
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "আরও দেখুন: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">খুলুন</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (বাইনারী মোডে ফাইলটি খোলা)।"
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "ডিস্ক থেকে একটি ফাইল মুছে ফেলা হয়।"
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>ফাইল:</emph> যেকোনো স্ট্রিং এক্সপ্রেশন যাতে ফাইলের নির্দিষ্ট বৈশিষ্ট্যের উল্লেখ রয়েছে। আপনি <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL নোটেশন</link>ও ব্যবহার করতে পারেন।"
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\\\datafile.dat\" REM ফাইলটি পূর্বেই তৈরি করা হয়েছিল"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "একটি ত্রুটি সংঘটনের পরে একটি ত্রুটি হ্যান্ডলিং রুটিন সক্রিয় করা হয়, অথবা প্রোগ্রাম চালনা স্থগিত করে রাখা হয়।"
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "একটি ভাগফলের ইনটিজার নিঃশেষে প্রদান করে।"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>ফলাফল:</emph> যেকোনো সংখ্যাসূচক ভেরিয়েবল যা MOD অপারেশনের ফলাফল নির্দেশ করে থাকে।"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>এক্সপ্রেশন১, এক্সপ্রেশন২:</emph> যেকোনো এক্সপ্রেশন যা আপনি ভাগ করতে চান।"
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM returns 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "তুলনামূলক অপারেটর"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">তুলনামূলক অপারেটর</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "উপস্থিত তুলনামূলক অপারেটর সম্পর্কে এখানে বর্ণনা করা হয়।"
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po
index 36de6b89347..931e24bc158 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bn-IN/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 235c1940b95..fa965bb6d6d 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bn_IN/>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">সুনির্দিষ্ট সংখ্যক দশমিক স্থান এবং ঐচ্ছিক সহস্র বিভাজক সহ একটি সংখ্যা টেক্সট হিসাবে প্রদান করে।</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>সংখ্যা</emph> ফরম্যাট করা হবে এমন সংখ্যা নির্দেশ করে থাকে।"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>দশমিক</emph> প্রদর্শন করা হবে এমন সংখ্যার দশমিক স্থান নির্দেশ করে থাকে।"
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>NoThousandsSeparators</emph> (ঐচ্ছিক), সহস্র বিভাজক ব্যবহৃত হবে কিনা তা নির্ধারণ করে। যদি প্যারামিটারটি ০ ব্যতীত অন্য কোনো সংখ্যা হয়, সহস্র বিভাজক বাদ দেয়া হয়। যদি প্যারামিটারটি ০ এর সমান হয় বা অনুপস্থিত থাকে, আপনার <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">বর্তমান লোক্যাল সেটিং</link> এর সহস্র বিভাজক প্রদর্শিত হয়।"
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> টেক্সট স্ট্রিং হিসেবে ১,২৩৪,৫৬৭.৮৯০ প্রদান করে।"
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> টেক্সট স্ট্রিং হিসেবে ১২৩৪৫৬৭.৮৯০ প্রদান করে।"
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 6e5440a944d..c9ea8e94193 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po
index 41ee97a4f27..3e447ed8812 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/01.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">তালিকায় একটি আইটেম নির্বাচন করুন এবং আইটেমটি সরাতে একটি তীর বোতামে ক্লিক করুন। </ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "ইমেইল বার্তা"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "ইমেইল বার্তা"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index 80f2c17bdf1..65bd0de2165 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "একটি বাক্যের প্রথম বর্ণ বড় হাতের করা ঠেকাতে"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index c04b5cdd25a..fc4258f159c 100644
--- a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -29076,6 +29076,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "অবস্থান ও আকার"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
#, fuzzy
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 99e3346274a..f31e0aefd12 100644
--- a/source/bn-IN/sfx2/messages.po
+++ b/source/bn-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-11 07:50+0000\n"
"Last-Translator: somu7777 <Soumya.chowdhury7777@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2904,7 +2904,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 0c3906a0a1e..629db3e35af 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9977,6 +9977,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "স্বনির্ধারিত"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20565,14 +20577,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/bn-IN/vcl/messages.po b/source/bn-IN/vcl/messages.po
index a234f997343..16a6af35e9b 100644
--- a/source/bn-IN/vcl/messages.po
+++ b/source/bn-IN/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1166,8 +1166,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 9c495b09742..46c0af68676 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bn/>\n"
@@ -3575,10 +3575,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9232,6 +9232,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9541,13 +9559,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14842,164 +14860,170 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "বর্ধিত পরামর্শ"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "আপনি কার্সারটি ডায়ালগের একটি আইকন, তালিকার নির্দেশ, বা নিয়ন্ত্রণের উপর স্থির রাখার সময় সহায়িকার পাঠ্য প্রদর্শিত হয়।"
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "নথির মুদ্রণকরণ পরিবর্তন হিসেবে গণনা করা হয় কিনা তা উল্লেখ করা হয়।"
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির নাম অবস্থা"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "একটি তারিখ পরিসর সুনির্দিষ্ট করে, যার মধ্য হতে সিস্টেম দুই-ডিজিটের বছর শনাক্ত করে।"
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম শুরুর সময় %PRODUCTNAME লোড করা"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার নিষ্ক্রিয় করুন"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "%PRODUCTNAME এর জন্য সাধারণ সেটিং সুনির্দিষ্ট করে।"
@@ -17760,33 +17784,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/bn/helpcontent2/source/auxiliary.po b/source/bn/helpcontent2/source/auxiliary.po
index b85a772724d..f3ebfb1b946 100644
--- a/source/bn/helpcontent2/source/auxiliary.po
+++ b/source/bn/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared.po b/source/bn/helpcontent2/source/text/sbasic/shared.po
index 2049c50decc..7fceb4c5732 100644
--- a/source/bn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile function</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "একটি ফাইল খোলার জন্য পরবর্তীতে উপস্থিত ফাইল সংখ্যা প্রদান করে। বর্তমানে খোলা ফাইল দ্বারা ইতোমধ্যেই ব্যবহৃত নয় এমন ফাইল সংখ্যা ব্যবহার করে একটি ফাইল খোলার জন্য এই ফাংশনটি ব্যবহার করা হয়।"
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "এই ফাংশনটি তাৎ‍ক্ষণিকভাবে শুধুমাত্র একটি ওপেন স্টেটমেন্টের সামনে ব্যবহার করা যাবে। FreeFile পরবর্তী বিদ্যমান ফাইল সংখ্যা প্রদান করে, কিন্তু এটি সংরক্ষণ করেনা।"
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input statement</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "ফাইল পয়েন্টারটি ফাইলের শেষে পৌঁছৈছে কিনা তা নির্ধারণ করা হয়।"
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "একটি ফাইলের শেষ থেকে ইনপুট নেয়ার চেষ্টা করার সময় ত্রুটি পরিহার করার জন্য EOF ব্যবহার করুন। আপনি একটি ফাইল থেকে পড়ার সময় Input অথবা Get statement ব্যবহার করার সময়, ফাইল পয়েন্টারটি পঠিত বাইটের সংখ্যা অনুসারে অগ্রসর হয়। ফাইলের শেষে পৌঁছালে, EOF \"True\" (-1) মান প্রদান করে থাকে।"
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "একটি খোলা ফাইলের আকার বাইটে প্রদান করে থাকে।"
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "লং"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "<emph>FileLen</emph> ফাংশনটি ব্যবহার করে, খোলা নয় এমন একটি ফাইলের সমান দৈর্ঘ্য পাওয়া যায়।"
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "আরও দেখুন: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">খুলুন</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (বাইনারী মোডে ফাইলটি খোলা)।"
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "ডিস্ক থেকে একটি ফাইল মুছে ফেলা হয়।"
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>ফাইল:</emph> যেকোনো স্ট্রিং এক্সপ্রেশন যাতে ফাইলের নির্দিষ্ট বৈশিষ্ট্যের উল্লেখ রয়েছে। আপনি <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL নোটেশন</link>ও ব্যবহার করতে পারেন।"
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\\\datafile.dat\" REM ফাইলটি পূর্বেই তৈরি করা হয়েছিল"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "একটি ত্রুটি সংঘটনের পরে একটি ত্রুটি হ্যান্ডলিং রুটিন সক্রিয় করা হয়, অথবা প্রোগ্রাম চালনা স্থগিত করে রাখা হয়।"
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "একটি ভাগফলের ইনটিজার নিঃশেষে প্রদান করে।"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "সিনট্যাক্স:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "প্রদান মান:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "প্যারামিটার:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>ফলাফল:</emph> যেকোনো সংখ্যাসূচক ভেরিয়েবল যা MOD অপারেশনের ফলাফল নির্দেশ করে থাকে।"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>এক্সপ্রেশন১, এক্সপ্রেশন২:</emph> যেকোনো এক্সপ্রেশন যা আপনি ভাগ করতে চান।"
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "উদাহরণ:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM returns 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "তুলনামূলক অপারেটর"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">তুলনামূলক অপারেটর</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "উপস্থিত তুলনামূলক অপারেটর সম্পর্কে এখানে বর্ণনা করা হয়।"
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared/03.po b/source/bn/helpcontent2/source/text/sbasic/shared/03.po
index aa0083b62df..1ef7db9c502 100644
--- a/source/bn/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bn/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index aea53d2ee4f..71ad95475c3 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-08-08 17:28+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">সুনির্দিষ্ট সংখ্যক দশমিক স্থান এবং ঐচ্ছিক সহস্র বিভাজক সহ একটি সংখ্যা টেক্সট হিসাবে প্রদান করে।</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>সংখ্যা</emph> ফরম্যাট করা হবে এমন সংখ্যা নির্দেশ করে থাকে।"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>দশমিক</emph> প্রদর্শন করা হবে এমন সংখ্যার দশমিক স্থান নির্দেশ করে থাকে।"
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>NoThousandsSeparators</emph> (ঐচ্ছিক), সহস্র বিভাজক ব্যবহৃত হবে কিনা তা নির্ধারণ করে। যদি প্যারামিটারটি ০ ব্যতীত অন্য কোনো সংখ্যা হয়, সহস্র বিভাজক বাদ দেয়া হয়। যদি প্যারামিটারটি ০ এর সমান হয় বা অনুপস্থিত থাকে, আপনার <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">বর্তমান লোক্যাল সেটিং</link> এর সহস্র বিভাজক প্রদর্শিত হয়।"
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> টেক্সট স্ট্রিং হিসেবে ১,২৩৪,৫৬৭.৮৯০ প্রদান করে।"
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> টেক্সট স্ট্রিং হিসেবে ১২৩৪৫৬৭.৮৯০ প্রদান করে।"
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index d448a239724..bff4ce5a08c 100644
--- a/source/bn/helpcontent2/source/text/shared/01.po
+++ b/source/bn/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/bn/helpcontent2/source/text/swriter/01.po b/source/bn/helpcontent2/source/text/swriter/01.po
index d32680f8c59..abdc6fb0872 100644
--- a/source/bn/helpcontent2/source/text/swriter/01.po
+++ b/source/bn/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">তালিকায় একটি আইটেম নির্বাচন করুন এবং আইটেমটি সরাতে একটি তীর বোতামে ক্লিক করুন। </ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "ইমেইল বার্তা"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "ইমেইল বার্তা"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 84db5ccf901..63e13f153a6 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "একটি বাক্যের প্রথম বর্ণ বড় হাতের করা ঠেকাতে"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
index f7a11b9af8e..b37213d4656 100644
--- a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29114,6 +29114,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "অবস্থান ও আকার... (~z)"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index c6dabdd31a2..2a3714e553d 100644
--- a/source/bn/sfx2/messages.po
+++ b/source/bn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2947,7 +2947,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 3df9e806bae..e9bb019dfb9 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10018,6 +10018,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "স্বনির্ধারিত"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20727,14 +20739,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/bn/vcl/messages.po b/source/bn/vcl/messages.po
index e72e0552ce8..c9996bae1bc 100644
--- a/source/bn/vcl/messages.po
+++ b/source/bn/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1168,8 +1168,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 569f8460531..991a157dac7 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bo/>\n"
@@ -3577,10 +3577,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9214,6 +9214,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9523,13 +9541,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14791,164 +14809,170 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "གསལ་བཤད་རྩོམ་ཡིག"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "འོད་རྟགས་ཉིད་རིས་རྟགས་དང་ཚལ་ཐོའི་བཀའ་ཚིག་གམ་གླེང་སྒྲོམ་གྱི་ཚོད་ཆས་ཐོག་འཇོག་པའི་སྐབས་སྟབས་བདེའི་རོགས་རམ་ཡི་གེ་མངོན། "
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "རོགས་རམ།"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "ཡིག་ཚགས་གཏག་པར་དེ་བཟོ་བཅོས་སུ་བརྩི་མིན་གཏན་འཁེལ་བྱེད། "
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ཡིག་ཚགས་མིང་། གནས་སྟངས།"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "ཚེས་གྲངས་ཁྱབ་ཁོངས་མཚན་འཇོག་གིས་ཁྱབ་ཁོངས་འདིའི་ནང་གི་གནས་གཉིས་གྲངས་ཉིད་མ་ལག་གིས་ལོ་དུས་སུ་ངོས་འཛིན་བྱེད། "
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "བསྡོམས་འབོར།"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "启动时载入%PRODUCTNAME"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "མ་ལག་གི་ལས་འགན་གདམ་ཚང་མགྱོགས་མྱུར་འགུལ་སློང་བྱེད་དུ་མི་འཇུག་པ།"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17706,33 +17730,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/bo/helpcontent2/source/auxiliary.po b/source/bo/helpcontent2/source/auxiliary.po
index a2a220c5c13..1ef44fd3ec7 100644
--- a/source/bo/helpcontent2/source/auxiliary.po
+++ b/source/bo/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared.po b/source/bo/helpcontent2/source/text/sbasic/shared.po
index 4babdb58a0a..9d2cd643a82 100644
--- a/source/bo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-08-09 08:32+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile རྟེན་གྲངས་</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "གཤམ་གྱི་ཡིག་ཆ་ཨང་སྒྲིག་གིས་ཡིག་ཆ་ཁ་ཕྱེས་པ་ཕྱིར་ལོག་བྱེད་རྟེན་གྲངས་འདི་གཡར་ཏེ་མིག་སྔར་ཁ་མ་ཕྱེས་བའི་ཡིག་ཆ་སྤྱོད་པའི་ཡིག་ཆའི་ཨང་སྒྲིག་བརྒྱུད་ཡིག་ཆ་གཅིག་ཁ་ཕྱེས།"
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "ཕྱིར་ལོག་ཐང་"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "ཧྲིལ་གྲངས་"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "རྟེན་གྲངས་འདི་རྗེས་ལ་ངེས་པར་དུ་ Open བརྗེད་པ་འབྲངས་ཡོད་གཤམ་གྱི་སྤྱོད་རུང་བའི་ཡིག་ཆའི་སྒྲིག་ཨང་ཕྱིར་ལོག་བྱེད་ཡིན་ནའང་སྒྲིག་ཨང་འདི་སོར་ཉར་མི་བྱེད།"
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM འགོ་འཛུགས་གནས་ས་"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM ཡི་གེ་སྐོང་གསབ་ཕྲེང་སྤྱོད་"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input རྗོད་པ་</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "ཡིག་ཆའི་སྟོན་མདའ་ཡིག་ཆའི་མཇུག་ཏུ་སླེབས་མིན་གཏན་འཁེལ་བྱེད་པ།"
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "ཕྱིར་ལོག་ཐང་"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "པུའུ་འར་"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF རྟེན་གྲངས་སྤྱད་ནས་ནང་འཇུག་བྱེད་དུས་ཡིག་ཆའི་མཇུག་མཐའ་ལས་བརྒལ་བའི་ནོར་འཁྲུལ་ལས་གཡོགཡོ་ཆོག། ཁྱེད་ཀྱིས་ Input ཡང་ན་ Get བརྗོད་པའི་ཡིག་ཆ་ཀློག་འདོན་བྱེད་དུས་ ཡིག་ཆའི་སྟོན་མདའ་ཀློག་འདོན་བྱས་པའི་ཡིག་ཚེགས་ཀྱི་གྲངས་གཞིར་བཟུང་ནས་མདུན་ལ་སྤོ་འགུལ་བྱེད་དོ། EOFཕྱིར་ལོག་ \"True\" (-1)"
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "ཁ་ཕྱེ་བའི་ཡིག་ཆའི་ཆེ་ཆུང་ཕྱིར་ལོག་བྱེད་ ཡིག་ཚིགས་ནི་འཇལ་བྱེད་ཡིན།"
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "ཕྱིར་ལོག་ཐང་"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "ཧྲིལ་གྲངས་རིང་པོ་"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "ཁ་མ་ཕྱེ་བའི་ཡིག་ཆའི་རིང་ཚད་ལེན་འདོད་ན་ <emph>FileLen</emph> རྟེན་གྲངས་བེད་སྤྱོད་བྱེད་དགོས།"
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM ངེས་པར་དུ་གཟུགས་འགྱུར་རིགས་ཡིན་དགོས་"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM འགོ་ཚུགས་གནས་ས་གཏན་འཁེལ་བྱེད་"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"འདི་ནི་ཡིག་ཕྲེང་དང་པོའི་ཡིག་དེབ་\" REM ལ་ཡི་གེ་སྤྱད་ནས་སྐོང་གསབ་བྱས་པ་རེད་"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"འདི་ནི་ཡིག་དེབ་གསར་པའི་ཕྲེང་རེད་\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "དཔྱད་གཟིགས་མཛོད་ <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "ཕྱིར་ལོག་ཐང་"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "ཧྲིལ་གྲངས་"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (གཉིས་གོང་འདྲིལ་མ་ཚུལ་གྱི་ཡིག་ཆ་ཁ་འབྱེད།)"
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "ཉར་སྡེར་སྟེང་ནས་ཡིག་ཆ་སུབ་པ།"
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File </emph>ཁ་གསལ་བའི་ཡིག་ཆའི་ཆ་ཚད་ཀྱི་ཡིག་རྟགས་ཕྲེང་བའི་མཚོན་ཚུལ་ལྡན་ཡོད། <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL མཚོན་ཐབས་\">URL མཚོན་ཐབས་</link>ཡང་སྤྱད་ཆོག་"
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM ངེས་པར་དུ་སྔོན་ལ་ཡིག་ཆ་གསར་བཟོ་བྱེད་"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "ནོར་འཁྲུལ་ཐོན་སྐབས་ནོར་འཁྲུལ་གྱི་ལས་སྣོན་དཔེ་རིམ་འགུལ་སློང་ངམ་བྱ་རིམ་སླར་གསོ་གལ་བསྟར་བྱེད།"
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD གྲངས་རིག་རྩིས་རྒྱག་རྟགས་</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "བགོས་ཐབས་རྩིས་རྒྱག་གི་ཧྲིལ་གྲངས་ལྷག་གྲངས་ཕྱིར་ལོག"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "བརྡ་འཕྲོད་"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "ཕྱིར་ལོག་ཐང་"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "ཧྲིལ་གྲངས་"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "ཁུགས་གྲངས་"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result </emph> MOD ལྡན་པའི་རྩིས་རྒྱག་འབྲས་བུའི་གྲངས་གང་རུང་གི་འགྱུར་ཚད།"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1 Expression2 </emph>བགོས་ཐབས་རྩིས་རྒྱག་ལག་བསྟར་བྱེད་པའི་གྲངས་གང་རུང་གི་མཚོན་ཚུལ།"
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "དཔེ་གཞི་"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM འབྲས་བུ་ནི་0"
+msgid "Integer"
+msgstr "ཧྲིལ་གྲངས་"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM འབྲས་བུ་ནི་4ཡིན་"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM འབྲས་བུ་ནི་ 0ཡིན་"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM འབྲས་བུ་ནི་2ཡིན་"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM འབྲས་བུ་ནི་5ཡིན་"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM འབྲས་བུ་ནི་0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "གཤིབ་སྡུར་རྩིས་རྒྱག་རྟགས་"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"གཤིབ་སྡུར་རྩིས་རྒྱག་རྟགས་\">གཤིབ་སྡུར་རྩིས་རྒྱག་རྟགས་</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "བེད་སྤྱོད་རུང་བའི་གཤིབ་སྡུར་རྩིས་རྒྱག་རྟགས།"
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared/03.po b/source/bo/helpcontent2/source/text/sbasic/shared/03.po
index 41d64303520..13c08fadd32 100644
--- a/source/bo/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bo/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index 8f31656684d..91873f03352 100644
--- a/source/bo/helpcontent2/source/text/scalc/01.po
+++ b/source/bo/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-08-09 08:33+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">མངོན་པའི་གྲངས་ཀར་སིལ་གྲངས་ཚེག་གི་གནས་གྲངས་བཀོད་སྒྲིག་དང་སྟོང་གནས་དབྱེ་འབྱེད་རྟགས་ཡོད་མེད་ཀྱང་བཀོད་སྒྲིག་བྱ་དགོས། བྱེད་ནུས་འདི་ཉིད་སྟར་པ་གཅིག་གི་གྲངས་ཀ་རྣམས་གཅིག་འགྱུར་གྱི་རྣམ་གཞག་སྤྱད་པར་སྤྱོད་དགོས། </ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>number</emph>ནི་རྣམ་གཞག་ཅན་དུ་འགྱུར་བའི་གྲངས་ཡིན།"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimals</emph> མངོན་དགོས་པའི་སིལ་གྲངས་གྲངས་གནས།"
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>no thousands separators</emph> (འདེམས་རུང་) སྟོང་གནས་དབྱེ་འབྱེད་རྟགས་སྤྱོད་དགོས་མིན་གྱི་གཏན་འཁེལ་ལ་སྤྱོད་པ། གལ་སྲིད་ཞུགས་གྲངས་འདི་ཉིད་0 དང་མཚུངས་པ་མིན་པའི་གྲངས་ཤིག་ཡིན་ན་སྟོང་གནས་དབྱེ་འབྱེད་རྟགས་མི་མངོན། གལ་སྲིད་ཞུགས་གྲངས་འདི་ཉིད་ 0 དང་མཚུངས་པའམ་གཏན་འཁེལ་མེད་ན་<link href=\"text/shared/optionen/01140000.xhp\" name=\"མིག་སྔའི་སྐད་བརྡའི་ཁོར་ཡུལ་བཀོད་སྒྲིག\">མིག་སྔའི་སྐད་བརྡའི་ཁོར་ཡུལ་བཀོད་སྒྲིག</link>གིས་གཏན་འཁེལ་བྱས་པའི་སྟོང་གནས་དབྱེ་འབྱེད་རྟགས་མངོན་པའོ།"
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "FIXED(1234567.89;3) 1,234,567.890ཕྱིར་ལོག FIXED(1234567.89;3;1) 1234567.890ཕྱིར་ལོག"
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "FIXED(1234567.89;3) 1,234,567.890ཕྱིར་ལོག FIXED(1234567.89;3;1) 1234567.890ཕྱིར་ལོག"
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index ed3ed4a7e06..f7be9894ae9 100644
--- a/source/bo/helpcontent2/source/text/shared/01.po
+++ b/source/bo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr ""
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/bo/helpcontent2/source/text/swriter/01.po b/source/bo/helpcontent2/source/text/swriter/01.po
index 75ab4f1d374..94945187cd1 100644
--- a/source/bo/helpcontent2/source/text/swriter/01.po
+++ b/source/bo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">རིའུ་འགོད་ནང་རྣམ་གྲངས་གཅིག་བདམས་རྗེས་བདའ་བརྩེའི་མཐེབ་གནོན་རྐྱང་རྡེབ་ཀྱི་རྣམ་གྲངས་དེ་སྤོ་སྒུལ་བྱ་</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "གློག་རྡུལ་སྦྲགས་ཡིག"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "གློག་རྡུལ་སྦྲགས་ཡིག"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index 74bc552508c..e8a14bff20d 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "བརྗོད་པའི་འགོའི་ཡིག་འབྲུ་ཡིག་ཆེན་རང་འགུལ་ངང་མཚམས་འཇོག་བྱེད་"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
index aff1a30d7b5..0d68bb0f84b 100644
--- a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29099,6 +29099,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "གནས་ས་དང་ཆེ་ཆུང་།(~Z)..."
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index 43c4b9f4c1d..217f2418706 100644
--- a/source/bo/sfx2/messages.po
+++ b/source/bo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2944,7 +2944,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index 90e918633df..eaef73b9ea1 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10027,6 +10027,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "རང་བཟོས།"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20736,14 +20748,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/bo/vcl/messages.po b/source/bo/vcl/messages.po
index 0410f248e8a..87ee4cb88c9 100644
--- a/source/bo/vcl/messages.po
+++ b/source/bo/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1172,8 +1172,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index a6fe6e9c077..8b0ca04c3bf 100644
--- a/source/br/cui/messages.po
+++ b/source/br/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3553,10 +3553,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8992,6 +8992,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9293,13 +9311,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14393,157 +14411,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Arventennoù nodrezhoù evit an tarzhioù mod HTML, Basic ha SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Stlennglogorennoù"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Skoazell"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Arverañ _boestadoù emziviz %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boestadoù emziviz Digeriñ/Enrollañ"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Arverañ boesta_doù emziviz %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Boestadoù emziviz Moullañ"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Stad \"Teul daskemmet\" evit an arventennoù _moullañ"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stad an teul"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Jubenniñ da vloazioù etre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bloaz (2 sifr)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Dastum roadennoù a-fet arver ha kas-i da The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Roit skoazell da wellaat %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Kargañ %PRODUCTNAME e-pad m'emañ ar reizhiad o loc'hañ"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gweredekaat al loc'hañ herrek er maez rebuziñ"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Loc'hañ herrek %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17247,33 +17271,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Arventennoù ar pajennaozañ"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
index 90b4ee64f75..e644baf6885 100644
--- a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28895,6 +28895,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Lec'hiadur ha ment"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index 195bfade90e..b5ca885bc9d 100644
--- a/source/br/sfx2/messages.po
+++ b/source/br/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2936,7 +2936,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index 2d6c168dea8..1d8a3c2d7c0 100644
--- a/source/br/sw/messages.po
+++ b/source/br/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9863,6 +9863,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personelaat"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20146,14 +20158,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Diuzañ an teul diazez evit al lizhiri dre doueziañ"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/br/vcl/messages.po b/source/br/vcl/messages.po
index d41ff2f4bb1..2d60b652b81 100644
--- a/source/br/vcl/messages.po
+++ b/source/br/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1160,8 +1160,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 5beb22363b8..6ea00b8dba7 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3571,10 +3571,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9182,6 +9182,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9491,13 +9509,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14747,163 +14765,169 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "बारायनाय इंगित"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद हो"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME बिबुंफोर"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME बिबुंफोर"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "फोरमान बिलाय मुं \\ मुवानि थाखो मान "
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आरो"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टेम जागायनाय समाव %PRODUCTNAME ल'ड खालामनाय"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17656,33 +17680,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
index ce24225425e..07338535cdc 100644
--- a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29115,6 +29115,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "जायगा आरो ~बिबां..."
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/brx/sfx2/messages.po b/source/brx/sfx2/messages.po
index 0ea29e504ec..b633b509ce6 100644
--- a/source/brx/sfx2/messages.po
+++ b/source/brx/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2915,7 +2915,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index 01ee9aeef13..414fd517c0d 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10018,6 +10018,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "कास्टम:"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20697,14 +20709,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/brx/vcl/messages.po b/source/brx/vcl/messages.po
index 6f545238ab6..e0161d0bff5 100644
--- a/source/brx/vcl/messages.po
+++ b/source/brx/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1174,8 +1174,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index 48a3c8f98a1..c29617b4557 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3562,10 +3562,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9170,6 +9170,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Definira scenarij za odabrano podrucje tabele."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9481,13 +9499,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14744,161 +14762,167 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Postavke fonta za HTML, Basic i SQL izvore"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Prošireni savjeti"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoć"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Koristi %PRODUCTNAME dijaloge"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dijalozi za otvaranje/snimanje"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Koristi %PRODUCTNAME _dijaloge"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dijalozi za štampanje"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Š_tampanje postavlja status \"dokument izmijenjen\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status dokumenta"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Tumači kao godine između "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Godina (dvocifrena)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Učitaj %PRODUCTNAME prilikom pokretanja sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Omogući traku Quickstarter-a"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17661,34 +17685,40 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Postavke rasporeda"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/bs/helpcontent2/source/auxiliary.po b/source/bs/helpcontent2/source/auxiliary.po
index d8b8ac15e64..21aa882b3a5 100644
--- a/source/bs/helpcontent2/source/auxiliary.po
+++ b/source/bs/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/bs/helpcontent2/source/text/sbasic/shared.po b/source/bs/helpcontent2/source/text/sbasic/shared.po
index e6b62ba2f3f..a7638d9ccb0 100644
--- a/source/bs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile funkcija</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr ""
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vrati vrijednost:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Cjelobrojno"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr ""
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Isštampati #iBroj, \"Prvi red teksta\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Isštampati #iBroj, \"Drugi red teksta\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Isštampati #iBroj, \"Drugi red teksta\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,13 +10186,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. PwUYq
@@ -10366,49 +10339,112 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Traziti #iBroj,1 REM pozicija na pocetku"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Staviti #iBroj,, \"Ovo je prvi red teksta\" REM ispuniti sa tekstom"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
msgstr ""
#. FrzSY
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input naredba</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr ""
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr ""
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vrati vrijednost:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr ""
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Isštampati #iBroj, \"Prvi red teksta\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Isštampati #iBroj, \"Drugi red teksta\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Vraca vrijednost otvorene datoteke u bajtovima."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FajlBroj)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vrati vrijednost:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr ""
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Za dobivanje duzine datoteke koja nije otvorena, koristiti <emph>FileLen</emph> Funkcija."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Oznaciti sText kao varijantu REM mora biti varijanta"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Traziti #iBroj,1 REM pozicija na pocetku"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Staviti #iBroj,, \"Ovo je prvi red teksta\" REM ispuniti sa tekstom"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Staviti #iBroj,,\"Ovo je novi red teksta\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Vidi jos: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"open\">open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FajlAttr (FajlBroj Kao Integer, Atribut Kao Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vrati vrijednost:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Cjelobrojno"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARNO (fajl otvoren za binarni oblik)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Isštampati #iBroj, \"Prvi red teksta\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iBroj, 1 ),0,\"Pristupni oblik\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iBroj, 2 ),0,\"Fajl atribut\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Deletes a file from a disc."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "DIM sFile Kao String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File</emph>: Bilo koji znakovni izraz koji sadrzi znakovne specifikacije. Mozete koristiti i <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM mora biti unaprijed kreiran"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr ""
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,13 +17647,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Isštampati #iBroj, \"Prvi red teksta\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. YAR7R
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operator (matematički)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Vraca cijeli broj ostataka dijeljenja"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksa:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultat = Izrar_1 MOD Izraz_2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Vrati vrijednost:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Cjelobrojno"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultat:</emph>: Brojcana varijabla koja sadrzi rezultat MOD operacije."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Izraz_1, Izraz_2</emph>: Brojcani izraz koji zelite da podijelite."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Primjer:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultat = Izrar_1 MOD Izraz_2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "ispis 10 mod 2.5 REM vraca 0"
+msgid "Integer"
+msgstr "Cjelobrojno"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "ispis 10 / 2.5 REM vraca 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "ispis 10 mod 5 REM vraca 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "ispis 10 / 5 REM vraca 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "ispis 5 mod 10 REM vraca 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "ispis 5 / 10 REM vraca 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operatori uporedivanja"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Operatori uporedivanja\">operatori uporedivanja</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Dostupni operatori uporedivanja su opisani ovdje."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/sbasic/shared/03.po b/source/bs/helpcontent2/source/text/sbasic/shared/03.po
index 0f9a3522c9f..b9b9270db1f 100644
--- a/source/bs/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bs/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index aa7b03daac7..27d59f311e0 100644
--- a/source/bs/helpcontent2/source/text/scalc/01.po
+++ b/source/bs/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bosnian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bs/>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Broj</emph> je broj koji ce biti konvertovan"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index 760bc705d54..9be008ee52b 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Dodijeli Makro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/bs/helpcontent2/source/text/swriter/01.po b/source/bs/helpcontent2/source/text/swriter/01.po
index 044bd6404c9..93ea1107fe5 100644
--- a/source/bs/helpcontent2/source/text/swriter/01.po
+++ b/source/bs/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,22 +28591,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr ""
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
+msgid "Email Message"
msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
+msgid "Email Message"
msgstr ""
#. PTucc
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index ccec3b84dfc..5518bc0ed2e 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr ""
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
index dafb2159ecd..c0a5c6b03d0 100644
--- a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29072,6 +29072,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Položaj i veličina"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/bs/sfx2/messages.po b/source/bs/sfx2/messages.po
index a021e78e7f4..415bf632733 100644
--- a/source/bs/sfx2/messages.po
+++ b/source/bs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2945,7 +2945,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index fcf5aef608c..cddfe733164 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10015,6 +10015,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Prilagođeno"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20482,15 +20494,21 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Odaberite početni dokument za spajanje pošte"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/bs/vcl/messages.po b/source/bs/vcl/messages.po
index 9bd8a321bff..3fb3803a367 100644
--- a/source/bs/vcl/messages.po
+++ b/source/bs/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1159,8 +1159,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index 47f84d85813..133853b131b 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca_VALENCIA/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Permet assignar macros a esdeveniments del programa. La macro assignada s'executarà automàticament cada vegada que es produïsca l'esdeveniment seleccionat."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Característiques de la lletra"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Previsualització"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Seleccioneu i apliqueu característiques tipogràfiques de tipus de lletra als caràcters."
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Configuració del tipus de lletra per a codi font en HTML, Basic i SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Cons_ells ampliats"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Mostra un text d'ajuda quan deixeu el cursor damunt d'una icona, una orde de menú o un control en un diàleg."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Mostra el missatge emergent «No teniu instal·lada l'ajuda fora de línia»"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Mostra el «Consell del dia» en iniciar"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilitza els diàlegs del %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diàlegs d'obri/guarda"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilitza els _diàlegs del %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diàlegs d'impressió"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "En im_primir s'estableix l'estat de \"document modificat\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Especifica si la impressió del document compta com a modificació."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estat del document"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreta com a anys entre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Defineix un interval de data, dintre del qual el sistema reconeix un any de dos dígits."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Any (dues xifres)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recull dades d'ús i els envia a The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Envia dades d'ús per a ajudar The Document Foundation a millorar la usabilitat del programa."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "_Envia els informes de fallades a The Document Foundation."
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajuda a millorar el %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carrega el %PRODUCTNAME en iniciar el sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Habilita l'inici ràpid a la safata del sistema"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inici ràpid del %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Aplicacions predeterminades de Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Associacions de fitxers del %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Especifica els paràmetres generals per al %PRODUCTNAME."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Paràmetres de format"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ca-valencia/helpcontent2/source/auxiliary.po b/source/ca-valencia/helpcontent2/source/auxiliary.po
index f31c1f83069..8d549121089 100644
--- a/source/ca-valencia/helpcontent2/source/auxiliary.po
+++ b/source/ca-valencia/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-05-24 12:32+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/ca_VALENCIA/>\n"
@@ -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: 1532004417.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referència d'ordres"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funcions, expressions i operadors"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Llista alfabètica de funcions, d'expressions i d'operadors"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
index 1f75fdd8f8f..c3c079be39b 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-29 00:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ca_VALENCIA/>\n"
@@ -9926,14 +9926,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>Funció FreeFile</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">Funció FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9944,24 +9944,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Torna el nombre de fitxer següent disponible per obrir un fitxer. Utilitzeu esta funció per obrir un fitxer mitjançant un nombre de fitxer que no estiga en ús per part d'un fitxer obert."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9971,15 +9953,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enter"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9989,33 +9962,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Esta funció només es pot utilitzar immediatament al davant d'una expressió Open. FreeFile torna el nombre de fila disponible següent, però no el reserva."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Primera línia de text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Una altra línia de text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10160,6 +10106,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Això és una altra línia de text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10214,14 +10187,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Això és una línia de text nova\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Es tancaran tots els fitxers\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10367,50 +10340,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Posició al principi"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Esta és la primera línia de text\" ' Ompliu la línia amb text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Esta és la segona línia de text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Esta és la tercera línia de text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Això és un text nou\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Este és el text del registre 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10430,14 +10466,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>expressió Input</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Expressió Input#\">Expressió Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10880,15 +10916,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determina si la busca del fitxer ha arribat al final d'un fitxer."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10898,15 +10925,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10916,15 +10934,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10943,33 +10952,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Utilitzeu EOF per evitar errors quan intenteu obtindre entrada passat el final d'un fitxer. Quan utilitzeu les expressions Input o Get per llegir des d'un fitxer, la busca del fitxer és avançada pel nombre de bytes llegits. Quan s'arriba al final del fitxer, EOF torna el valor \"Cert\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Primera línia de text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Una altra línia de text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11114,15 +11096,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Torna la mida d'un fitxer obert en bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11132,15 +11105,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11150,15 +11114,6 @@ msgctxt ""
msgid "Long"
msgstr "Llarg"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11177,78 +11132,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Per obtindre la longitud d'un fitxer que no és obert, utilitzeu la funció <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM ha de ser una Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Posició al principi"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Esta és la primera línia de text\" REM Ompliu amb text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Esta és la segona línia de text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Esta és la tercera línia de text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Això és una línia de text nova\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Este és el text del registre 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11933,15 +11816,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Obri\">Obri</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11951,15 +11825,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11969,15 +11834,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enter"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12068,15 +11924,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (fitxer obert en mode binari)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12086,23 +11933,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Això és una línia de text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Mode d'accés\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Atribut de fitxer\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12662,15 +12509,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Suprimeix un fitxer d'un disc."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12680,15 +12518,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12698,23 +12527,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Fitxer:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' El fitxer s'ha de crear amb antelació"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17756,15 +17576,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Habilita una rutina de gestió d'errors després que es produïsca un error, o continua l'execució del programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17783,15 +17594,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17837,15 +17639,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "L'expressió On Error GoTo s'utilitza per reaccionar als errors que es produeixen en una macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17855,14 +17648,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Això és una línia de text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Es tancaran tots els fitxers\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19295,149 +19088,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Operador MOD (matemàtic)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operador Mod\">Operador Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Torna la part entera d'una divisió."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultat = Expressió1 MOD Expressió2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Enter"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultat:</emph> Qualsevol variable numèrica que conté el resultat de l'operació MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expressió1, Expressió2:</emph> Qualssevol expressions numèriques que vulgueu dividir."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultat = Expressió1 MOD Expressió2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' torna 0"
+msgid "Integer"
+msgstr "Enter"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' torna 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' torna 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' torna 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' retorna 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' retorna 0,5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30284,33 +30086,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadors de comparació"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Operadors de comparació\">Operadors de comparació</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Els operadors de comparació disponibles es descriuen ací."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
index cc6f89d33af..fd56600f31f 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca-valencia/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ca_VALENCIA/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/01.po b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
index 7ddbdb4379b..ea05984196c 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/01.po
+++ b/source/ca-valencia/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ca_VALENCIA/>\n"
@@ -21050,50 +21050,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIX"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Retorna un nombre com a text amb un nombre de decimals determinat i amb separadors de milers opcionals.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Nombre</emph> fa referència al nombre que s'ha de formatar."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimals</emph> fa referència al nombre de decimals que s'han de mostrar."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>SenseSeparadorsDeMilers</emph> (opcional) determina si s'ha d'utilitzar el separador de milers. Si el paràmetre és un nombre diferent de 0, se suprimeix el separador de milers. Si el paràmetre és igual a 0 o no s'indica, es mostren els separadors de milers de la vostra <link href=\"text/shared/optionen/01140000.xhp\" name=\"configuració regional actual\">configuració regional actual</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21104,14 +21104,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIX(1234567,89;3)</item> retorna 1.234.567,890 com a cadena de text."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIX(1234567,89;3;1)</item> retorna 1234567,890 com a cadena de text."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index 561d3281adb..6cf7937dabe 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ca_VALENCIA/>\n"
@@ -25298,13 +25298,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41813,13 +41813,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assigna la macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/01.po b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
index 9578cb42a64..15964a2e47e 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-12 10:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ca_VALENCIA/>\n"
@@ -28592,23 +28592,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu un element de la llista i feu clic al botó de cursor per moure'l.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Missatge de correu electrònic"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Missatge de correu electrònic"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28925,13 +28925,13 @@ msgctxt ""
msgid "Properties"
msgstr "Propietats"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index 9091cf19b81..e6a464a9b2b 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-29 00:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ca_VALENCIA/>\n"
@@ -620,13 +620,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Per aturar la conversió a majúscula de la primera lletra d'una frase"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
index 4dca29d9fc3..fb1cc6ecd44 100644
--- a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ca_VALENCIA/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posició i mida"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ca-valencia/sfx2/messages.po b/source/ca-valencia/sfx2/messages.po
index 5f791ec65ec..ba467ae0ef8 100644
--- a/source/ca-valencia/sfx2/messages.po
+++ b/source/ca-valencia/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca_VALENCIA/>\n"
@@ -2926,7 +2926,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Permet assignar camps d'informació personalitzats al document."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index 41e2f47c7ae..bef81a287e2 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ca_VALENCIA/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalitzat"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Obri un diàleg per a seleccionar una plantilla."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleccioneu un document inicial per a la combinació de correu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Indiqueu el document que voleu utilitzar com a base per al document de combinació de correu."
diff --git a/source/ca-valencia/vcl/messages.po b/source/ca-valencia/vcl/messages.po
index 3b40c9a502f..7590e4535af 100644
--- a/source/ca-valencia/vcl/messages.po
+++ b/source/ca-valencia/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ca_VALENCIA/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Separador"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 33105058c9f..6cbf35b53fc 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-29 14:08+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca/>\n"
@@ -3548,11 +3548,11 @@ 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 "La interfície de barra agrupada proporciona accés a les funcions en grups, amb icones per a les funcionalitats més usades i menús desplegables per a la resa. Aquesta variant completa afavoreix les funcions i és lleugerament major que les altres."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "La interfície de barra agrupada comptacta proporciona accés a funcions en grups, amb icoines per a les funcionalitats més usades i menús desplegables per a la resta. Aquesta variant compacta dona preferència a l'espai vertical."
+msgid "The Groupedbar 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
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Permet assignar macros a esdeveniments del programa. La macro assignada s'executarà automàticament cada vegada que es produeixi l'esdeveniment seleccionat."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Característiques de la lletra"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Previsualització"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Seleccioneu i apliqueu característiques tipogràfiques de tipus de lletra als caràcters."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Configuració de la lletra tipogràfica per a codi font en HTML, Basic i SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Cons_ells ampliats"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Mostra un text d'ajuda quan deixeu el cursor damunt d'una icona, una ordre de menú o un control en un diàleg."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Mostra el missatge emergent «No teniu instal·lada l'ajuda fora de línia»"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Mostra el diàleg «Suggeriment del dia» en iniciar"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilitza els diàlegs del %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diàlegs d'obertura/desament"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilitza els _diàlegs del %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diàlegs d'impressió"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "En im_primir s'estableix l'estat de «document modificat»"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Especifica si la impressió del document compta com a modificació."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estat del document"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreta com a anys entre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Defineix un interval de data, dintre del qual el sistema reconeix un any de dos dígits."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Any (dues xifres)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recull dades d'ús i els envia a The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Envia dades d'ús per a ajudar The Document Foundation a millorar la usabilitat del programa."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "_Envia els informes de fallades a The Document Foundation."
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajudar a millorar el %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carrega el %PRODUCTNAME en iniciar el sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Habilita l'inici ràpid a la safata del sistema"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inici ràpid del %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Aplicacions predeterminades de Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Associacions de fitxers del %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Especifica els paràmetres generals per al %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "A dalt"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Paràmetres de la disposició"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ca/helpcontent2/source/auxiliary.po b/source/ca/helpcontent2/source/auxiliary.po
index 2c3f73a1520..f497612ad02 100644
--- a/source/ca/helpcontent2/source/auxiliary.po
+++ b/source/ca/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-08 12:12+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559826240.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referència d'ordres"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funcions, expressions i operadors"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Llista alfabètica de funcions, d'expressions i d'operadors"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index 5f4cb55e1df..9ae7a226d75 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/ca/>\n"
@@ -9983,14 +9983,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>Funció FreeFile</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">Funció FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -10001,24 +10001,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Torna el nombre de fitxer següent disponible per obrir un fitxer. Utilitzeu aquesta funció per obrir un fitxer mitjançant un nombre de fitxer que no estigui en ús per part d'un fitxer obert."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -10028,15 +10010,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enter"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -10046,33 +10019,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Aquesta funció només es pot utilitzar immediatament al davant d'una expressió Open. FreeFile torna el nombre de fila disponible següent, però no el reserva."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Primera línia de text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Una altra línia de text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10222,6 +10168,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Això és una altra línia de text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10276,14 +10249,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Això és una línia de text nova\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Es tancaran tots els fitxers\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10436,50 +10409,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Posició al principi"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Aquesta és la primera línia de text\" ' Ompliu la línia amb text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Aquesta és la segona línia de text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Aquesta és la tercera línia de text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Això és un text nou\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Aquest és el text del registre 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10499,14 +10535,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>expressió Input</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Expressió Input#\">Expressió Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10963,15 +10999,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determina si la busca del fitxer ha arribat al final d'un fitxer."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10981,15 +11008,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10999,15 +11017,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -11026,33 +11035,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Utilitzeu EOF per evitar errors quan intenteu obtenir entrada passat el final d'un fitxer. Quan utilitzeu les expressions Input o Get per llegir des d'un fitxer, la busca del fitxer és avançada pel nombre de bytes llegits. Quan s'arriba al final del fitxer, EOF torna el valor \"Cert\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Primera línia de text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Una altra línia de text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11197,15 +11179,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Torna la mida d'un fitxer obert en bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11215,15 +11188,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11233,15 +11197,6 @@ msgctxt ""
msgid "Long"
msgstr "Llarg"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11260,78 +11215,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Per a obtenir la longitud d'un fitxer que no és obert, utilitzeu la funció <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM ha de ser una Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Posició al principi"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Aquesta és la primera línia de text\" REM Ompliu amb text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Aquesta és la segona línia de text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Aquesta és la tercera línia de text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Això és una línia de text nova\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Aquest és el text del registre 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -12019,15 +11902,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Vegeu també: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Obre\">Obre</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -12037,15 +11911,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -12055,15 +11920,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enter"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12154,15 +12010,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (fitxer obert en mode binari)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12172,23 +12019,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Això és una línia de text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Mode d'accés\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Atribut de fitxer\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12748,15 +12595,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Suprimeix un fitxer d'un disc."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12766,15 +12604,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12784,23 +12613,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Fitxer:</emph> Qualsevol expressió de cadena que conté una especificació de fitxer no ambigua. També podeu utilitzar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Notació URL\">notació URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' El fitxer s'ha de crear amb antelació"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17863,15 +17683,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Habilita una rutina de gestió d'errors després que es produeixi un error, o continua l'execució del programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17891,15 +17702,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "A [Local] Error {GoTo Labelname | GoTo 0 | Reprendre Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17945,15 +17747,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "L'expressió On Error GoTo s'utilitza per reaccionar als errors que es produeixen en una macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17963,14 +17756,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Això és una línia de text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Es tancaran tots els fitxers\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19403,149 +19196,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Operador MOD (matemàtic)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operador Mod\">Operador Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Torna la part entera d'una divisió."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxi:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultat = Expressió1 MOD Expressió2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valor de retorn:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Enter"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paràmetres:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultat:</emph> Qualsevol variable numèrica que conté el resultat de l'operació MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expressió1, Expressió2:</emph> Qualssevol expressions numèriques que vulgueu dividir."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultat = Expressió1 MOD Expressió2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' torna 0"
+msgid "Integer"
+msgstr "Enter"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' torna 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' torna 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' torna 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' retorna 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' retorna 0,5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30596,33 +30398,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> i <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link>"
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadors de comparació"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Operadors de comparació\">Operadors de comparació</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Els operadors de comparació disponibles es descriuen aquí."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/03.po b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
index 62fc503e721..42a27fae306 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-24 12:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ca/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 238f8911f69..4410c98a981 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
-"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1560441763.000000\n"
@@ -4002,7 +4002,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\"><emph>date entries</emph></link>, make sure you use the correct format. Click <emph>OK</emph> to insert the result into the spreadsheet."
-msgstr "Quan feu doble clic en una funció, el camp d'entrada d'arguments apareixerà al costat dret del diàleg. Per seleccionar com argument la referència a una cel·la, feu clic directament a la cel·la, o arrossegueu l'interval requerit mentre manteniu premut el botó del ratolí a través del full. També podeu introduir valors numèrics i altres valors o referències directament als camps corresponents del diàleg. Quan utilitzeu <link href=\"text/scalc/01/04060102.xhp\" name=\"entrades data\"></emph></link> assegureu-vos d'utilitzar el format correcte. Feu clic a <emph>D'acord</emph> per inserir el resultat al full de càlcul."
+msgstr "Quan feu doble clic en una funció, el camp d'entrada d'arguments apareixerà al costat dret del diàleg. Per seleccionar com argument la referència a una cel·la, feu clic directament a la cel·la, o arrossegueu l'interval requerit mentre manteniu premut el botó del ratolí a través del full. També podeu introduir valors numèrics i altres valors o referències directament als camps corresponents del diàleg. Quan utilitzeu <link href=\"text/scalc/01/04060102.xhp\" name=\"entrades data\"><emph>entrades data</emph></link> assegureu-vos d'utilitzar el format correcte. Feu clic a <emph>D'acord</emph> per inserir el resultat al full de càlcul."
#. QwFQQ
#: 04060000.xhp
@@ -4587,7 +4587,7 @@ msgctxt ""
"par_id661615889458032\n"
"help.text"
msgid "Specify the <emph>DatabaseField</emph> argument in any of the following ways:"
-msgstr "Especifica l'argument <emph>DatabaseField</emph> en qualsevol de les següents formes:"
+msgstr "Especifica l'argument <emph>DatabaseField</emph> en qualsevol de les següents maneres:"
#. RMwzE
#: 04060101.xhp
@@ -4605,7 +4605,7 @@ msgctxt ""
"par_id551615889661457\n"
"help.text"
msgid "By entering a number to specify the column within the <emph>Database</emph> area, starting with 1. For example, if a <emph>Database</emph> occupied the cell range D6:H123, then enter 3 to indicate the header cell at F6. Calc expects an integer value that lies between 1 and the number of columns defined within <emph>Database</emph> and ignores any digits after a decimal point. If the value is less than 1, Calc reports Err:504 (error in parameter list). If the value is greater than the number of columns in <emph>Database</emph>, Calc reports a #VALUE! error."
-msgstr ""
+msgstr "Introduint un número per especificar la columna dins de l'àrea d'una <emph>Base de dades</emph>, començant amb 1. Per exemple, si una <emph>Base de dades</emph> ocupa el rang de cel·les D6:H123, aleshores poseu 3 per indicar la cel·la de capçalera F6. Calc espera un valor enter entre 1 i el nombre de columnes definit dins de la <emph>Base de dades</emph> i ignora els dígits després del punt decimal. Si el valor és menor que 1, Calc informa amb l'error Err:504 (error a la llista de paràmetres). Si el valor és superior al nombre de columnesa la <emph>Base de dades</emph>, Calc informa amb l'error #VALU.."
#. qSkvo
#: 04060101.xhp
@@ -4686,7 +4686,7 @@ msgctxt ""
"par_id691615892329680\n"
"help.text"
msgid "The number of columns occupied by the <emph>SearchCriteria</emph> area need not be the same as the width of the <emph>Database</emph> area. All headings that appear in the first row of <emph>SearchCriteria</emph> must be identical to headings in the first row of <emph>Database</emph>. However, not all headings in <emph>Database</emph> need appear in the first row of <emph>SearchCriteria</emph>, while a heading in <emph>Database</emph> can appear multiple times in the first row of <emph>SearchCriteria</emph>."
-msgstr ""
+msgstr "El nombre de columnes ocupades per l'àrea <emph>SearchCriteria</emph> no ha de ser el mateix que l'amplada de l'àrea de la <emph>Base de dades</emph>. Tots els encapçalaments que apareixen a la primera fila de <emph>SearchCriteria</emph> han de ser idèntics als encapçalaments de la primera fila de la <emph>Base de dades</emph>. Tot i això, no tots els encapçalaments de la <emph>Base de dades</emph> necessiten aparèixer a la primera fila de la <emph> SearchCriteria </emph>, mentre que un encapçalament de <emph> Base de dades </emph> pot aparèixer diverses vegades a la primera fila del <emph>SearchCriteria</emph>."
#. AeGHn
#: 04060101.xhp
@@ -4695,7 +4695,7 @@ msgctxt ""
"par_id541615892358897\n"
"help.text"
msgid "Search criteria are entered into the cells of the second and subsequent rows of the <emph>SearchCriteria</emph> area, below the row containing headings. Blank cells within the <emph>SearchCriteria</emph> area are ignored."
-msgstr ""
+msgstr "Els criteris de cerca s'introdueixen a les cel·les de la segona i posteriors files de l'àrea <emph>SearchCriteria</emph>, a sota de la fila que conté els encapçalaments. Les cel·les en blanc de l'àrea <emph>SearchCriteria</emph> s'ignoren."
#. MddCQ
#: 04060101.xhp
@@ -21167,51 +21167,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIX"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Retorna un nombre com a text amb un nombre de decimals determinat i amb separadors de milers opcionals.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXED(Nombre; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Nombre</emph> fa referència al nombre que s'ha de formatar."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimals</emph> fa referència al nombre de decimals que s'han de mostrar."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>SenseSeparadorsDeMilers</emph> (opcional) determina si s'ha d'utilitzar el separador de milers. Si el paràmetre és un nombre diferent de 0, se suprimeix el separador de milers. Si el paràmetre és igual a 0 o no s'indica, es mostren els separadors de milers de la vostra <link href=\"text/shared/optionen/01140000.xhp\" name=\"configuració regional actual\">configuració regional actual</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21222,14 +21221,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIX(1234567,89;3)</item> retorna 1.234.567,890 com a cadena de text."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIX(1234567,89;3;1)</item> retorna 1234567,890 com a cadena de text."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index a654768a575..a0f27c21b2d 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ca/>\n"
"Language: ca\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561601622.000000\n"
@@ -9343,7 +9343,7 @@ msgctxt ""
"par_id3154903\n"
"help.text"
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Changes</emph>.</variable>"
-msgstr "<variable id=\"exopaen\">Obre un document de full de càlcul trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph> %PRODUCTNAME - Preferències</caseinline><defaultinline><emph> Eines - Opcions</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Canvis </emph></variable>"
+msgstr "<variable id=\"exopaen\">Obre un document de full de càlcul trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph> %PRODUCTNAME - Preferències</emph></caseinline><defaultinline><emph> Eines - Opcions</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Canvis </emph></variable>"
#. dYa3d
#: 00000406.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 6000a9cce02..5bfe0838534 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-24 12:37+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ca/>\n"
@@ -25852,13 +25852,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -42677,15 +42677,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assigna la macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
-#, fuzzy
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Obre el <link href=\"text/shared/01/06130000.xhp\">Selector de macros</link> a assignar una macro a l'esdeveniment seleccionat.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index 1f2f3bef570..a17d0ce6858 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-13 13:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ca/>\n"
@@ -28876,23 +28876,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccioneu un element de la llista i feu clic al botó de cursor per moure'l.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Missatge de correu electrònic"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Missatge de correu electrònic"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -29222,15 +29222,14 @@ msgctxt ""
msgid "Properties"
msgstr "Propietats"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
-#, fuzzy
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<unk>GA Obre el diàleg XYGG <link href=\"text/swriter/01/mmemabod.xhp\">Missatge de correu</link> on podeu introduir el missatge de correu electrònic per als fitxers de combinació de correu que s'envien com a adjunts.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index 160328fec84..9147588d80f 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-25 09:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ca/>\n"
@@ -622,13 +622,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Per aturar la conversió a majúscula de la primera lletra d'una frase"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index 4b77c34b9e1..6304dce19d1 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-29 14:08+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ca/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posició i mida"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ca/sfx2/messages.po b/source/ca/sfx2/messages.po
index 921710487d4..88d2276074f 100644
--- a/source/ca/sfx2/messages.po
+++ b/source/ca/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-29 14:08+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca/>\n"
@@ -2928,7 +2928,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Permet assignar camps d'informació personalitzats al document."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tanca el panell de barra lateral"
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index a5d398ac766..e6b6b9c3cb6 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-21 05:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ca/>\n"
"Language: ca\n"
@@ -1538,7 +1538,7 @@ msgstr "Cadena d'etiquetes de llista"
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "Referència a metadades"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
@@ -1574,7 +1574,7 @@ msgstr "Valor inicial de numeració"
#: sw/inc/inspectorproperties.hrc:182
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Style Name"
-msgstr ""
+msgstr "Nom de l'estil de llista"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:183
@@ -2285,7 +2285,7 @@ msgstr ""
#: sw/inc/strings.hrc:28
msgctxt "STR_STANDARD_TOOLTIP"
msgid "Values on this tab specified in “Contains” in Organizer are removed."
-msgstr ""
+msgstr "S'han suprimit els valors indicats a «Conté» en l'organitzador d'aquesta pestanya."
#. 9BAeq
#: sw/inc/strings.hrc:29
@@ -3360,7 +3360,7 @@ msgstr "Horitzontal"
#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
-msgstr ""
+msgstr "Cap llista"
#. mGZHb
#: sw/inc/strings.hrc:215
@@ -5918,13 +5918,13 @@ msgstr "Activa o desactiva"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Desplega-ho tot"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Plega-ho tot"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -5972,19 +5972,19 @@ msgstr "Finestra activa"
#: sw/inc/strings.hrc:674
msgctxt "STR_HIDDEN"
msgid "hidden"
-msgstr "ocult"
+msgstr "amagada"
#. 3VWjq
#: sw/inc/strings.hrc:675
msgctxt "STR_ACTIVE"
msgid "active"
-msgstr "actiu"
+msgstr "activa"
#. YjPvg
#: sw/inc/strings.hrc:676
msgctxt "STR_INACTIVE"
msgid "inactive"
-msgstr "inactiu"
+msgstr "inactiva"
#. tBPKU
#: sw/inc/strings.hrc:677
@@ -6472,7 +6472,7 @@ msgstr "Definit per l'usuari5"
#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_LOCAL_FILE"
msgid "Local file"
-msgstr ""
+msgstr "Fitxer local"
#. nsCwi
#: sw/inc/strings.hrc:764
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalitzat"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -9878,7 +9890,7 @@ msgstr "Defineix l'estil «Cos del text»"
#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
-msgstr "Estableix l'estil «Sagnat del cos de text»"
+msgstr "Defineix l'estil «Sagnat del cos de text»"
#. UUEwQ
#: sw/inc/utlui.hrc:43
@@ -9914,7 +9926,7 @@ msgstr "Afegeix un espai no separable"
#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
-msgstr ""
+msgstr "Translitera text en hongarès de dreta a esquerra a escriptura en hongarès antic."
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Obre un diàleg per a seleccionar una plantilla."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleccioneu un document inicial per a la combinació de correu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Indiqueu el document que voleu utilitzar com a base per al document de combinació de correu."
@@ -21967,13 +21985,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/numparapage.ui:145
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "Assigned List Style"
-msgstr ""
+msgstr "Estil de llista assignat"
#. qgNLu
#: sw/uiconfig/swriter/ui/numparapage.ui:147
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "No List"
-msgstr ""
+msgstr "Cap llista"
#. hRgAM
#: sw/uiconfig/swriter/ui/numparapage.ui:151
@@ -22033,7 +22051,7 @@ msgstr "Introduïu el número que voleu assignar al paràgraf."
#: sw/uiconfig/swriter/ui/numparapage.ui:290
msgctxt "numparapage|label2"
msgid "Apply List Style"
-msgstr ""
+msgstr "Aplica l'estil de llista"
#. tBYXk
#: sw/uiconfig/swriter/ui/numparapage.ui:319
@@ -25475,13 +25493,13 @@ msgstr "Desa el fons..."
#: sw/uiconfig/swriter/ui/readonlymenu.ui:156
msgctxt "readonlymenu|backaslink"
msgid "As Link"
-msgstr ""
+msgstr "Com a enllaç"
#. CwLB2
#: sw/uiconfig/swriter/ui/readonlymenu.ui:164
msgctxt "readonlymenu|backascopy"
msgid "Copy"
-msgstr ""
+msgstr "Copia"
#. K9D4E
#: sw/uiconfig/swriter/ui/readonlymenu.ui:188
diff --git a/source/ca/vcl/messages.po b/source/ca/vcl/messages.po
index 296ee2081ef..c67689181a6 100644
--- a/source/ca/vcl/messages.po
+++ b/source/ca/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ca/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Separador"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ckb/cui/messages.po b/source/ckb/cui/messages.po
index 773d4f79537..94fa1f30ebb 100644
--- a/source/ckb/cui/messages.po
+++ b/source/ckb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ckb/>\n"
@@ -3527,10 +3527,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8960,6 +8960,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9261,13 +9279,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "پێشبینین"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14341,157 +14359,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "یارمەتی"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "دۆخی بەڵگەنامە"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17189,33 +17213,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "ڕێکخستنەکانی کڵێشە"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po
index 33505509958..28ec664a12a 100644
--- a/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-10-04 14:35+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ckb/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "شوێن و قەبارە"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ckb/sfx2/messages.po b/source/ckb/sfx2/messages.po
index 750d560ed3c..7f7b1853312 100644
--- a/source/ckb/sfx2/messages.po
+++ b/source/ckb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ckb/>\n"
@@ -2850,7 +2850,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/ckb/sw/messages.po b/source/ckb/sw/messages.po
index 9e042a61df7..fab7eaf6c21 100644
--- a/source/ckb/sw/messages.po
+++ b/source/ckb/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-30 18:23+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 15:05+0200\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ckb/>\n"
"Language: ckb\n"
@@ -9759,6 +9759,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "دەستکرد"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -19997,14 +20009,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/ckb/vcl/messages.po b/source/ckb/vcl/messages.po
index a39a9cbe8f3..faf758c6bdc 100644
--- a/source/ckb/vcl/messages.po
+++ b/source/ckb/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ckb/>\n"
@@ -1152,8 +1152,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index 77aa1e53e6c..d83972b2803 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/cs/>\n"
"Language: cs\n"
@@ -3548,11 +3548,11 @@ 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 "Rozhraní Skupiny nabízí funkce sdružené ve skupinách, v nichž mají nejpoužívanější vlastnosti podobu ikon a méně používané jsou umístěny v rozbalovacích nabídkách. Plná varianta klade důraz na funkce a je o něco větší než ostatní varianty."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "Rozhraní Kompaktní skupiny nabízí funkce sdružené ve skupinách, v nichž mají nejpoužívanější vlastnosti podobu ikon a méně používané jsou umístěny v rozbalovacích nabídkách. Kompaktní varianta zabírá na výšku méně místa."
+msgid "The Groupedbar 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
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Přiřadí makro události. Přiřazené makro se spustí automaticky pokaždé, když nastane zvolená událost."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Vlastnosti písma"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Náhled"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Vyberte a použijte na znaky typografické vlastnosti písma."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Nastavení písma pro zdrojový kód HTML, Basic a SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Rozšířené tipy"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Když chvíli podržíte ukazatel myši nad ikonou, příkazem nabídky nebo ovládacím prvkem v dialogu, zobrazí se krátký nápovědný text."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Zobrazovat okno \"Nápověda není nainstalována\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Zobrazovat při spuštění okno \"Tip dne\""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Nápověda"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Použít _dialogy %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogy Otevřít/Uložit"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Použít dialo_gy %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tiskové dialogy"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Tisk _nastaví stav \"dokument změněn\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Určuje, zda je tisk dokumentu považován za změnu."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stav dokumentu"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretovat jako roky mezi "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Určuje rozsah, v rámci kterého systém rozeznává dvouciferně zadaný rok."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Rok (dvě číslice)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Shromažďovat údaje o používání programu a odesílat je The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Zapne odesílaní údajů o používání tohoto softwaru společnosti The Document Foundation, aby mohla jeho použitelnost zlepšovat."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Od_esílat zprávy o pádu The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc při zlepšování %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Načíst %PRODUCTNAME během spuštění systému"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Povolit rychlé spuštění v hlavním panelu"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Rychlé spuštění %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Výchozí aplikace systému Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Asociace souborů %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Obsahuje obecná nastavení pro %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Nahoře"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
-msgstr ""
+msgstr "Pozadí pokrývá okraje"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
-msgstr ""
+msgstr "Pozadí bude pokrývat také okraje stránky"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
-msgstr ""
+msgstr "Je-li povoleno, pozadí bude pokrývat celou stránku včetně okrajů. Je-li zakázáno, pozadí bude pokrývat pouze stránku mezi okraji."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Nastavení rozvržení"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -18319,14 +18349,14 @@ msgstr "Text, pro nějž se QR kód vygeneruje."
#: cui/uiconfig/ui/qrcodegen.ui:132
msgctxt "qrcodegen|label_text"
msgid "URL/Text:"
-msgstr ""
+msgstr "URL/Text:"
#. FoKEY
#. Set Margin around QR
#: cui/uiconfig/ui/qrcodegen.ui:147
msgctxt "qrcodegen|label_margin"
msgid "Margin:"
-msgstr ""
+msgstr "Okraj:"
#. i2kkj
#. Error Correction Level of QR code
@@ -18339,7 +18369,7 @@ msgstr "Oprava chyb:"
#: cui/uiconfig/ui/qrcodegen.ui:200
msgctxt "edit margin"
msgid "The margin surrounding the QR code."
-msgstr ""
+msgstr "Okraj obklopující QR kód."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:217
diff --git a/source/cs/helpcontent2/source/auxiliary.po b/source/cs/helpcontent2/source/auxiliary.po
index aedca5c7eaa..9e977dbe0a6 100644
--- a/source/cs/helpcontent2/source/auxiliary.po
+++ b/source/cs/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-02 11:49+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: Czech <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563452452.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Přehled příkazů"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funkce, výrazy a operátory"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Abecední seznam funkcí, výrazů a operátorů"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared.po b/source/cs/helpcontent2/source/text/sbasic/shared.po
index 4991940169a..35b4ca9d4ae 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/cs/>\n"
"Language: cs\n"
@@ -1994,7 +1994,7 @@ msgctxt ""
"bm_id3149346\n"
"help.text"
msgid "<bookmark_value>names of variables</bookmark_value> <bookmark_value>variables; using</bookmark_value> <bookmark_value>types of variables</bookmark_value> <bookmark_value>declaring variables</bookmark_value> <bookmark_value>values;of variables</bookmark_value> <bookmark_value>literals;date</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;hexadecimal</bookmark_value> <bookmark_value>literals;integer</bookmark_value> <bookmark_value>literals;octal</bookmark_value> <bookmark_value>literals;&h notation</bookmark_value> <bookmark_value>literals;&o notation</bookmark_value> <bookmark_value>literals;floating-point</bookmark_value> <bookmark_value>constants</bookmark_value> <bookmark_value>arrays;declaring</bookmark_value> <bookmark_value>defining;constants</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>názvy proměnných</bookmark_value> <bookmark_value>proměnné; používání</bookmark_value> <bookmark_value>typy proměnných</bookmark_value> <bookmark_value>deklarace proměnných; proměnné</bookmark_value> <bookmark_value>hodnoty;proměnné</bookmark_value> <bookmark_value>literály;datum</bookmark_value> <bookmark_value>literály;celá čísla</bookmark_value> <bookmark_value>literály;šestnáctkové</bookmark_value> <bookmark_value>literály;osmičkové</bookmark_value> <bookmark_value>literály;notace &h</bookmark_value> <bookmark_value>literály; notace &o</bookmark_value> <bookmark_value>literály;desetinná čísla</bookmark_value> <bookmark_value>konstanty</bookmark_value> <bookmark_value>pole;deklarace</bookmark_value> <bookmark_value>definování;konstanty</bookmark_value>"
#. VAkCC
#: 01020100.xhp
@@ -2489,7 +2489,7 @@ msgctxt ""
"hd_DateLiterals\n"
"help.text"
msgid "Literals for Dates"
-msgstr ""
+msgstr "Literály pro data"
#. 5FGDA
#: 01020100.xhp
@@ -2498,7 +2498,7 @@ msgctxt ""
"par_id151616083357363\n"
"help.text"
msgid "Date literals allow to specify unambiguous date variables that are independent from the current language. Literals are enclosed between hash signs <literal>#</literal>. Possible formats are:"
-msgstr ""
+msgstr "Datové literály umožňují jednoznačně určit proměnnou data, která je nezávislá na aktuálním jazyku. Literály se uzavírají znaky křížků <literal>#</literal>. Lze použít formáty:"
#. 6nnHF
#: 01020100.xhp
@@ -2507,7 +2507,7 @@ msgctxt ""
"par_id41616083766108\n"
"help.text"
msgid "#<literal>yyyy-mm-dd</literal>#"
-msgstr ""
+msgstr "#<literal>yyyy-mm-dd</literal>#"
#. oRsER
#: 01020100.xhp
@@ -2516,7 +2516,7 @@ msgctxt ""
"par_id271616083874773\n"
"help.text"
msgid "<literal>#mm/dd/yyyy#</literal>"
-msgstr ""
+msgstr "<literal>#mm/dd/yyyy#</literal>"
#. targE
#: 01020100.xhp
@@ -2525,7 +2525,7 @@ msgctxt ""
"bas_id201616314705492\n"
"help.text"
msgid "zeroDay = #12/30/1899#"
-msgstr ""
+msgstr "zeroDay = #12/30/1899#"
#. DZK5o
#: 01020100.xhp
@@ -2534,7 +2534,7 @@ msgctxt ""
"bas_id616163714705267\n"
"help.text"
msgid "dob = #2010-09-28#"
-msgstr ""
+msgstr "dob = #2010-09-28#"
#. kGGKi
#: 01020100.xhp
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Funkce FreeFile\">Funkce FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Vrátí další dostupné číslo souboru pro otevření souboru. Pomocí této funkce je možné otevřít soubor s číslem souboru, které ještě není použito."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Návratová hodnota:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Celé číslo"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Tuto funkci lze použít pouze okamžitě před příkazem Open. FreeFile vrátí další dostupné číslo souboru, ale nerezervuje ho."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Toto je další řádek textu\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Toto je nový řádek textu\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Všechny soubory budou zavřeny\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Přesun na začátek"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Toto je první řádka textu\" ' Zaplnit řádku textem"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Toto je druhá řádka textu\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Toto je třetí řádka textu\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Toto je nový text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Toto je text v záznamu 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input (příkaz)</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Příkaz Input#\">Příkaz Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Zjišťuje, zda ukazatel souboru dosáhl konce souboru."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Návratová hodnota:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Pomocí EOF zabráníte chybám, při kterých se pokusíte získat data za koncem souboru. Když použijete příkaz Input nebo Get k načtení ze souboru, ukazatel se posune o počet načtených bajtů. Když dosáhne konce souboru, EOF vrátí hodnotu \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Vrátí velikost otevřeného souboru v bajtech."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Návratová hodnota:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Chcete-li zjistit velikost souboru, který není otevřen, použijte funkci <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Musí být variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Pozice na začátku"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Toto je první řádka textu\" REM Zaplnit textem"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Toto je druhá řádka textu\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Toto je třetí řádka textu\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Toto je nová řádka textu\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Toto je text v záznamu 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Viz též: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Návratová hodnota:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Celé číslo"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (soubor otevřen v binárním režimu)"
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Toto je řádek textu\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Smaže soubor z disku."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Řetězec určující jednoznačné (žádné zástupné znaky) jméno souboru. Také je možné použít <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notaci\">URL notaci</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Soubor musí předem existovat"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -14522,7 +14342,7 @@ msgctxt ""
"par_idN10558\n"
"help.text"
msgid "Adds a date or time interval to a given date a number of times and returns the resulting date."
-msgstr ""
+msgstr "Přidá k určenému datu interval (se zadaným počtem opakování) a vrátí výsledné datum."
#. YAQVF
#: 03030110.xhp
@@ -14531,7 +14351,7 @@ msgctxt ""
"par_idN1055F\n"
"help.text"
msgid "DateAdd (interval As String, number As Long, date As Date) As Date"
-msgstr ""
+msgstr "DateAdd (interval As String, number As Long, date As Date) As Date"
#. Gt9cm
#: 03030110.xhp
@@ -14558,7 +14378,7 @@ msgctxt ""
"par_idN10629\n"
"help.text"
msgid "<emph>interval</emph> - A string expression from the following table, specifying the date or time interval."
-msgstr ""
+msgstr "<emph>interval</emph> - Řetězec z následující tabulky, který určuje interval."
#. yKYH5
#: 03030110.xhp
@@ -14567,7 +14387,7 @@ msgctxt ""
"par_idN10636\n"
"help.text"
msgid "interval (string value)"
-msgstr ""
+msgstr "Interval (řetězec)"
#. BrkDy
#: 03030110.xhp
@@ -14765,7 +14585,7 @@ msgctxt ""
"par_idN106C1\n"
"help.text"
msgid "<emph>number</emph> - A numerical expression specifying how often the <literal>interval</literal> value will be added when positive or subtracted when negative."
-msgstr ""
+msgstr "<emph>number</emph> - Číselný výraz, který určuje, kolikrát se má <literal>interval</literal> přidat (number je kladné) nebo odebrat (number je záporné)."
#. 5LaBf
#: 03030110.xhp
@@ -14774,7 +14594,7 @@ msgctxt ""
"par_idN106C4\n"
"help.text"
msgid "<emph>date</emph> - A given date or the name of a Variant variable containing a date. The <literal>interval</literal> value will be added <literal>number</literal> times to this date."
-msgstr ""
+msgstr "<emph>date</emph> - Datum nebo název proměnné typu Variant obsahující datum. K této hodnotě se přidá hodnota <literal>interval</literal> tolikrát, kolik udává proměnná <literal>number</literal>."
#. kvCPX
#: 03030111.xhp
@@ -15404,7 +15224,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "Returns the number of date or time intervals between two given date values."
-msgstr ""
+msgstr "Vrátí počet intervalů mezi dvěma daty."
#. AzmeS
#: 03030120.xhp
@@ -15413,7 +15233,7 @@ msgctxt ""
"par_idN10648\n"
"help.text"
msgid "DateDiff (interval As String, date1 As Date, date2 As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Double"
-msgstr ""
+msgstr "DateDiff (interval As String, date1 As Date, date2 As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Double"
#. BPDH8
#: 03030120.xhp
@@ -15440,7 +15260,7 @@ msgctxt ""
"par_idN10656\n"
"help.text"
msgid "<emph>interval</emph> - A string expression from the following table, specifying the date or time interval."
-msgstr ""
+msgstr "<emph>interval</emph> - Řetězec z následující tabulky, který určuje interval."
#. Exz6j
#: 03030120.xhp
@@ -15449,7 +15269,7 @@ msgctxt ""
"par_idN10664\n"
"help.text"
msgid "<emph>date1, date2</emph> - The two date values to be compared."
-msgstr ""
+msgstr "<emph>date1, date2</emph> - Dvě data k porovnání."
#. yVo8Q
#: 03030120.xhp
@@ -15458,7 +15278,7 @@ msgctxt ""
"par_idN1066A\n"
"help.text"
msgid "<emph>firstDayOfWeek</emph> - An optional parameter that specifies the starting day of a week."
-msgstr ""
+msgstr "<emph>firstDayOfWeek</emph> - Nepovinný parametr, který určuje první den v týdnu."
#. dDoRU
#: 03030120.xhp
@@ -15467,7 +15287,7 @@ msgctxt ""
"par_idN1067A\n"
"help.text"
msgid "firstDayOfWeek value"
-msgstr ""
+msgstr "Hodnota firstDayOfWeek"
#. gmaR8
#: 03030120.xhp
@@ -15629,7 +15449,7 @@ msgctxt ""
"par_idN106EB\n"
"help.text"
msgid "<emph>firstWeekOfYear</emph> - An optional parameter that specifies the starting week of a year."
-msgstr ""
+msgstr "<emph>firstWeekOfYear</emph> - Nepovinný parametr, který určuje první týden v roce."
#. KGncd
#: 03030120.xhp
@@ -15638,7 +15458,7 @@ msgctxt ""
"par_idN106FB\n"
"help.text"
msgid "firstWeekOfYear value"
-msgstr ""
+msgstr "Hodnota firstWeekOfYear"
#. zAFFS
#: 03030120.xhp
@@ -15764,7 +15584,7 @@ msgctxt ""
"par_idN105E8\n"
"help.text"
msgid "DatePart (interval As String, date As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Long"
-msgstr ""
+msgstr "DatePart (interval As String, date As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Long"
#. wi5B9
#: 03030130.xhp
@@ -15782,7 +15602,7 @@ msgctxt ""
"par_idN105EF\n"
"help.text"
msgid "The extracted part for the given date."
-msgstr ""
+msgstr "Požadovaná část zadaného data."
#. fT65v
#: 03030130.xhp
@@ -15791,7 +15611,7 @@ msgctxt ""
"par_idN105F6\n"
"help.text"
msgid "<emph>interval</emph> - A string expression from the following table, specifying the date interval."
-msgstr ""
+msgstr "<emph>interval</emph> - Řětezec z následující tabulky, který určuje interval."
#. CFxRq
#: 03030130.xhp
@@ -15800,7 +15620,7 @@ msgctxt ""
"par_idN10604\n"
"help.text"
msgid "<emph>date</emph> - The date from which the result is calculated."
-msgstr ""
+msgstr "<emph>date</emph> - Datum, ze kterého chcete vypočítat výsledek."
#. tzm8A
#: 03030200.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Aktivuje rutinu pro zpracování chyb nebo obnoví spuštění programu, jakmile dojde k chybě."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Výrok On Error Go To se používá k reakci na chyby, které se objeví v makru."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Příklad:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Toto je řádek textu\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Všechny soubory budou zavřeny\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>operátor MOD (matematický)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operátor Mod\">Operátor Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Vrátí zbytek po dělení čísla."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Výsledek = Výraz1 MOD Výraz2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Návratová hodnota:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Celé číslo"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametry:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Výsledek</emph>: Číselná proměnná, do které se uloží výsledek operace."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Výraz1, Výraz2</emph>: Výrazy, které chcete použít jako vstup operace."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Příklad:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Výsledek = Výraz1 MOD Výraz2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' vrátí 0"
+msgid "Integer"
+msgstr "Celé číslo"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' vrátí 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' vrátí 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' vrátí 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' vrátí 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' vrátí 0.5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr "Funkce <link href=\"text/sbasic/shared/03102900.xhp\" name=\"Funkce dolní hranice\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"Funkce horní hranice\">Ubound</link>"
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Porovnávací operátory"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Porovnávací operátory\">Porovnávací operátory</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Zde jsou popsány dostupné porovnávací operátory."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared/03.po b/source/cs/helpcontent2/source/text/sbasic/shared/03.po
index dfaa9064ee6..cdb77f07404 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared/03.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-03-30 18:07+0200\n"
-"PO-Revision-Date: 2021-03-28 08:37+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -167,7 +167,7 @@ msgctxt ""
"par_id131613838858931\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Kategorie"
#. TmFbF
#: lib_ScriptForge.xhp
@@ -176,16 +176,17 @@ msgctxt ""
"par_id441613838858931\n"
"help.text"
msgid "Services"
-msgstr ""
+msgstr "Služby"
#. ZZKBq
#: lib_ScriptForge.xhp
+#, fuzzy
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id851613847558931\n"
"help.text"
msgid "%PRODUCTNAME Basic"
-msgstr ""
+msgstr "%PRODUCTNAME Basic"
#. jv7Z3
#: lib_ScriptForge.xhp
@@ -194,7 +195,7 @@ msgctxt ""
"par_id131613838825831\n"
"help.text"
msgid "Document Content"
-msgstr ""
+msgstr "Obsah dokumentu"
#. 8fZtg
#: lib_ScriptForge.xhp
@@ -203,7 +204,7 @@ msgctxt ""
"par_id131613947858931\n"
"help.text"
msgid "User Interface"
-msgstr ""
+msgstr "Uživatelské rozhraní"
#. dAomL
#: lib_ScriptForge.xhp
@@ -212,7 +213,7 @@ msgctxt ""
"par_id131613866258931\n"
"help.text"
msgid "Utilities"
-msgstr ""
+msgstr "Nástroje"
#. 6gvZc
#: lib_ScriptForge.xhp
@@ -5182,15 +5183,6 @@ 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 ""
@@ -5416,6 +5408,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/scalc/01.po b/source/cs/helpcontent2/source/text/scalc/01.po
index 83f5fc0716e..63f5acf712a 100644
--- a/source/cs/helpcontent2/source/text/scalc/01.po
+++ b/source/cs/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-05 07:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/cs/>\n"
@@ -21050,50 +21050,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Vrátí číslo jako text s určeným počtem desetinných míst a volitelným oddělovačem tisíců.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXED(Číslo; Desetinná místa [; Nerozdělovat tisíce])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Číslo</emph> představuje číslo, které se bude formátovat."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Desetinná místa</emph> udává, kolik desetinných míst se zobrazí."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>Nerozdělovat tisíce</emph> (volitelné) určuje, zda se použije oddělovač tisíců. Pokud je tento parametr číslo různé od 0, oddělovač tisíců se neobjeví. Pokud je tento parametr 0 nebo není-li zadán, zobrazí se oddělovač tisíců podle <link href=\"text/shared/optionen/01140000.xhp\" name=\"aktuální národní prostředí\">aktuálního národního prostředí</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21104,14 +21104,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> vrátí 1,234,567.890 jako textový řetězec."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> vrátí 1234567.890 jako textový řetězec."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/cs/helpcontent2/source/text/scalc/guide.po b/source/cs/helpcontent2/source/text/scalc/guide.po
index 801d4fd3c25..50b5da33333 100644
--- a/source/cs/helpcontent2/source/text/scalc/guide.po
+++ b/source/cs/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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-28 08:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547389818.000000\n"
#. NXy6S
@@ -3281,7 +3281,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>K buňce (měnit velikost s buňkou):</emph> obrázek se bude přesouvat spolu s buňkou. Kromě toho se bude měnit jeho výška a šířka, pokud se změní velikost buňky, ke které je ukotven. Poměr stran obrázku bude odpovídat poměru stran této buňky."
#. DGAiK
#: change_image_anchor.xhp
@@ -3317,7 +3317,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 "Původní rozměry obrázku a buňky se zachovají při vkládání celého řádku nebo celého sloupce v případě možnosti <emph>K buňce</emph> i <emph>K buňce (měnit velikost s buňkou)</emph>."
#. G5Dfz
#: consolidate.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index 3397d0abc45..df6f6e16912 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547112717.000000\n"
#. 3B8ZN
@@ -536,7 +536,7 @@ msgctxt ""
"hd_id811616711038538\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Zrušit"
#. TcFYz
#: 00000001.xhp
@@ -545,7 +545,7 @@ msgctxt ""
"par_id651616711045219\n"
"help.text"
msgid "Closes dialog and discards changes on all tabs. If <emph>Apply</emph> was used, then changes after the last use of Apply are discarded."
-msgstr ""
+msgstr "Zavře dialogové okno a zruší změny na všech kartách. Pokud byl mezitím použit příkaz <emph>Použít</emph>, zruší se změny provedené od doby jeho použití."
#. wFkFQ
#: 00000001.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"hd_id601616709204188\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Obnovit"
#. YmYPB
#: 00000001.xhp
@@ -563,7 +563,7 @@ msgctxt ""
"par_id691616710270371\n"
"help.text"
msgid "Resets modified values on the current tab back to the values when the dialog was opened. If <emph>Apply</emph> is used before closing the dialog, then values are reset to those after the last use of Apply."
-msgstr ""
+msgstr "Obnoví změněné hodnoty na aktuální kartě zpět na hodnoty z doby otevření dialogového okna. Pokud byl mezitím použit příkaz <emph>Použít</emph>, obnoví se hodnoty z doby jeho použití."
#. emuSf
#: 00000001.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"hd_id541616711560721\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Použít"
#. pjHJH
#: 00000001.xhp
@@ -581,7 +581,7 @@ msgctxt ""
"par_id691616711586248\n"
"help.text"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with <emph>Reset</emph>."
-msgstr ""
+msgstr "Použije změny provedené na všech kartách, aniž by se zavřelo dialogové okno. Tuto akci nelze vrátit zpět pomocí <emph>Obnovit</emph>."
#. A8G37
#: 00000001.xhp
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id851616061478033\n"
"help.text"
msgid "Reset to Parent"
-msgstr ""
+msgstr "Nastavit na rodičovský"
#. WGWyN
#: 00000001.xhp
@@ -599,7 +599,7 @@ msgctxt ""
"par_id581616061494132\n"
"help.text"
msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Nastaví hodnoty na aktuální kartě na odpovídající hodnoty ze stylu, který je určen v poli „Rodičovský“ na kartě Organizátor. Ve všech případech, včetně toho, kdy je „Rodičovský“ nastaven jako „Žádný“, se na této kartě odstraní hodnoty popsané v části „Obsahuje“."
#. 3brfZ
#: 00000001.xhp
@@ -608,7 +608,7 @@ msgctxt ""
"par_id131583023830621\n"
"help.text"
msgid "This option appears only for Paragraph Style, Character Style, and Frame Style."
-msgstr ""
+msgstr "Tato možnost se zobrazuje pouze pro styl odstavce, rámce a stránky."
#. wUEEa
#: 00000001.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index ec4a91727ca..e6a97e833fa 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-05 07:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/cs/>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,14 +41812,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Přiřadit makro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Otevře dialogové okno <link href=\"text/shared/01/06130000.xhp\">Výběr makra</link> pro přiřazení makra vybrané události.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/guide.po b/source/cs/helpcontent2/source/text/shared/guide.po
index 548b4f0e2d5..d54789c2ba4 100644
--- a/source/cs/helpcontent2/source/text/shared/guide.po
+++ b/source/cs/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-02-01 16:24+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547113478.000000\n"
#. iharT
@@ -698,7 +698,7 @@ msgctxt ""
"par_id501605796731176\n"
"help.text"
msgid "The following texts are changed to hyperlinks:"
-msgstr ""
+msgstr "Na hypertextové odkazy se změní následující texty:"
#. JEKMV
#: autocorr_url.xhp
@@ -707,7 +707,7 @@ msgctxt ""
"par_id151606170788960\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#. 4GrpF
#: autocorr_url.xhp
@@ -716,7 +716,7 @@ msgctxt ""
"par_id131606170828813\n"
"help.text"
msgid "Autocorrected hyperlink"
-msgstr ""
+msgstr "Automaticky opravený hypertextový odkaz"
#. FLUHT
#: autocorr_url.xhp
@@ -725,7 +725,7 @@ msgctxt ""
"par_id21605798391315\n"
"help.text"
msgid "Email addresses"
-msgstr ""
+msgstr "E-mailové adresy"
#. b8hkH
#: autocorr_url.xhp
@@ -734,7 +734,7 @@ msgctxt ""
"par_id381605798546491\n"
"help.text"
msgid "Web addresses"
-msgstr ""
+msgstr "Webové adresy"
#. npDDR
#: autocorr_url.xhp
@@ -743,7 +743,7 @@ msgctxt ""
"par_id551605798623251\n"
"help.text"
msgid "File addresses"
-msgstr ""
+msgstr "Adresy souborů"
#. efTZG
#: autocorr_url.xhp
@@ -752,7 +752,7 @@ msgctxt ""
"par_id781605797492605\n"
"help.text"
msgid "where <literal>x</literal> is one or more characters."
-msgstr ""
+msgstr "kde <literal>x</literal> značí jeden či více znaků."
#. 6vSTS
#: autocorr_url.xhp
@@ -4874,7 +4874,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "CorelDRAW"
-msgstr ""
+msgstr "CorelDRAW"
#. rTQKQ
#: convertfilters.xhp
@@ -7619,7 +7619,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "This section contains information about how to create a new database table in the <link href=\"text/sdatabase/05010000.xhp\" name=\"design view\">design view</link>."
-msgstr ""
+msgstr "Tato část obsahuje informace o vytvoření nové databázové tabulky v<link href=\"text/sdatabase/05010000.xhp\" name=\"režim návrhu\">režimu návrhu</link>."
#. 39GZc
#: data_tabledefine.xhp
@@ -8168,7 +8168,7 @@ msgctxt ""
"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/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/explorer/database/05010000.xhp\" name=\"Vytvoření nové tabulky, úprava struktury tabulky\">Vytvoření nové tabulky, úprava struktury tabulky</link>, <link href=\"text/shared/explorer/database/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relace\">relace</link>"
#. AENyR
#: database_main.xhp
@@ -10634,7 +10634,7 @@ msgctxt ""
"par_id731607157836334\n"
"help.text"
msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU type and features; total RAM memory size; graphics device and driver)."
-msgstr ""
+msgstr "Odešle se rovněž informace o verzi %PRODUCTNAME, názvu a verzi operačního systému a výpočetním hardwaru (typ a vlastnosti CPU, celková velikost paměti RAM, grafické zařízení a ovladač)."
#. oCk4J
#: error_report.xhp
@@ -11210,7 +11210,7 @@ msgctxt ""
"bm_id3152801\n"
"help.text"
msgid "<bookmark_value>toolbars;docking/undocking</bookmark_value> <bookmark_value>toolbars;viewing/closing</bookmark_value> <bookmark_value>toolbars;locking/unlocking</bookmark_value> <bookmark_value>closing;toolbars</bookmark_value> <bookmark_value>docking;toolbars</bookmark_value> <bookmark_value>fixing toolbars</bookmark_value> <bookmark_value>detaching toolbars</bookmark_value> <bookmark_value>placing toolbars</bookmark_value> <bookmark_value>positioning;toolbars</bookmark_value> <bookmark_value>moving;toolbars</bookmark_value> <bookmark_value>attaching toolbars</bookmark_value> <bookmark_value>floating toolbars</bookmark_value> <bookmark_value>windows;docking</bookmark_value> <bookmark_value>viewing;toolbars</bookmark_value> <bookmark_value>showing;toolbars</bookmark_value> <bookmark_value>icon bars, see toolbars</bookmark_value> <bookmark_value>button bars, see toolbars</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>nástrojové lišty; ukotvení/uvolnění</bookmark_value> <bookmark_value>nástrojové lišty; zobrazení/zavírání</bookmark_value><bookmark_value>nástrojové lišty;zamykání/odemykání</bookmark_value><bookmark_value>zavírání; nástrojové lišty</bookmark_value><bookmark_value>ukotvení; nástrojové lišty</bookmark_value><bookmark_value>uvolnění nástrojových lišt</bookmark_value><bookmark_value>umístění; nástrojové lišty</bookmark_value><bookmark_value>přesouvání; nástrojové lišty</bookmark_value><bookmark_value>ukotvení nástrojových lišt</bookmark_value><bookmark_value>plovoucí nástrojové lišty</bookmark_value><bookmark_value>okna; ukotvení</bookmark_value><bookmark_value>zobrazení; nástrojové lišty</bookmark_value><bookmark_value>lišty ikon; viz nástrojové lišty</bookmark_value><bookmark_value>lišty tlačítek; viz nástrojové lišty</bookmark_value>"
#. hA6wB
#: floating_toolbar.xhp
@@ -11228,7 +11228,7 @@ msgctxt ""
"par_id201608908867251\n"
"help.text"
msgid "Toolbars in %PRODUCTNAME can be either docked as part of the main window, or floating as a separate window. By default, the visible toolbars and the ones you open with <menuitem>View – Toolbars</menuitem> are docked, and their positions are locked."
-msgstr ""
+msgstr "Nástrojové lišty mohou být v %PRODUCTNAME buď ukotveny jako součást hlavního okna, nebo být plovoucí jako samostatná okna. Ve výchozím nastavení jsou viditelné lišty a ty lišty, které otevřete pomocí <menuitem>Zobrazit - Nástrojové lišty</menuitem> ukotvené a jejich umístění je uzamčeno."
#. i9a3V
#: floating_toolbar.xhp
@@ -11291,7 +11291,7 @@ msgctxt ""
"par_id295724\n"
"help.text"
msgid "Click the icon in the toolbar's title bar, or choose <menuitem>Close Toolbar</menuitem> from the context menu. The toolbar will be shown automatically again when the context becomes active again."
-msgstr ""
+msgstr "Klepněte na ikonu v záhlaví nástrojové lišty nebo z místní nabídky zvolte <menuitem>Zavřít lištu</menuitem>. Nástrojová lišta se automaticky otevře při další aktivaci kontextu."
#. SG6DB
#: floating_toolbar.xhp
@@ -11309,7 +11309,7 @@ msgctxt ""
"par_id9776909\n"
"help.text"
msgid "While the toolbar is visible, choose <menuitem>View – Toolbars</menuitem> and click the name of the toolbar to remove the check mark."
-msgstr ""
+msgstr "Pokud je nástrojová lišta viditelná, zvolte <menuitem>Zobrazit - Nástrojové lišty</menuitem> a klepnutím na název lišty odstraňte zaškrtnutí."
#. icSJb
#: floating_toolbar.xhp
@@ -11318,7 +11318,7 @@ msgctxt ""
"hd_idN1077E\n"
"help.text"
msgid "To Show a Closed Toolbar"
-msgstr ""
+msgstr "Zobrazení zavřené nástrojové lišty"
#. EScnW
#: floating_toolbar.xhp
@@ -11327,7 +11327,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "Choose <menuitem>View – Toolbars</menuitem> and click the name of the toolbar."
-msgstr ""
+msgstr "Zvolte <menuitem>Zobrazit – Nástrojové lišty</menuitem> a klepněte na název lišty."
#. pv9hG
#: floating_toolbar.xhp
@@ -11336,7 +11336,7 @@ msgctxt ""
"par_id7296975\n"
"help.text"
msgid "Choose <menuitem>View – Toolbars – Reset</menuitem> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context."
-msgstr ""
+msgstr "Volbou <menuitem>Zobrazit – Nástrojové lišty – Obnovit</menuitem> obnovíte výchozí chování nástrojových lišt. Poté se některé lišty budou zobrazovat automaticky v závislosti na kontextu."
#. TpoEB
#: floating_toolbar.xhp
@@ -11345,7 +11345,7 @@ msgctxt ""
"hd_id981608909383980\n"
"help.text"
msgid "To Unlock a Docked Toolbar"
-msgstr ""
+msgstr "Odemknutí ukotvené nástrojové lišty"
#. hq3GB
#: floating_toolbar.xhp
@@ -11354,7 +11354,7 @@ msgctxt ""
"par_id21608909469876\n"
"help.text"
msgid "Right-click the toolbar and choose <menuitem>Lock Toolbar Position</menuitem> from the context menu so that it is unchecked. A small vertical handle appears at the start of an unlocked toolbar, which you can use to move the toolbar."
-msgstr ""
+msgstr "Klepněte na nástrojovou lištu pravým tlačítkem a z místní nabídky zvolte <menuitem>Zamknout umístění lišty</menuitem>, tím zrušíte zaškrtnutí. Na začátku odemčené lišty se zobrazí malý svislý úchyt, kterým můžete lištu přesunout."
#. FMTD8
#: floating_toolbar.xhp
@@ -11363,7 +11363,7 @@ msgctxt ""
"hd_id911608910290237\n"
"help.text"
msgid "To Lock a Docked Toolbar"
-msgstr ""
+msgstr "Zamknutí ukotvené nástrojové lišty"
#. 6DT2v
#: floating_toolbar.xhp
@@ -11372,7 +11372,7 @@ msgctxt ""
"par_id741608910160801\n"
"help.text"
msgid "You can lock the position of a toolbar by choosing <menuitem>Lock Toolbar Position</menuitem> again from the context menu, so that it is checked."
-msgstr ""
+msgstr "Umístění nástrojové lišty uzamknete opětovnou volbou <menuitem>Zamknout umístění lišty</menuitem> z místní nabídky, kterou položku zaškrtnete."
#. WDMDm
#: floating_toolbar.xhp
@@ -11381,7 +11381,7 @@ msgctxt ""
"hd_idN106E9\n"
"help.text"
msgid "To Make a Toolbar a Floating Toolbar"
-msgstr ""
+msgstr "Jak udělat z nástrojové lišty plovoucí lištu"
#. SibLS
#: floating_toolbar.xhp
@@ -11390,7 +11390,7 @@ msgctxt ""
"par_idN106EF\n"
"help.text"
msgid "Click the toolbar handle and drag the toolbar into the document."
-msgstr ""
+msgstr "Klepněte na úchyt a přetáhněte lištu do dokumentu."
#. k7YCp
#: floating_toolbar.xhp
@@ -11399,7 +11399,7 @@ msgctxt ""
"hd_idN106F2\n"
"help.text"
msgid "To Reattach a Floating Toolbar"
-msgstr ""
+msgstr "Uchycení plovoucí nástrojové lišty"
#. tUC9A
#: floating_toolbar.xhp
@@ -11516,7 +11516,7 @@ msgctxt ""
"par_id3149761\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a Fontwork style and click OK to insert the Fontwork into your document. Double-click or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+double-click the Fontwork in your document to enter text edit mode and change the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Výběrem stylu písmomalby a klepnutím na OK vložíte písmomalbu do dokumentu. Poklepáním nebo poklepáním na písmomalbu se stisknutým <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> vstoupíte do režimu úprav textu a změníte text.</ahelp>"
#. tK7Bb
#: fontwork.xhp
@@ -11579,7 +11579,7 @@ msgctxt ""
"par_idN106B5\n"
"help.text"
msgid "Click the Fontwork object. If the Fontwork object is inserted in the background, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key while you click."
-msgstr ""
+msgstr "Klepněte na objekt písmomalby. Pokud je objekt písmomalby vložen na pozadí, podržte při klepnutí klávesu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>."
#. EhZd8
#: fontwork.xhp
@@ -11669,7 +11669,7 @@ msgctxt ""
"par_idN108D1\n"
"help.text"
msgid "Click the Fontwork object. If the Fontwork object is inserted in the background, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key while you click."
-msgstr ""
+msgstr "Klepněte na objekt písmomalby. Pokud je objekt písmomalby vložen na pozadí, podržte při klepnutí klávesu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>."
#. pzMsR
#: fontwork.xhp
@@ -14603,7 +14603,7 @@ msgctxt ""
"par_id3159096\n"
"help.text"
msgid "Press Tab to select an icon. If you selected one of the icons from <emph>Rectangle</emph> to <emph>Freeform Polygon</emph> and you press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline><keycode>+Enter</keycode>, an object of the selected type is created in default size."
-msgstr ""
+msgstr "Stiskem Tab vyberte ikonu. Pokud vyberete některou z ikon od <emph>Obdélník</emph> po <emph>Mnohoúhelník od ruky</emph> a stisknete <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline><keycode>+Enter</keycode>, vytvoří se objekt vybraného typu ve výchozí velikosti."
#. go9cM
#: keyboard.xhp
@@ -14612,7 +14612,7 @@ msgctxt ""
"par_id3156016\n"
"help.text"
msgid "If you press <keycode>Enter</keycode> while the icon <emph>Select</emph> is selected, the focus is set into the image window of the ImageMap Editor. Press <keycode>Esc</keycode> to set the focus back to the icons and input boxes."
-msgstr ""
+msgstr "Pokud vyberete ikonu <emph>Výběr</emph> a stisknete <keycode>Enter</keycode>, nastaví se zaměření zpět do okna s obrázkem. Stiskem <keycode>Esc</keycode> vrátíte zaměření zpět na ikony a vstupní pole."
#. 2DD3n
#: keyboard.xhp
@@ -14621,7 +14621,7 @@ msgctxt ""
"par_id3149587\n"
"help.text"
msgid "If the <emph>Select</emph> icon is selected and you press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>, the first object in the image window gets selected."
-msgstr ""
+msgstr "Pokud vyberete ikonu <emph>Výběr</emph> a stisknete <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>, vybere se první objekt v okně obrázku."
#. 3Wh8W
#: keyboard.xhp
@@ -14639,7 +14639,7 @@ msgctxt ""
"par_id3147073\n"
"help.text"
msgid "Use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> in the image window to select the next point. Use <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> to select the previous point."
-msgstr ""
+msgstr "Stiskem <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> v okně obrázku vyberete další bod. Stiskem <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> vyberete předchozí bod."
#. 7BdLu
#: keyboard.xhp
@@ -14738,7 +14738,7 @@ msgctxt ""
"par_id3151000\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Right Arrow</keycode>: jump to the previous or to the next split"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Šipka vlevo</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Šipka vpravo</keycode>: přesun na předchozí nebo následující rozdělení"
#. a7Hg8
#: keyboard.xhp
@@ -14747,7 +14747,7 @@ msgctxt ""
"par_id3159203\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Right Arrow</keycode>: move a split one position to the left or to the right"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Šipka vlevo</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Šipka vpravo</keycode>: přesune rozdělení o jednu pozici vlevo nebo vpravo"
#. xVvaL
#: keyboard.xhp
@@ -14765,7 +14765,7 @@ msgctxt ""
"par_id3155382\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>: jump to the first or the last split"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>: přejde na první nebo poslední rozdělení"
#. 6CuHs
#: keyboard.xhp
@@ -14774,7 +14774,7 @@ msgctxt ""
"par_id3155894\n"
"help.text"
msgid "<keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode> or <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>: move split to the first or to the last position"
-msgstr ""
+msgstr "<keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode> nebo <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>: přesune rozdělení na první nebo poslední pozici"
#. yxCwG
#: keyboard.xhp
@@ -14864,7 +14864,7 @@ msgctxt ""
"par_id3150780\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Right Arrow</keycode>: move focus to the left or to the right column (does not change selection)"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Left Arrow</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Right Arrow</keycode>: přesune zaměření na levý nebo pravý sloupec (nezmění výběr)"
#. FySem
#: keyboard.xhp
@@ -14882,7 +14882,7 @@ msgctxt ""
"par_id3146962\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Right Arrow</keycode>: expand or shrink the selected range (does not change other selections)"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Left Arrow</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Right Arrow</keycode>: rozšíří nebo zmenší rozsah výběru (nezmění jiné výběry)"
#. DbNiK
#: keyboard.xhp
@@ -14891,7 +14891,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "<keycode>Home</keycode> or <keycode>End</keycode>: select the first or the last column (use <keycode>Shift</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> as with cursor keys)"
-msgstr ""
+msgstr "<keycode>Home</keycode> nebo <keycode>End</keycode>: označí první nebo poslední sloupec (můžete použít <keycode>Shift</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> jako s kurzorovými klávesami)"
#. 8F5dq
#: keyboard.xhp
@@ -14909,7 +14909,7 @@ msgctxt ""
"par_id3154171\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Space</keycode> key: select the range from the last selected column to the current column (does not change other selections)"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Mezerník</keycode>: vybere rozsah od posledního označeného sloupce k aktuálnímu sloupci (nezmění ostatní výběry)"
#. mCZzB
#: keyboard.xhp
@@ -14918,7 +14918,7 @@ msgctxt ""
"par_id3156368\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>: select all columns"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+A</keycode>: vybere všechny sloupce"
#. GErPh
#: keyboard.xhp
@@ -14936,7 +14936,7 @@ msgctxt ""
"par_id3150416\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+1</keycode> ... <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+7</keycode>: set the 1st ... 7th column type for the selected columns"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+1</keycode> ... <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+7</keycode>: nastaví 1. až 7. typ sloupce pro vybrané sloupce"
#. S7mnM
#: keyboard.xhp
@@ -14963,7 +14963,7 @@ msgctxt ""
"par_id3145116\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>: scroll to the top or bottom of a table"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Home</keycode> nebo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+End</keycode>: posun na začátek nebo konec tabulky"
#. FYdWx
#: keyboard.xhp
@@ -16727,7 +16727,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Working with Templates in Template Manager"
-msgstr ""
+msgstr "Práce se šablonami ve správci šablon"
#. DbDMX
#: manage_templates.xhp
@@ -16736,7 +16736,7 @@ msgctxt ""
"bm_id101608800218434\n"
"help.text"
msgid "<bookmark_value>paths;template files</bookmark_value><bookmark_value>categories;in templates</bookmark_value><bookmark_value>file extensions;in templates</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>cesty;soubory šablon</bookmark_value><bookmark_value>kategorie;šablony</bookmark_value><bookmark_value>přípony souboru;šablony</bookmark_value>"
#. XoCwL
#: manage_templates.xhp
@@ -16745,7 +16745,7 @@ msgctxt ""
"hd_id901607893176311\n"
"help.text"
msgid "<variable id=\"manage_templates\"><link href=\"text/shared/guide/manage_templates.xhp\" name=\"Manage_Templates\">Templates in the Template Manager</link></variable>"
-msgstr ""
+msgstr "<variable id=\"manage_templates\"><link href=\"text/shared/guide/manage_templates.xhp\" name=\"Správce šablon\">Šablony ve správci šablon</link></variable>"
#. XJNdZ
#: manage_templates.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index aa4489fbffb..bd039d77e35 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/helpcontent2/source/text/shared/optionen.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: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-28 08:37+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -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 "<ahelp hid=\".\">Microsoft Office používá dva atributy znaku podobné zvýraznění znaku v $[officename]. Vyberte příslušný atribut (<emph>zvýraznění</emph> nebo <emph>stínování</emph>), který má $[officename] použít při exportu zvýrazněných znaků do formátů souboru Microsoft Office."
+msgstr "<ahelp hid=\".\">Microsoft Office používá dva atributy znaku podobné zvýraznění znaku v $[officename]. Vyberte příslušný atribut (<emph>zvýraznění</emph> nebo <emph>stínování</emph>), který má $[officename] použít při exportu zvýrazněných znaků do formátů souboru Microsoft Office.</ahelp>"
#. DxMaG
#: 01130200.xhp
diff --git a/source/cs/helpcontent2/source/text/simpress/guide.po b/source/cs/helpcontent2/source/text/simpress/guide.po
index cd39d3d949a..ddaccc768d0 100644
--- a/source/cs/helpcontent2/source/text/simpress/guide.po
+++ b/source/cs/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-28 08:36+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547390017.000000\n"
#. S83CC
@@ -2777,7 +2777,7 @@ msgctxt ""
"par_id3150650\n"
"help.text"
msgid "To start a slide show from the beginning, press <keycode>F5</keycode>."
-msgstr ""
+msgstr "Chcete-li spustit prezentaci od začátku, stiskněte <keycode>F5</keycode>."
#. WaqYV
#: keyboard.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter.po b/source/cs/helpcontent2/source/text/swriter.po
index 9cc20a478c4..48a24cb08de 100644
--- a/source/cs/helpcontent2/source/text/swriter.po
+++ b/source/cs/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547110029.000000\n"
#. P7iNX
@@ -2588,7 +2588,7 @@ msgctxt ""
"par_id3154277\n"
"help.text"
msgid "<ahelp hid=\"HID_NUM_TOOLBOX\">The <emph>Bullets and Numbering</emph> bar contains functions to modify the structure of list paragraphs, including changing their order and list level.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NUM_TOOLBOX\">Lišta <emph>Odrážky a číslování</emph> obsahuje funkce pro úpravu struktury odstavců se seznamem, např. změnu jejich pořadí nebo změnu úrovně seznamu.</ahelp>"
#. do6CG
#: main0208.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/01.po b/source/cs/helpcontent2/source/text/swriter/01.po
index fcf0a7da4b6..dbeef02f35b 100644
--- a/source/cs/helpcontent2/source/text/swriter/01.po
+++ b/source/cs/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-01-02 19:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/cs/>\n"
"Language: cs\n"
@@ -707,7 +707,7 @@ msgctxt ""
"par_id3154475\n"
"help.text"
msgid "To open the Navigator, choose <menuitem>View - Navigator</menuitem> (<keycode>F5</keycode>). To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left, right or bottom edge of the workspace. To undock the Navigator, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key and double-click on a grey area of the Navigator."
-msgstr ""
+msgstr "Navigátor lze otevřít pomocí <menuitem>Zobrazit - Navigátor</menuitem> (<keycode>F5</keycode>). Okno Navigátoru lze přesouvat tažením za jeho záhlaví. Přetažením okna Navigátoru k levému, pravému nebo dolnímu okraji pracovní plochy dojde k jeho ukotvení. Ukotvený Navigátor lze uvolnit podržením klávesy <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a poklepáním na neaktivní (šedou) plochu Navigátoru."
#. FqB3h
#: 02110000.xhp
@@ -770,7 +770,7 @@ msgctxt ""
"par_id3154616\n"
"help.text"
msgid "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Icon Previous Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154622\" src=\"cmd/sc_upsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154622\">Ikona Předchozí objekt</alt></image>"
#. z3HC5
#: 02110000.xhp
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Icon Next Object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150773\" src=\"cmd/sc_downsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150773\">Ikona Další objekt</alt></image>"
#. xyGWM
#: 02110000.xhp
@@ -1607,7 +1607,7 @@ msgctxt ""
"par_id3151354\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/promote\">Zvýší úroveň osnovy vybraného nadpisu a jemu podřízených nadpisů o jednu. Chcete-li zvýšit úroveň osnovy pouze u vybraného nadpisu, podržte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a poté klepněte na tuto ikonu.</ahelp>"
#. MZCz3
#: 02110000.xhp
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3150707\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/demote\">Sníží úroveň osnovy vybraného nadpisu a jemu podřízených nadpisů o jednu. Chcete-li snížit úroveň osnovy pouze u vybraného nadpisu, podržte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a poté klepněte na tuto ikonu.</ahelp>"
#. Bb4uA
#: 02110000.xhp
@@ -1679,7 +1679,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterup\">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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterup\">Přesune vybraný nadpis a odpovídající text v Navigátoru i v dokumentu o jednu pozici výše. Chcete-li přesunout pouze nadpis bez textu, podržte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a poté klepněte na tuto ikonu.</ahelp>"
#. ofws9
#: 02110000.xhp
@@ -1688,7 +1688,7 @@ msgctxt ""
"par_id3153268\n"
"help.text"
msgid "<image id=\"img_id3153275\" src=\"cmd/sc_upsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153275\">Icon Chapter Up</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153275\" src=\"cmd/sc_upsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153275\">Ikona Kapitolu o úroveň výše</alt></image>"
#. aTBif
#: 02110000.xhp
@@ -1715,7 +1715,7 @@ msgctxt ""
"par_id3154440\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterdown\">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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, and then click this icon.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/navigatorpanel/chapterdown\">Přesune vybraný nadpis a odpovídající text v Navigátoru i v dokumentu o jednu pozici níže. Chcete-li přesunout pouze nadpis bez textu, podržte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a poté klepněte na tuto ikonu.</ahelp>"
#. xgyf2
#: 02110000.xhp
@@ -1724,7 +1724,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<image id=\"img_id3150828\" src=\"cmd/sc_downsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150828\">Icon Chapter down</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150828\" src=\"cmd/sc_downsearch.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150828\">Ikona Kapitolu o úroveň níže</alt></image>"
#. rYRtE
#: 02110000.xhp
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3145758\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/insert\">Displays a suggestion for completing a word as a Help Tip after you type the first three letters of a word that matches an AutoText entry. To accept the suggestion, press Enter. If more than one AutoText entry matches the letters that you type, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> to advance through the entries.</ahelp> For example, to insert dummy text, type \"Dum\", and then press Enter."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/insert\">Zobrazuje návrhy dokončení slova jako nápovědný text po napsání prvních tří písmen slova, které se shoduje s některou položkou Automatického textu. Návrh přijmete stisknutím klávesy Enter. Pokud se napsané znaky shodují s více než jednou položkou Automatického textu, stisknutím <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> lze procházet mezi jednotlivými položkami.</ahelp>"
#. VhVNW
#: 02120000.xhp
@@ -2327,7 +2327,7 @@ msgctxt ""
"par_id3149177\n"
"help.text"
msgid "To display the list in reverse order, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Tab</keycode>."
-msgstr ""
+msgstr "Chcete-li seznam procházet v obráceném pořadí, stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Tab</keycode>."
#. 23v8E
#: 02120000.xhp
@@ -3515,7 +3515,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "To quickly jump to the footnote or endnote text, click the anchor for note in the document. You can also position the cursor in front of or behind the marker, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+PgDn</keycode>. To jump back to the anchor for the note, press <keycode>PgUp</keycode>."
-msgstr ""
+msgstr "Na text poznámky nebo vysvětlivky rychle přejdete tím, že klepnete na odkaz na poznámku v dokumentu. Můžete také umístit kurzor před nebo za značku poznámky a stisknout <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+PgDn</keycode>. Zpět k odkazu na poznámku se vrátíte stiskem <keycode>PgUp</keycode>."
#. TN7ER
#: 02150000.xhp
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_id61601653541581\n"
"help.text"
msgid "Insert a column break by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Enter</keycode>"
-msgstr ""
+msgstr "Zalomení sloupce vložíte stisknutím <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Enter</keycode>."
#. P7DHK
#: 04010000.xhp
@@ -5387,7 +5387,7 @@ msgctxt ""
"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, click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/insertbookmark/bookmarks\">Zadejte název záložky, kterou chcete vytvořit, a klepněte na <emph>Vložit</emph>.</ahelp>"
#. s7rfA
#: 04040000.xhp
@@ -6710,7 +6710,7 @@ msgctxt ""
"par_id911603998090123\n"
"help.text"
msgid "To insert a field in your document, first select the field <emph>Type</emph>, then click in the <emph>Select</emph> list, to choose which information item should be inserted, then click <emph>Insert</emph>."
-msgstr ""
+msgstr "Chcete-li vložit do dokumentu pole, nejprve vyberte <emph>Typ</emph>, poté v seznamu <emph>Vybrat</emph> zvolte, která položka se má vložit, a klepněte na <emph>Vložit</emph>."
#. sBMhB
#: 04090001.xhp
@@ -6728,7 +6728,7 @@ msgctxt ""
"par_id3153672\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/type\">Lists the available field types. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/type\">Seznam všech dostupných polí.</ahelp>"
#. ZcgNs
#: 04090001.xhp
@@ -6746,7 +6746,7 @@ msgctxt ""
"par_id3150678\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lists what information can be inserted for a selected field type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Udává, kterou položku lze vložit pro vybraný typ pole.</ahelp>"
#. w3CsM
#: 04090001.xhp
@@ -6755,7 +6755,7 @@ msgctxt ""
"par_id71603998444482\n"
"help.text"
msgid "Available field Types and Select lists"
-msgstr ""
+msgstr "Dostupné hodnoty v poli Typ a seznamu Vybrat"
#. XLkyh
#: 04090001.xhp
@@ -6773,7 +6773,7 @@ msgctxt ""
"par_id3143272\n"
"help.text"
msgid "Select list"
-msgstr ""
+msgstr "Seznam Vybrat"
#. Go6eY
#: 04090001.xhp
@@ -6935,7 +6935,7 @@ msgctxt ""
"par_id3156123\n"
"help.text"
msgid "Inserts the filename, the filename without the file extension, the path, or the path and filename of the current template. You can also insert the <literal>Template name</literal> and <literal>Category</literal> of the current template."
-msgstr ""
+msgstr "Vloží pro aktuální šablonu název souboru, název souboru bez přípony, cestu nebo cestu a název souboru. Můžete také vložit položky <literal>Název šablony</literal> a <literal>Kategorie</literal>."
#. mMpkY
#: 04090001.xhp
@@ -6980,7 +6980,7 @@ msgctxt ""
"par_id3145613\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/format\">If a field is displaying a date, time or number, then <emph>Format</emph> is used to customize the appearance of the date, time, or number. Common formats are shown in the Format window, or click \"Additional formats\" to define a custom format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/format\">Zobrazuje-li pole datum, čas nebo číslo, k přizpůsobení jeho vzhledu je použit <emph>Formát</emph>. V okně Formát se zobrazují běžné formáty, po klepnutí na „Další formáty“ můžete určit formát vlastní.</ahelp>"
#. ErwZ7
#: 04090001.xhp
@@ -7070,7 +7070,7 @@ msgctxt ""
"par_id3145188\n"
"help.text"
msgid "With an <emph>Offset</emph> value of 1, the field will display a number that is 1 more than the current page number, but only if a page with that number exists. On the last page of the document, this same field will be empty."
-msgstr ""
+msgstr "S hodnotou <emph>Odchylka</emph> jedna (1) zobrazí pole číslo o jedna vyšší než aktuální číslo stránky, ale pouze v případě, že stránka s takovým číslem existuje. Na poslední stránce bude takovéto pole prázdné."
#. UE3TE
#: 04090001.xhp
@@ -7799,7 +7799,7 @@ msgctxt ""
"par_id3147564\n"
"help.text"
msgid "Inserts a text field that displays one item from a list. You can add, edit, and remove items, and change their order in the list. Click an <emph>Input list</emph> field in your document or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode> to display the <link href=\"text/swriter/01/04090003.xhp\" name=\"Choose Item\"><emph>Choose Item</emph></link> dialog."
-msgstr ""
+msgstr "Vloží textové pole, které zobrazí jednu položku ze seznamu. Tyto položky můžete libovolně přidávat, upravovat či odstraňovat a také můžete měnit jejich pořadí v seznamu. Pokud chcete zobrazit dialogové okno <link href=\"text/swriter/01/04090003.xhp\" name=\"Zvolte položku\"><emph>Zvolte položku</emph></link>, klepněte v dokumentu na konkrétní pole <emph>Vstupní seznam</emph> nebo stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode>."
#. Bsz3R
#: 04090003.xhp
@@ -7916,7 +7916,7 @@ msgctxt ""
"par_id3154631\n"
"help.text"
msgid "The following fields can only be inserted if the corresponding field type is selected in the <emph>Type </emph>list."
-msgstr ""
+msgstr "Následující pole mohou být vložena pouze tehdy, je-li v seznamu <emph>Typ</emph> vybrána odpovídající položka."
#. LWBFT
#: 04090003.xhp
@@ -8339,7 +8339,7 @@ msgctxt ""
"par_id3148434\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/next\">Closes the current <emph>Input list</emph> and displays the next, if available.</ahelp> You see this button when you open the <emph>Choose Item</emph> dialog by <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/dropdownfielddialog/next\">Zavře aktuální <emph>Vstupní seznam</emph>, a je-li k dispozici nějaký další, zobrazí jej.</ahelp> Toto tlačítko se zobrazí, pokud otevřete pomocí <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F9</keycode> dialogové okno <emph>Zvolte položku</emph>."
#. Yjhgp
#: 04090004.xhp
@@ -12065,7 +12065,7 @@ msgctxt ""
"par_id1209200804373840\n"
"help.text"
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 ""
+msgstr "Úrovně osnovy můžete přiřadit také na kartě <link href=\"text/swriter/01/05030800.xhp\">Osnova a seznam</link> dialogového okna Formát - Odstavec."
#. y5UNJ
#: 04120211.xhp
@@ -14693,7 +14693,7 @@ msgctxt ""
"par_id3150762\n"
"help.text"
msgid "To resize a selected frame or object, first press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode>. Now one of the handles blinks to show that it is selected. To select another handle, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> again. Press an arrow key to resize the object by one grid unit. To resize by one pixel, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press an arrow key."
-msgstr ""
+msgstr "Pro změnu rozměru rámce nebo objektu nejprve stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode>. Zabliká vybraný úchopný bod. Chcete-li vybrat jiný bod, stiskněte znovu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode>. Klávesou šipky změníte velikost objektu o jednu jednotku mřížky. Pro změnu o jeden pixel stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> a poté klávesu šipky."
#. 7mm46
#: 04130100.xhp
@@ -16088,7 +16088,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Outline & List"
-msgstr ""
+msgstr "Osnova a seznam"
#. Nprja
#: 05030800.xhp
@@ -16097,7 +16097,7 @@ msgctxt ""
"hd_id3151173\n"
"help.text"
msgid "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering\">Outline & List</link></variable>"
-msgstr ""
+msgstr "<variable id=\"outlinelisth1\"><link href=\"text/swriter/01/05030800.xhp\" name=\"Osnova a seznam\">Osnova a seznam</link></variable>"
#. x3BNB
#: 05030800.xhp
@@ -16106,7 +16106,7 @@ msgctxt ""
"par_id3154100\n"
"help.text"
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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Přidá nebo odstraní úroveň osnovy, styl seznamu a číslování řádků z odstavce nebo stylu odstavce. Také můžete číslovaný seznam či číslování řádků restartovat nebo u něj změnit počáteční číslo.</ahelp>"
#. qNyVD
#: 05030800.xhp
@@ -16160,7 +16160,7 @@ msgctxt ""
"hd_id3143283\n"
"help.text"
msgid "Apply List Style"
-msgstr ""
+msgstr "Použít styl seznamu"
#. fFAFo
#: 05030800.xhp
@@ -16169,7 +16169,7 @@ msgctxt ""
"hd_id3154188\n"
"help.text"
msgid "List Style"
-msgstr ""
+msgstr "Styl seznamu"
#. T2yMF
#: 05030800.xhp
@@ -16178,7 +16178,7 @@ msgctxt ""
"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\">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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Vyberte <link href=\"text/swriter/01/05130004.xhp\" name=\"Styl seznamu\">styl seznamu</link>, který chcete na odstavec použít.</ahelp> Tyto styly se zobrazí také v okně <link href=\"text/swriter/01/05140000.xhp\" name=\"Styly\">Styly</link> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), pokud klepnete na ikonu <emph>Styly seznamu</emph>."
#. MycJD
#: 05030800.xhp
@@ -16196,7 +16196,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected list style.</ahelp> These properties will apply to all paragraphs formatted with the given list style."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Upravte vlastnosti vybraného stylu seznamu.</ahelp> Tyto vlastnosti se použijí na všechny odstavce formátované daným stylem seznamu."
#. dxBEA
#: 05030800.xhp
@@ -16205,7 +16205,7 @@ msgctxt ""
"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 format."
-msgstr ""
+msgstr "Pokud se používá číslování osnovy, je toto tlačítko vypnuto. V tom případě úroveň osnovy a styl číslování nastavíte volbou <emph>Nástroje - Číslování kapitol</emph>."
#. zBagB
#: 05030800.xhp
@@ -16214,7 +16214,7 @@ msgctxt ""
"par_id3151117\n"
"help.text"
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 ""
+msgstr "Úroveň osnovy a styl seznamu jsou na sobě nezávislé. Pomocí <emph>Nástroje - Číslování kapitol</emph> přiřadíte formát číslování stylům odstavce, které jsou použity jako nadpisy ve struktuře osnovy dokumentu."
#. 3KS2Y
#: 05030800.xhp
@@ -16232,7 +16232,7 @@ msgctxt ""
"hd_id3151250\n"
"help.text"
msgid "Restart numbering at this paragraph"
-msgstr ""
+msgstr "Restartovat na začátku tohoto odstavce"
#. Fqcca
#: 05030800.xhp
@@ -16358,7 +16358,7 @@ msgctxt ""
"par_id551616756044690\n"
"help.text"
msgid "The following buttons appear only for Paragraph Style."
-msgstr ""
+msgstr "Následující tlačítka se zobrazí pouze pro styl odstavce."
#. jAnkr
#: 05040000.xhp
@@ -17240,7 +17240,7 @@ msgctxt ""
"par_id3147092\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnotesendnotestabpage/ftnnumviewbox\" visibility=\"visible\">Select the numbering scheme for the footnotes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnotesendnotestabpage/ftnnumviewbox\" visibility=\"visible\">Vyberte schéma číslování pro poznámky pod čarou.</ahelp>"
#. 5BXNk
#: 05040700.xhp
@@ -17375,7 +17375,7 @@ msgctxt ""
"par_id3150123\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnotesendnotestabpage/endnumviewbox\" visibility=\"visible\">Select the numbering scheme for the endnotes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnotesendnotestabpage/endnumviewbox\" visibility=\"visible\">Vyberte schéma číslování pro vysvětlivky.</ahelp>"
#. sQDZt
#: 05040700.xhp
@@ -18158,7 +18158,7 @@ msgctxt ""
"par_id3153231\n"
"help.text"
msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Format - Align\"><emph>Format - Align Text</emph></link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Formát - Zarovnání textu\"><emph>Formát - Zarovnání textu</emph></link>"
#. eVmtB
#: 05060200.xhp
@@ -20759,7 +20759,7 @@ msgctxt ""
"par_id3154280\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptwidth\">Reduces or increases table width with modified column width.</ahelp> This option is not available if <emph>Automatic</emph> alignment or <emph>Relative</emph> width is selected on the <emph>Table </emph>tab, or if any table rows have been selected."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptwidth\">Zmenší nebo zvětší šířku tabulky podle toho, jak je upravena šířka sloupce.</ahelp> Tato volba není k dispozici, je-li na kartě <emph>Tabulka</emph> vybráno zarovnání <emph>Automaticky</emph> či je zaškrtnuta šířka <emph>Relativní</emph>, případně jsou-li některé řádky tabulky vybrány."
#. cUXBF
#: 05090200.xhp
@@ -20777,7 +20777,7 @@ msgctxt ""
"par_id3153530\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptcolumns\">Change all the other column widths by the same percentage as the one being changed.</ahelp> For example, if you reduce by half the size of a column, the sizes of all the other columns will be halved. This option requires that <emph>Adapt table width</emph> can be enabled."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tablecolumnpage/adaptcolumns\">Změní šířku všech ostatních sloupců procentuálně stejně jako šířku měněného sloupce.</ahelp> Jestliže například zmenšíte sloupec na polovinu, zmenší se na polovinu i velikosti ostatních sloupců. Pro tuto možnost je nutné, aby bylo povoleno <emph>Přizpůsobit šířku tabulky</emph>."
#. uFgLp
#: 05090200.xhp
@@ -22073,7 +22073,7 @@ msgctxt ""
"bm_id4005249\n"
"help.text"
msgid "<bookmark_value>styles;categories</bookmark_value><bookmark_value>character styles;style categories</bookmark_value><bookmark_value>paragraph styles;style categories</bookmark_value><bookmark_value>frames; styles</bookmark_value><bookmark_value>page styles;style categories</bookmark_value><bookmark_value>list styles;style categories</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>styly;kategorie</bookmark_value><bookmark_value>znakové styly;kategorie stylů</bookmark_value><bookmark_value>styly odstavce;kategorie stylů</bookmark_value><bookmark_value>rámce; styly</bookmark_value><bookmark_value>styly stránky;kategorie stylů</bookmark_value><bookmark_value>styly seznamu;kategorie stylů</bookmark_value>"
#. UwTh8
#: 05130000.xhp
@@ -22226,7 +22226,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Use List Styles to format ordered or unordered lists."
-msgstr ""
+msgstr "Pomocí stylů seznamu můžete formátovat seřazené a neseřazené seznamy."
#. 7BYTz
#: 05130000.xhp
@@ -22388,7 +22388,7 @@ msgctxt ""
"par_id3149568\n"
"help.text"
msgid "Displays formatting styles for ordered or unordered lists."
-msgstr ""
+msgstr "Zobrazuje styly pro formátování seřazených a neseřazených seznamů."
#. t7Gy3
#: 05130000.xhp
@@ -22505,7 +22505,7 @@ msgctxt ""
"par_id3154650\n"
"help.text"
msgid "Character styles provide a way to customize the formatting for individual characters. Use character styles to change the properties of a character, word or selected part of a paragraph. When you apply a character style to a text selection, the character style properties override the corresponding paragraph character properties."
-msgstr ""
+msgstr "Znakové styly umožňují přizpůsobit formátování jednotlivých znaků. Lze pomocí nich změnit vlastnosti znaku, slova či vybrané části odstavce. Použijete-li znakový styl na vybraný text, budou vlastnosti znaků odstavce přepsány odpovídajícími vlastnostmi znakového stylu."
#. 2RR59
#: 05130002.xhp
@@ -22514,7 +22514,7 @@ msgctxt ""
"par_id541610673006306\n"
"help.text"
msgid "For example, if you apply a character style with 15pt font size to a selection in a paragraph with character property of 12pt font size, the selection is set to 15pt, while the rest of the paragraph remains with 12pt font size."
-msgstr ""
+msgstr "Pokud například použijete znakový styl s velikostí písma 15 pt na výběr v odstavci s velikostí znaků 12 pt, velikost znaků výběru se změní na 15 pt, zatímco ve zbytku odstavce zůstane 12 pt."
#. STs3B
#: 05130002.xhp
@@ -22523,7 +22523,7 @@ msgctxt ""
"par_id751610803325140\n"
"help.text"
msgid "The <emph>Default Character Style</emph> is actually the set of character properties of the current paragraph style. Use the Default Character Style to reset the character properties of the selection to those of the paragraph style. You cannot customize the Default Character Style."
-msgstr ""
+msgstr "<emph>Výchozí znakový styl</emph> znamená, že se vlastnosti znaků nastaví na hodnoty z aktuálního stylu odstavce. Použitím tohoto stylu zajistíte, že se vlastnosti znaků výběru změní na vlastnosti určené stylem odstavce. Výchozí znakový styl není možné přizpůsobit."
#. KT4mr
#: 05130002.xhp
@@ -22532,7 +22532,7 @@ msgctxt ""
"par_id901610542787798\n"
"help.text"
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-msgstr ""
+msgstr "Přímé formátování přepíše jakékoliv formátování dané znakovým stylem. Příme formátování odstraníte z výběru pomocí <menuitem>Formát - Vymazat přímé formátování</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
#. 9DaEA
#: 05130002.xhp
@@ -22541,7 +22541,7 @@ msgctxt ""
"par_id701610668103877\n"
"help.text"
msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr ""
+msgstr "V části <emph>Obsahuje</emph> na kartě Organizátor se zobrazují vlastnosti znakového stylu."
#. VkwfE
#: 05130004.xhp
@@ -22550,7 +22550,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "List Style"
-msgstr ""
+msgstr "Styl seznamu"
#. VW3PN
#: 05130004.xhp
@@ -22559,7 +22559,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">List Style</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05130004.xhp\" name=\"Styl seznamu\">Styl seznamu</link>"
#. 3zB3P
#: 05130004.xhp
@@ -22568,7 +22568,7 @@ msgctxt ""
"par_id3149501\n"
"help.text"
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 ""
+msgstr "V tomto dialogovém okně můžete vytvořit nový styl seznamu. Tyto styly jsou organizovány v okně <link href=\"text/swriter/01/05140000.xhp\" name=\"Styly\">Styly</link>."
#. hVmyj
#: 05130004.xhp
@@ -22577,7 +22577,7 @@ msgctxt ""
"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 ""
+msgstr "Při vytvoření se stylu seznamu přiřadí název. Styl seznamu je možné použít na odstavce nebo jej lze v části Použít styl seznamu na kartě <link href=\"text/swriter/01/05030800.xhp\" name=\"Osnova a seznam\">Osnova a seznam</link> přiřadit stylu odstavce."
#. MU724
#: 05130004.xhp
@@ -22586,7 +22586,7 @@ msgctxt ""
"par_id3151390\n"
"help.text"
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 ""
+msgstr "Seřazené a neseřazené seznamy vytvořené v dialogovém okně <link href=\"text/shared/01/06050000.xhp\" name=\"Odrážky a číslování\">Odrážky a číslování</link> nebo pomocí ikon <link href=\"text/swriter/02/02110000.xhp\" name=\"Přepnout seřazený seznam\">Přepnout seřazený seznam</link> a <link href=\"text/shared/02/06120000.xhp\" name=\"Přepnout neseřazený seznam\">Přepnout neseřazený seznam</link> na liště <link href=\"text/swriter/main0202.xhp\" name=\"Lišta Formátování\">Formátování</link> používají <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"přímé formátování\">přímé formátování</link>. Nejedná se proto o styly seznamy."
#. UgisA
#: 05130100.xhp
@@ -22757,7 +22757,7 @@ msgctxt ""
"par_id3147530\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/conditionpage/links\">Here you can see the $[officename] predefined contexts, including outline levels 1 to 10, list levels 1 to 10, table header, table contents, section, border, footnote, header and footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/conditionpage/links\">Zde se zobrazují přednastavené kontexty $[officename], včetně deseti úrovní osnovy, deseti úrovní seznamu, záhlaví tabulky, obsahu tabulky, sekcí, ohraničení, vysvětlivek, záhlaví či zápatí.</ahelp>"
#. PdECE
#: 05130100.xhp
@@ -22910,7 +22910,7 @@ msgctxt ""
"par_id3147506\n"
"help.text"
msgid "<image id=\"img_id3147512\" src=\"sw/res/sf01.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147512\">Icon Paragraph Styles</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147512\" src=\"sw/res/sf01.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147512\">Ikona Styly seznamu</alt></image>"
#. EFWQb
#: 05140000.xhp
@@ -22937,7 +22937,7 @@ msgctxt ""
"par_id3151319\n"
"help.text"
msgid "<image id=\"img_id3152955\" src=\"sw/res/sf02.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152955\">Icon Character Styles</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152955\" src=\"sw/res/sf02.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152955\">Ikona Znakové styly</alt></image>"
#. s6xth
#: 05140000.xhp
@@ -23162,7 +23162,7 @@ msgctxt ""
"par_idN10A31\n"
"help.text"
msgid "<link href=\"text/swriter/01/05170000.xhp\" name=\"loadstyles\"><menuitem>Load Styles from Template</menuitem></link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05170000.xhp\" name=\"Načíst styly\"><menuitem>Načíst styly ze šablony</menuitem></link>"
#. 3LjT6
#: 05140000.xhp
@@ -23171,7 +23171,7 @@ msgctxt ""
"par_idN10A36\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Load Styles from Template dialog to import styles from another document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Otevře dialogové okno Načíst styly ze šablony, který umožňuje importovat styly z jiného dokumentu.</ahelp>"
#. FEpjX
#: 05140000.xhp
@@ -23324,7 +23324,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "While Typing (AutoCorrect)"
-msgstr ""
+msgstr "Při psaní (automatické opravy)"
#. B8ERP
#: 05150100.xhp
@@ -23333,7 +23333,7 @@ msgctxt ""
"bm_id531611675140517\n"
"help.text"
msgid "<bookmark_value>automatic heading formatting</bookmark_value><bookmark_value>AutoCorrect function;headings</bookmark_value><bookmark_value>headings;automatic</bookmark_value><bookmark_value>separator lines;AutoCorrect function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>automatické formátování nadpisu</bookmark_value><bookmark_value>automatické opravy;nadpisy</bookmark_value><bookmark_value>nadpisy;automatické</bookmark_value><bookmark_value>oddělovací čáry;automatické opravy</bookmark_value>"
#. KEGMD
#: 05150100.xhp
@@ -23342,7 +23342,7 @@ msgctxt ""
"hd_id3147436\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150100.xhp\" name=\"While Typing\">While Typing</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05150100.xhp\" name=\"Při psaní\">Při psaní</link>"
#. FArms
#: 05150100.xhp
@@ -23378,7 +23378,7 @@ msgctxt ""
"par_id3147404\n"
"help.text"
msgid "When you apply automatic formats, the following rules apply:"
-msgstr ""
+msgstr "Při použití automatického formátování platí následující pravidla:"
#. sQEKh
#: 05150100.xhp
@@ -23387,7 +23387,7 @@ msgctxt ""
"hd_id3155625\n"
"help.text"
msgid "AutoCorrect for Headings"
-msgstr ""
+msgstr "Automatické opravy pro nadpisy"
#. GKSGD
#: 05150100.xhp
@@ -23396,7 +23396,7 @@ msgctxt ""
"par_id3154505\n"
"help.text"
msgid "A paragraph is formatted as a heading when the following conditions are met:"
-msgstr ""
+msgstr "Odstavec se naformátuje jako nadpis, pokud splní tyto podmínky:"
#. NVdWw
#: 05150100.xhp
@@ -23405,7 +23405,7 @@ msgctxt ""
"par_id3145241\n"
"help.text"
msgid "paragraph begins with a capital letter"
-msgstr ""
+msgstr "odstavec začíná velkým písmenem"
#. ijChS
#: 05150100.xhp
@@ -23414,7 +23414,7 @@ msgctxt ""
"par_id3148386\n"
"help.text"
msgid "paragraph does not end with a punctuation mark"
-msgstr ""
+msgstr "odstavec nekončí tečkou"
#. enHRC
#: 05150100.xhp
@@ -23423,7 +23423,7 @@ msgctxt ""
"par_id3150564\n"
"help.text"
msgid "empty paragraph above and below the paragraph"
-msgstr ""
+msgstr "prázdný odstavec nad a pod odstavcem"
#. CZ7nk
#: 05150100.xhp
@@ -23432,7 +23432,7 @@ msgctxt ""
"hd_id3152941\n"
"help.text"
msgid "AutoCorrect for Separator Lines"
-msgstr ""
+msgstr "Automatické opravy pro oddělovací čáry"
#. rxk4h
#: 05150100.xhp
@@ -23441,7 +23441,7 @@ msgctxt ""
"par_id3154105\n"
"help.text"
msgid "If you type three or more hyphens (---), underscores (___) or equal signs (===) on line and then press Enter, the paragraph is replaced by a horizontal line as wide as the page. The line is actually the <link href=\"text/shared/01/05030500.xhp\" name=\"lower border\">lower border</link> of the preceding paragraph. The following rules apply:"
-msgstr ""
+msgstr "Pokud napíšete tři nebo více spojovníků (---), podtržítek (___) nebo rovnítek (===) na jeden řádek a stisknete Enter, odstavec se nahradí vodorovnou čárou o šířce stránky. Čára je ve skutečnosti <link href=\"text/shared/01/05030500.xhp\" name=\"dolní ohraničení\">dolní ohraničení</link> předchozího odstavce. Platí následující pravidla:"
#. oH5it
#: 05150100.xhp
@@ -23450,7 +23450,7 @@ msgctxt ""
"par_id3153530\n"
"help.text"
msgid "Three hyphens (-) yield a single line (0.05 pt thick, gap 0.75 mm)."
-msgstr ""
+msgstr "Tři spojovníky (-) představují jednoduchou čáru (tloušťka 0,05 pt, mezera 0,75 mm)."
#. sERfp
#: 05150100.xhp
@@ -23459,7 +23459,7 @@ msgctxt ""
"par_id3154477\n"
"help.text"
msgid "Three underscore (_) yield a single line (1 pt thick, gap 0.75 mm)."
-msgstr ""
+msgstr "Tři podtržítka (_) představují jednoduchou čáru (tloušťka 1 pt, mezera 0,75 mm)."
#. wAEup
#: 05150100.xhp
@@ -23468,7 +23468,7 @@ msgctxt ""
"par_id3150982\n"
"help.text"
msgid "Three equal signs (=) yield a double line (1.10 pt thick, gap 0.75 mm)."
-msgstr ""
+msgstr "Tři rovnítka (=) představují dvojitou čáru (tloušťka 1,10 pt, mezera 0,75 mm)."
#. ofrX8
#: 05150100.xhp
@@ -23819,7 +23819,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Apply (AutoCorrect)"
-msgstr ""
+msgstr "Použít (automatické opravy)"
#. pBtYE
#: 05150200.xhp
@@ -23828,7 +23828,7 @@ msgctxt ""
"bm_id5028839\n"
"help.text"
msgid "<bookmark_value>autocorrect;apply manually</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>automatické opravy;použít ručně</bookmark_value>"
#. bjjAk
#: 05150200.xhp
@@ -23846,7 +23846,7 @@ msgctxt ""
"par_id3149871\n"
"help.text"
msgid "<ahelp hid=\".uno:AutoFormatApply\">Automatically formats a document or a selection according to the options set in the AutoCorrect <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\"><emph>Options</emph></link> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:AutoFormatApply\">Automaticky naformátuje dokument nebo výběr podle možností nastavených na kartě <link href=\"text/shared/01/06040100.xhp\" name=\"Možnosti automatických oprav\"><emph>Možnosti</emph></link>.</ahelp>"
#. obCky
#: 05150200.xhp
@@ -23855,7 +23855,7 @@ msgctxt ""
"par_id791611674214928\n"
"help.text"
msgid "To select options, choose <menuitem>Tools - AutoCorrect - AutoCorrect Options</menuitem>, click the <emph>Options</emph> tab, then select options in the [M] column to be applied when the Apply command is chosen."
-msgstr ""
+msgstr "Chcete-li nastavit určité možnosti, zvolte <menuitem>Nástroje - Automatické opravy - Nastavení automatických oprav</menuitem>, klepněte na kartu <emph>Možnosti</emph> a ve sloupci [M] vyberte možnosti, které se mají uplatnit, je-li zvolen příkaz Použít."
#. szvnU
#: 05150200.xhp
@@ -23891,7 +23891,7 @@ msgctxt ""
"par_id3147507\n"
"help.text"
msgid "Automatic numbering is only applied to paragraphs formatted with the Default Paragraph Style, Text Body or Text Body Indent paragraph styles."
-msgstr ""
+msgstr "Automatické číslování se používá pouze pro odstavce formátované pomocí stylů Výchozí styl odstavce, Tělo textu nebo Odsazení těla textu."
#. HpTic
#: 05150300.xhp
@@ -24008,7 +24008,7 @@ msgctxt ""
"par_id3083446\n"
"help.text"
msgid "<variable id=\"styles_text\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"styles_text\"><ahelp hid=\".\">Importuje styly formátování z jiného dokumentu nebo šablony do aktuálního dokumentu.</ahelp></variable>"
#. uooXD
#: 05170000.xhp
@@ -24053,7 +24053,7 @@ msgctxt ""
"hd_id3148392\n"
"help.text"
msgid "Paragraph and Character"
-msgstr ""
+msgstr "Odstavce a znakové"
#. KrEE9
#: 05170000.xhp
@@ -24071,7 +24071,7 @@ msgctxt ""
"hd_id3153717\n"
"help.text"
msgid "Frame"
-msgstr "Rámec"
+msgstr "Rámce"
#. AyAQs
#: 05170000.xhp
@@ -24089,7 +24089,7 @@ msgctxt ""
"hd_id3147565\n"
"help.text"
msgid "Page"
-msgstr "Stránka"
+msgstr "Stránky"
#. AjBQj
#: 05170000.xhp
@@ -24107,7 +24107,7 @@ msgctxt ""
"hd_id3153147\n"
"help.text"
msgid "List"
-msgstr ""
+msgstr "Seznamu"
#. Gpytx
#: 05170000.xhp
@@ -24170,7 +24170,7 @@ msgctxt ""
"par_id121611051600253\n"
"help.text"
msgid "To save styles from a document as a template, use <emph>From File</emph> to load the styles to an empty document, then choose <menuitem>File - Templates - Save as Template</menuitem>."
-msgstr ""
+msgstr "Chcete-li uložit styly z dokumentu jako šablonu, načtěte tyto styly pomocí <emph>Ze souboru</emph> do prázdného dokumentu a poté zvolte <menuitem>Soubor - Šablony - Uložit jako šablonu</menuitem>."
#. xjekF
#: 05190000.xhp
@@ -24629,7 +24629,7 @@ msgctxt ""
"hd_id3154561\n"
"help.text"
msgid "<variable id=\"ChapNumh1\"><link href=\"text/swriter/01/06060000.xhp\">Chapter Numbering</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ChapNumh1\"><link href=\"text/swriter/01/06060000.xhp\">Číslování kapitol</link></variable>"
#. bAdVd
#: 06060000.xhp
@@ -24638,7 +24638,7 @@ msgctxt ""
"par_id3145246\n"
"help.text"
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 ""
+msgstr "<variable id=\"kapnum\"><ahelp hid=\".uno:ChapterNumberingDialog\">Určuje schéma číslování a formát osnovy pro číslování kapitol v aktuálním dokumentu.</ahelp></variable>"
#. PKJax
#: 06060000.xhp
@@ -24647,7 +24647,7 @@ msgctxt ""
"par_id3150934\n"
"help.text"
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 ""
+msgstr "Číslování kapitol je zajištěno tím, že úrovně osnovy mají přiřazeny styly odstavce a schémata číslování. Ve výchozím nastavení jsou styly \"Nadpis (1-10)\" přiřazeny k odpovídajícím úrovním osnovy (1-10). V tomto dialogovém okně můžete přiřadit úrovním osnovy různé styly odstavce."
#. DpAKZ
#: 06060000.xhp
@@ -24656,7 +24656,7 @@ msgctxt ""
"par_id8237250\n"
"help.text"
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 ""
+msgstr "<variable id=\"chapter_numbering_tip\">Pokud chcete číslované nadpisy, zvolte <menuitem>Nástroje - </menuitem><link name=\"Číslování kapitol\" href=\"text/swriter/01/06060000.xhp#ChapNumh1\"><menuitem>Číslování kapitol</menuitem></link>. Tímto příkazem otevřete dialogové okno, v němž můžete stylům odstavce použitým pro nadpisy přiřadit schémata číslování. Nepoužívejte ikonu <link href=\"text/swriter/02/02110000.xhp\" name=\"Přepnout seřazený seznam\">Přepnout seřazený seznam</link> na liště <link href=\"text/swriter/main0202.xhp\" name=\"Lišta Formátování\">liště Formátování</link> ani dialogové okno <menuitem>Formát - </menuitem><link href=\"text/shared/01/06050000.xhp\" name=\"Odrážky a číslování\"><menuitem>Odrážky a číslování</menuitem></link>.</variable>"
#. DFbiG
#: 06060000.xhp
@@ -24674,7 +24674,7 @@ msgctxt ""
"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 load into other text documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/user\">Uloží či načte formát číslování kapitol. Uložené formáty číslování kapitol je možné načíst v jiných textových dokumentech.</ahelp>"
#. DkYUj
#: 06060000.xhp
@@ -24683,7 +24683,7 @@ msgctxt ""
"par_id3150979\n"
"help.text"
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 ""
+msgstr "Tlačítko <widget>Načíst/Uložit</widget> je k dispozici pouze pro číslování kapitol. Chcete-li uložit formátování seřazeného či neseřazeného seznamu, použijte k tomu jeho styl."
#. EV2DT
#: 06060000.xhp
@@ -24701,7 +24701,7 @@ msgctxt ""
"par_id3150350\n"
"help.text"
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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/form1\">Vyberte přednastavený formát číslování.</ahelp> Vlastní přednastavené formáty číslování uložíte pomocí <emph>Uložit jako</emph>."
#. NoHGV
#: 06060000.xhp
@@ -24719,7 +24719,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumbering/saveas\">Otevře dialogové okno, ve kterém můžete uložit aktuální nastavení číslování a umístění pro všechny úrovně. Uložená nastavení je možné načíst v jiných dokumentech.</ahelp>"
#. G9Fz2
#: 06060100.xhp
@@ -24764,7 +24764,7 @@ msgctxt ""
"par_id3150018\n"
"help.text"
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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/level\">Klepněte na úroveň osnovy, kterou chcete upravit, a poté nastavte číslování pro tuto úroveň.</ahelp> Chcete-li nastavit číslování, kromě stylu odstavce, všem úrovním, klepněte na „1-10“."
#. s4LDs
#: 06060100.xhp
@@ -24800,7 +24800,7 @@ msgctxt ""
"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 outline level.</ahelp> If you click \"None\", the selected outline level is not defined."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/style\">Vyberte styl odstavce, který chcete přiřadit vybrané úrovni osnovy.</ahelp> Pokud klepnete na „Žádný“, vybraná úroveň osnovy nebude určena."
#. 2Ko3X
#: 06060100.xhp
@@ -24818,7 +24818,7 @@ msgctxt ""
"par_id3156319\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Select the numbering scheme that you want to apply to the selected outline level.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/numbering\">Vyberte schéma číslování, které chcete použít pro zvolenou úroveň osnovy.</ahelp>"
#. uCj2F
#: 06060100.xhp
@@ -24998,7 +24998,7 @@ msgctxt ""
"par_id3147224\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Select the character style of the numbering character.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinenumberingpage/charstyle\">Vyberte znakový styl pro znak číslování.</ahelp>"
#. bkGnf
#: 06060100.xhp
@@ -25160,7 +25160,7 @@ msgctxt ""
"par_id3150568\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnotepage/numberinglb\">Select the numbering scheme that you want to use.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnotepage/numberinglb\">Vyberte požadované schéma číslování.</ahelp>"
#. cqBBB
#: 06080100.xhp
@@ -25439,7 +25439,7 @@ msgctxt ""
"par_id334242345\n"
"help.text"
msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style <emph>Footnote</emph>. Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open <emph>Styles</emph> dialog and select <emph>Footnote</emph> from the list of paragraph styles. Open the local menu with right click and choose <emph>Modify</emph>. Go to the <emph>Indents & Spacing</emph> tab page and set indent to 0 before and after the paragraph, including the first line. On <emph>Tabs</emph> tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in <emph>Footnotes/Endnotes Settings</emph> dialog enter <item type=\"input\">\\t</item> into the <emph>Before</emph> and <emph>After</emph> edit boxes."
-msgstr ""
+msgstr "Čísla poznámek pod čarou jsou ve výchozím nastavení zarovnána vlevo. Pro nastavení zarovnání vpravo nejprve upravte styl odstavce <emph>Poznámka pod čarou</emph>. Stisknutím <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> otevřete okno <emph>Styly</emph> a ze seznamu stylů odstavce vyberte <emph>Poznámka pod čarou</emph>. Pravým klepnutím otevřete místní nabídku a zvolte <emph>Upravit</emph>. Na kartě <emph>Odsazení a rozestupy</emph> nastavte odsazení na 0 před a za odstavcem včetně prvního řádku. Na kartě <emph>Tabulátory</emph> vytvořte tabulátor typu vpravo na 12 pt a tabulátor typu vlevo na 14 pt. V dialogovém okně <emph>Nastavení poznámek pod čarou / vysvětlivek</emph> zadejte <item type=\"input\">\\t</item> do polí <emph>Před</emph> a <emph>Za</emph>."
#. s8xS8
#: 06080100.xhp
@@ -25520,7 +25520,7 @@ msgctxt ""
"par_id3150695\n"
"help.text"
msgid "To ensure a uniform appearance for the footnotes in your document, assign a paragraph style to the footnote text, and assign character styles to the footnote anchor number and the number in the footnote area."
-msgstr ""
+msgstr "Abyste zajistili jednotný vzhled poznámek pod čarou v celém dokumentu, přiřaďte styl odstavce textu poznámky a znakové styly ukotvení poznámky a číslu v oblasti poznámky pod čarou."
#. srKcC
#: 06080100.xhp
@@ -25754,7 +25754,7 @@ msgctxt ""
"par_id3150970\n"
"help.text"
msgid "To ensure a uniform appearance for the endnotes in your document, assign a paragraph style, and assign character styles to the endnote anchor number and the number in the endnote area."
-msgstr ""
+msgstr "Abyste zajistili jednotný vzhled vysvětlivek v celém dokumentu, přiřaďte styl odstavce vysvětlivce a znakové styly číslu ukotvení vysvětlivky a číslu v oblasti vysvětlivek."
#. TGC8v
#: 06080200.xhp
@@ -26609,7 +26609,7 @@ msgctxt ""
"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 <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 ""
+msgstr "<variable id=\"zeinum\">Přidá, odstraní či změní formát čísla řádku v aktuálním dokumentu. Pokud chcete vyjmout odstavec z číslování, zvolte <menuitem>Formát - Odstavec</menuitem>, klepněte na kartu <emph>Osnova a seznam </emph> a poté zrušte zaškrtnutí pole <emph>Zahrnout tento odstavec do číslování řádků</emph>.</variable> Styl odstavce můžete také vyjmout."
#. GcdFF
#: 06180000.xhp
@@ -26690,7 +26690,7 @@ msgctxt ""
"par_id3145246\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/linenumbering/formatdropdown\">Select the numbering scheme that you want to use.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/linenumbering/formatdropdown\">Vyberte požadované schéma číslování.</ahelp>"
#. yAovb
#: 06180000.xhp
@@ -27086,7 +27086,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Text Box and Shape"
-msgstr ""
+msgstr "Textové pole a tvar"
#. 5XTkz
#: format_object.xhp
@@ -27095,7 +27095,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<link href=\"text/swriter/01/format_object.xhp\">Text Box and Shape</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/format_object.xhp\">Textové pole a tvar</link>"
#. RfLw2
#: format_object.xhp
@@ -27104,7 +27104,7 @@ msgctxt ""
"par_idN10558\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected textbox or shape.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Otevře podnabídku s možností úprav vlastností vybraného textového pole nebo tvaru.</ahelp>"
#. UWnvc
#: format_object.xhp
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Vyberte položku ze seznamu a klepněte na tlačítko se šipkou pro její posun.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mailová zpráva"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mailová zpráva"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,14 +28924,14 @@ msgctxt ""
msgid "Properties"
msgstr "Vlastnosti"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\">Otevře dialogové okno <link href=\"text/swriter/01/mm_emabod.xhp\">E-mailová zpráva</link>, kde můžete zadat e-mailovou zprávu pro soubory hromadné korespondence, které se pošlou jako přílohy.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
@@ -30128,7 +30128,7 @@ msgctxt ""
"bm_id141603814665942\n"
"help.text"
msgid "<bookmark_value>outline content visibility;enabling</bookmark_value><bookmark_value>show;outline content</bookmark_value><bookmark_value>hide;outline content</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>viditelnost obsahu osnovy;povolení</bookmark_value><bookmark_value>zobrazit;obsah osnovy</bookmark_value><bookmark_value>skrýt;obsah osnovy</bookmark_value>"
#. JDacS
#: outlinecontent_visibility.xhp
@@ -30155,7 +30155,7 @@ msgctxt ""
"par_id151606158601951\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer/Web) - View</menuitem>, and select the <emph>Show outline content visibility</emph> checkbox."
-msgstr ""
+msgstr "Zvolte <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Předvolby</menuitem></caseinline><defaultinline><menuitem>Nástroje - Možnosti</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME Writer/Web) - Zobrazení</menuitem> a zaškrtněte pole <emph>Zobrazit viditelnost obsahu osnovy</emph>."
#. GEQ7d
#: outlinecontent_visibility.xhp
@@ -30164,7 +30164,7 @@ msgctxt ""
"par_id431603592299868\n"
"help.text"
msgid "Open the Navigator (<keycode>F5</keycode>) and display the <emph>Headings</emph> entry."
-msgstr ""
+msgstr "Otevřete Navigátor (<keycode>F5</keycode>) a zobrazte položku <emph>Nadpisy</emph>."
#. 9yHgE
#: outlinecontent_visibility.xhp
@@ -30173,7 +30173,7 @@ msgctxt ""
"par_id801603592797580\n"
"help.text"
msgid "Hover the mouse on a heading."
-msgstr ""
+msgstr "Najeďte myší na nadpis."
#. FpvEa
#: outlinecontent_visibility.xhp
@@ -30182,7 +30182,7 @@ msgctxt ""
"par_id401603902789914\n"
"help.text"
msgid "Use this feature to selectively hide and show contents under all paragraphs that have a non-zero outline level, usually headings. In large documents, it allows to quickly scroll to the right position for editing and reading."
-msgstr ""
+msgstr "Pomocí této vlastnosti můžete skrývat a zobrazovat obsah jednotlivých odstavců, které mají nenulovou úroveň osnovy, obvykle jde o nadpisy. V rozsáhlých dokumentech tak lze rychle přecházet na požadovaná místa."
#. htuiH
#: outlinecontent_visibility.xhp
@@ -30191,7 +30191,7 @@ msgctxt ""
"bm_id711604659189386\n"
"help.text"
msgid "<bookmark_value>navigator;outline content visibility</bookmark_value><bookmark_value>outline content visibility;with Navigator</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Navigátor;viditelnost obsahu osnovy</bookmark_value><bookmark_value>viditelnost obsahu osnovy;pomocí Navigátoru</bookmark_value>"
#. xVBGd
#: outlinecontent_visibility.xhp
@@ -30209,7 +30209,7 @@ msgctxt ""
"par_id161603902590811\n"
"help.text"
msgid "All outline visibility commands in the navigator are shown in the context menu of the <emph>Headings</emph> entries. Open the context menu of a heading and choose <menuitem>Outline Content Visibility</menuitem>."
-msgstr ""
+msgstr "V Navigátoru se všechny příkazy pro viditelnost osnovy zobrazují v místní nabídce pro položky kategorie <emph>Nadpisy</emph>. Otevřete místní nabídku pro vybranou položku a zvolte <menuitem>Viditelnost obsahu osnovy</menuitem>."
#. qAiBQ
#: outlinecontent_visibility.xhp
@@ -30236,7 +30236,7 @@ msgctxt ""
"hd_id111603594832364\n"
"help.text"
msgid "Hide contents for all headings"
-msgstr ""
+msgstr "Skrýt obsah pro všechny nadpisy"
#. wZqh3
#: outlinecontent_visibility.xhp
@@ -30245,7 +30245,7 @@ msgctxt ""
"par_id171603594868435\n"
"help.text"
msgid "Hides all contents for the selected heading and its sub-headings. Sibling outline headings with same level are not hidden. If applied on the main Headings entry of the navigator, only the document headings are displayed."
-msgstr ""
+msgstr "Skryje veškerý obsah pro vybraný nadpis a jeho podnadpisy. Ostatní nadpisy se stejnou úrovní osnovy se neskryjí. Použijete-li tento příkaz na hlavní položku Nadpisy, zobrazí se pouze nadpisy dokumentu."
#. YzYYt
#: outlinecontent_visibility.xhp
@@ -30263,7 +30263,7 @@ msgctxt ""
"par_id431603902342365\n"
"help.text"
msgid "Headings and its sub-headings contents are displayed in the document area. If applied on the main Headings entry of the navigator, the document is displayed in full."
-msgstr ""
+msgstr "V oblasti dokumentu se zobrazí nadpisy a jejich podnadpisy. Použijete-li tento příkaz na hlavní položku Nadpisy, zobrazí se úplný dokument."
#. bX2nw
#: outlinecontent_visibility.xhp
@@ -30272,7 +30272,7 @@ msgctxt ""
"hd_id651606162136531\n"
"help.text"
msgid "Toggle"
-msgstr ""
+msgstr "Přepnout"
#. gbNYe
#: outlinecontent_visibility.xhp
@@ -30281,7 +30281,7 @@ msgctxt ""
"par_id501606162132255\n"
"help.text"
msgid "Toggles the outline visibility of the selected item."
-msgstr ""
+msgstr "Přepne viditelnost osnovy pro vybranou položku."
#. VDmQR
#: outlinecontent_visibility.xhp
@@ -30290,7 +30290,7 @@ msgctxt ""
"bm_id861604659229058\n"
"help.text"
msgid "<bookmark_value>outline content visibility;with mouse</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>viditelnost obsahu osnovy;pomocí myši</bookmark_value>"
#. QG5q9
#: outlinecontent_visibility.xhp
@@ -30299,7 +30299,7 @@ msgctxt ""
"hd_id961603593527184\n"
"help.text"
msgid "Using Outline Content Visibility with the Mouse"
-msgstr ""
+msgstr "Použití viditelnosti obsahu osnovy pomocí myši"
#. trciq
#: outlinecontent_visibility.xhp
@@ -30317,7 +30317,7 @@ msgctxt ""
"par_id331603591793655\n"
"help.text"
msgid "Press the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key and place the mouse over a heading. An arrow in left margin gives a visual cue."
-msgstr ""
+msgstr "Stiskněte klávesu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a najeďte ukazatelem myši nad nadpis. Zobrazí se při tom šipka v levém okraji."
#. FRtMg
#: outlinecontent_visibility.xhp
@@ -30335,7 +30335,7 @@ msgctxt ""
"par_id451603594434731\n"
"help.text"
msgid "Click to toggle visibility of content from selected heading to next heading."
-msgstr ""
+msgstr "Klepnutím přepnete viditelnost obsahu od vybraného nadpisu po následující."
#. LyTVD
#: outlinecontent_visibility.xhp
@@ -30344,7 +30344,7 @@ msgctxt ""
"par_id71603594448708\n"
"help.text"
msgid "Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level."
-msgstr ""
+msgstr "Klepnutím pravým tlačítkem zobrazíte nebo skryjete veškerý obsah od vybraného nadpisu (a všech jeho podnadpisů) až po následující nadpis stejné úrovně osnovy."
#. bhurB
#: outlinecontent_visibility.xhp
@@ -30362,7 +30362,7 @@ msgctxt ""
"par_id541604366257774\n"
"help.text"
msgid "Place mouse in left margin next to a heading. An arrow appears if content is shown."
-msgstr ""
+msgstr "Umístěte ukazatel myši do levého okraje poblíž nadpisu. Je-li obsah zobrazen, objeví se šipka."
#. AB24w
#: outlinecontent_visibility.xhp
@@ -30371,7 +30371,7 @@ msgctxt ""
"par_id451603594341994\n"
"help.text"
msgid "A down arrow indicates the heading and its contents are visible."
-msgstr ""
+msgstr "Šipka dolů značí, že se nadpis a jeho obsah zobrazují."
#. s4CEQ
#: outlinecontent_visibility.xhp
@@ -30380,7 +30380,7 @@ msgctxt ""
"par_id71603594662394\n"
"help.text"
msgid "A left arrow indicates the heading has hidden contents."
-msgstr ""
+msgstr "Šipka vlevo značí, že je obsah nadpisu skrytý."
#. 8P7CA
#: outlinecontent_visibility.xhp
@@ -30389,7 +30389,7 @@ msgctxt ""
"hd_id81604416400633\n"
"help.text"
msgid "Saving Document Outline Visibility State"
-msgstr ""
+msgstr "Ukládání viditelnosti obsahu osnovy dokumentu"
#. Ee53D
#: outlinecontent_visibility.xhp
@@ -30398,7 +30398,7 @@ msgctxt ""
"par_id101604416417417\n"
"help.text"
msgid "Documents saved in Open Document Format (.odt) will retain the current settings of hidden and shown contents at time of the save command."
-msgstr ""
+msgstr "V dokumentech uložených ve formátu Open Document (.odt) se zachová takové nastavení skrytého a zobrazeného obsahu, jaké bylo v čase uložení."
#. 7XoVB
#: outlinecontent_visibility.xhp
@@ -30407,7 +30407,7 @@ msgctxt ""
"par_id261606163563654\n"
"help.text"
msgid "The document contents are not affected by the visibility settings."
-msgstr ""
+msgstr "Nastavení viditelnosti nemá vliv na obsah dokumentu."
#. B5Ffz
#: outlinecontent_visibility.xhp
@@ -30416,7 +30416,7 @@ msgctxt ""
"hd_id371606166467814\n"
"help.text"
msgid "Printing and exporting to PDF with Outline Visibility Contents"
-msgstr ""
+msgstr "Tisk a exportování do PDF s viditelností obsahu osnovy"
#. 5kaWd
#: outlinecontent_visibility.xhp
@@ -30425,7 +30425,7 @@ msgctxt ""
"par_id821606166528569\n"
"help.text"
msgid "To print or to export the full document, set the outline visibility to <emph>Show All</emph> beforehand."
-msgstr ""
+msgstr "Aby se vytiskl či exportoval celý dokument, nastavte viditelnost osnovy na <emph>Zobrazit vše</emph>."
#. BArGY
#: outlinecontent_visibility.xhp
@@ -30434,7 +30434,7 @@ msgctxt ""
"par_id391606166521548\n"
"help.text"
msgid "Hidden outline contents will <emph>not</emph> be printed or exported to PDF."
-msgstr ""
+msgstr "Skrytý obsah osnovy se <emph>nebude</emph> tisknout ani exportovat do PDF."
#. RQvTc
#: outlinecontent_visibility.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/02.po b/source/cs/helpcontent2/source/text/swriter/02.po
index 4bcfdf758bb..d0c99d20367 100644
--- a/source/cs/helpcontent2/source/text/swriter/02.po
+++ b/source/cs/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-24 12:36+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1534621522.000000\n"
#. sqxGb
@@ -869,7 +869,7 @@ msgctxt ""
"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 - Paragraph - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
-msgstr ""
+msgstr "Chcete-li číslování restartovat od čísla většího než 1, klepněte pravým tlačítkem na odstavec, v němž má nové číslování začínat. Zvolte kartu <menuitem>Odstavec - Odstavec - </menuitem><embedvar href=\"textswriter/01/05030800.xhp#outlinelisth1\"/>, vyberte <menuitem>Restartovat číslování na začátku tohoto odstavce</menuitem> a v poli <menuitem>Začít číslem</menuitem> zadejte počáteční číslo."
#. qCdhk
#: 08010000.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/guide.po b/source/cs/helpcontent2/source/text/swriter/guide.po
index b470d6bb412..ffd35ea718c 100644
--- a/source/cs/helpcontent2/source/text/swriter/guide.po
+++ b/source/cs/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-28 08:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/cs/>\n"
"Language: cs\n"
@@ -619,14 +619,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Vypnutí psaní velkého prvního písmena věty"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Zvolte <menuitem>Nástroje - Automatické opravy - Nastavení automatických oprav</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
@@ -9563,7 +9563,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the List Level of a List Paragraph"
-msgstr ""
+msgstr "Změna úrovně odstavce seznamu"
#. NDiP8
#: insert_tab_innumbering.xhp
@@ -9581,7 +9581,7 @@ msgctxt ""
"hd_id3145078\n"
"help.text"
msgid "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the List Level of a List Paragraph</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Změna úrovně odstavce seznamu\">Změna úrovně odstavce seznamu</link></variable>"
#. epGvP
#: insert_tab_innumbering.xhp
@@ -9590,7 +9590,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph down one list level, click at the beginning of the paragraph, and then press <keycode>Tab</keycode>."
-msgstr ""
+msgstr "Chcete-li posunout odstavec číslovaného nebo odrážkového seznamu o jednu úroveň níže, klepněte na začátek odstavce a stiskněte klávesu <keycode>Tab</keycode>."
#. 9onR5
#: insert_tab_innumbering.xhp
@@ -9599,7 +9599,7 @@ msgctxt ""
"par_id3155859\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph up one list level, click at the beginning of the paragraph, and then press <keycode>Shift+Tab</keycode>."
-msgstr ""
+msgstr "Chcete-li posunout odstavec číslovaného nebo odrážkového seznamu o jednu úroveň výše, klepněte na začátek odstavce a stiskněte <keycode>Shift+Tab</keycode>."
#. A6CtC
#: insert_tab_innumbering.xhp
@@ -10355,7 +10355,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>čísla; automatické rozpoznávání v tabulkách v textu</bookmark_value><bookmark_value>tabulky; automatické rozpoznávání</bookmark_value><bookmark_value>tabulky;formátování data</bookmark_value><bookmark_value>buňky tabulky;formátování data</bookmark_value><bookmark_value>data;automatické formátování v tabulkách</bookmark_value><bookmark_value>rozpoznávání;čísla</bookmark_value>"
#. aahB7
#: number_date_conv.xhp
@@ -10373,7 +10373,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] umožňuje automaticky rozpoznávat čísla nebo data, která vložíte do buňky tabulky, a převádět je z textu na odpovídající formát čísla. Zobrazení zadané hodnoty změníte volbou <menuitem>Tabulka - Formát čísla</menuitem>."
#. 8WZDL
#: number_date_conv.xhp
@@ -10382,7 +10382,7 @@ msgctxt ""
"par_id3149966\n"
"help.text"
msgid "To enable or disable this feature, do one of the following:"
-msgstr ""
+msgstr "Chcete-li tuto vlastnost povolit nebo zakázat, proveďte jednu z následujících možností:"
#. FQ5iR
#: number_date_conv.xhp
@@ -10391,7 +10391,7 @@ msgctxt ""
"par_id3155919\n"
"help.text"
msgid "Choose <menuitem>Table - Number Recognition</menuitem>."
-msgstr ""
+msgstr "Zvolte <menuitem>Tabulka - Rozpoznávání čísel</menuitem>."
#. EX3eD
#: number_date_conv.xhp
@@ -10400,7 +10400,7 @@ msgctxt ""
"par_id531605970858214\n"
"help.text"
msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number Recognition</menuitem> command."
-msgstr ""
+msgstr "Je-li tato vlastnost zapnuta, před příkazem <menuitem>Rozpoznávání čísel</menuitem> se zobrazuje značka zaškrtnutí."
#. D6uyv
#: number_date_conv.xhp
@@ -10409,7 +10409,7 @@ msgctxt ""
"par_id3155527\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Table</menuitem>, and select or clear the <menuitem>Number Recognition</menuitem> check box."
-msgstr ""
+msgstr "Zvolte <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Předvolby</caseinline><defaultinline>Nástroje - Možnosti</defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Tabulka</menuitem> a zaškrtněte nebo zrušte zaškrtnutí pole <menuitem>Rozpoznání čísel</menuitem>."
#. yrwEE
#: number_date_conv.xhp
@@ -10418,7 +10418,7 @@ msgctxt ""
"par_id781605970689063\n"
"help.text"
msgid "This feature applies globally to all tables in all documents. When enabled, typing a date or number into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting."
-msgstr ""
+msgstr "Tato vlastnost se používá globálně, ve všech tabulkách a dokumentech. Je-li zapnuta a napíšete-li do buňky tabulky datum nebo číslo, automaticky bude zformátováno. Pokud ji zapnete či vypnete, stávájící formátování dat se tím nezmění."
#. gsMre
#: number_date_conv.xhp
@@ -10679,7 +10679,7 @@ msgctxt ""
"par_id3150931\n"
"help.text"
msgid "Click the <emph>Outline & List</emph> tab."
-msgstr ""
+msgstr "Klepněte na kartu <emph>Osnova a seznam</emph>"
#. kfFgy
#: numbering_lines.xhp
@@ -10769,7 +10769,7 @@ msgctxt ""
"par_id3150721\n"
"help.text"
msgid "Choose <menuitem>Format - Paragraph</menuitem>, and then click the <menuitem>Outline & List</menuitem> tab."
-msgstr ""
+msgstr "Zvolte <menuitem>Formát - Odstavec</menuitem> a poté klepněte na kartu <menuitem>Osnova a seznam</menuitem>."
#. DB5Bp
#: numbering_lines.xhp
@@ -10823,7 +10823,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "Format - Paragraph - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
-msgstr ""
+msgstr "Formát - Odstavec - <embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>"
#. foq8S
#: numbering_lines.xhp
@@ -10841,7 +10841,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Modifying Numbering in an Ordered List"
-msgstr ""
+msgstr "Změna číslování v seřazeném seznamu"
#. CZCFE
#: numbering_paras.xhp
@@ -10859,7 +10859,7 @@ msgctxt ""
"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 an Ordered List</link></variable>"
-msgstr ""
+msgstr "<variable id=\"numbering_paras\"><link href=\"text/swriter/guide/numbering_paras.xhp\" name=\"Změna číslování v seřazeném seznamu\">Změna číslování v seřazeném seznamu</link></variable>"
#. eP9Ei
#: numbering_paras.xhp
@@ -10868,7 +10868,7 @@ msgctxt ""
"par_id3145092\n"
"help.text"
msgid "You can remove the numbering from a paragraph in an ordered list or change the number that an ordered list starts with."
-msgstr ""
+msgstr "V odstavci seřazeného seznamu je možné odebrat číslování nebo změnit číslo, od kterého číslování začíná."
#. o2d3C
#: numbering_paras.xhp
@@ -10877,7 +10877,7 @@ msgctxt ""
"hd_id3145107\n"
"help.text"
msgid "To Remove the Number From a Paragraph in an Ordered List"
-msgstr ""
+msgstr "Odstranění čísla odstavce v seřazeném seznamu"
#. Bdddz
#: numbering_paras.xhp
@@ -10913,7 +10913,7 @@ msgctxt ""
"par_id3154248\n"
"help.text"
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 ""
+msgstr "Chcete-li odstranit číslo a odsazení odstavce, klepněte na ikonu <emph>Bez seznamu</emph> na liště <emph>Formátování</emph>. Pokud uložíte dokument ve formátu HTML, pro číslovaný odstavec, který následuje za aktuálním odstavcem, se vytvoří samostatný číslovaný seznam."
#. 4sN9H
#: numbering_paras.xhp
@@ -10922,7 +10922,7 @@ msgctxt ""
"hd_id3154856\n"
"help.text"
msgid "To Change the Number That an Ordered List Starts With"
-msgstr ""
+msgstr "Změna čísla, kterým začíná seřazený seznam"
#. rgBxU
#: numbering_paras.xhp
@@ -10931,7 +10931,7 @@ msgctxt ""
"par_id3155877\n"
"help.text"
msgid "Click anywhere in the ordered list."
-msgstr ""
+msgstr "Klepněte kamkoliv do seřazeného seznamu."
#. Nkqj8
#: numbering_paras.xhp
@@ -11021,7 +11021,7 @@ msgctxt ""
"par_id3153119\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>."
-msgstr ""
+msgstr "Stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>."
#. avK6Q
#: page_break.xhp
@@ -11147,7 +11147,7 @@ msgctxt ""
"par_idN10827\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>."
-msgstr ""
+msgstr "Zvolte <menuitem>Zobrazit - Styly</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline>."
#. ER3fT
#: pagebackground.xhp
@@ -11255,7 +11255,7 @@ msgctxt ""
"par_idN10892\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>."
-msgstr ""
+msgstr "Zvolte <menuitem>Zobrazit - Styly</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline>."
#. Pr9iF
#: pagebackground.xhp
@@ -12011,7 +12011,7 @@ msgctxt ""
"par_id2118594\n"
"help.text"
msgid "To insert a manual page break at the cursor position, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode> or choose <menuitem>Insert - Manual Break</menuitem> and just click OK."
-msgstr ""
+msgstr "Chcete-li vložit ruční zalomení stránky na pozici kurzoru, stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode> nebo zvolte <menuitem>Vložit - Ruční zalomení</menuitem> a klepněte na OK."
#. pj4B8
#: pageorientation.xhp
@@ -12101,7 +12101,7 @@ msgctxt ""
"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> <bookmark_value>overriding next style;for pages</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>styly stránky;vytváření a používání</bookmark_value> <bookmark_value>definování;styly stránky</bookmark_value> <bookmark_value>styly;pro stránky</bookmark_value><bookmark_value>přepsání dalšího stylu;pro stránky</bookmark_value>"
#. MM4EQ
#: pagestyles.xhp
@@ -12227,7 +12227,7 @@ msgctxt ""
"par_id471615462517274\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Proveďte jednu z následujících možností:"
#. GC7eD
#: pagestyles.xhp
@@ -12254,7 +12254,7 @@ msgctxt ""
"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 ""
+msgstr "Klepněte pravým tlačítkem na styl stránky zobrazený ve <link href=\"text/shared/01/03060000\" name=\"Stavový řádek\">stavovém řádku</link>. Vyberte jiný styl stránky."
#. ombta
#: pagestyles.xhp
@@ -12263,7 +12263,7 @@ msgctxt ""
"hd_id181615419889677\n"
"help.text"
msgid "To Manually Override the “Next style” of a Page Style"
-msgstr ""
+msgstr "Ruční přepsání volby „Další styl“ pro styl stránky"
#. mX6AF
#: pagestyles.xhp
@@ -12272,7 +12272,7 @@ msgctxt ""
"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 ""
+msgstr "Umístěte kurzor mezi stránku s určitým stylem stránky a stránku se stylem zadaným v poli <emph>Další styl</emph>."
#. V4dVd
#: pagestyles.xhp
@@ -12281,7 +12281,7 @@ msgctxt ""
"par_id301615420000676\n"
"help.text"
msgid "Right-click and choose <menuitem>Edit Page Break</menuitem>."
-msgstr ""
+msgstr "Klepněte pravým tlačítkem a zvolte <menuitem>Upravit zalomení stránky</menuitem>."
#. rsZHm
#: pagestyles.xhp
@@ -12290,7 +12290,7 @@ msgctxt ""
"par_id271615420006519\n"
"help.text"
msgid "Select the <emph>With page style</emph> checkbox."
-msgstr ""
+msgstr "Zaškrtněte pole <emph>Se stylem stránky</emph>."
#. wdCZW
#: pagestyles.xhp
@@ -12299,7 +12299,7 @@ msgctxt ""
"par_id601615420013170\n"
"help.text"
msgid "Enter the page style to be applied."
-msgstr ""
+msgstr "Zadejte styl stránky, který se má použít."
#. Fcn83
#: pagestyles.xhp
@@ -12308,7 +12308,7 @@ msgctxt ""
"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 ""
+msgstr "Viz také <link href=\"text/swriter/guide/pageorientation.xhp#scope\" name=\"Další styl\">Ruční určení rozsahu stylu stránky</link>."
#. 2BGUb
#: pagestyles.xhp
@@ -12317,7 +12317,7 @@ msgctxt ""
"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 ""
+msgstr "Zvláštní případ nastává, když je <emph>Další styl</emph> odlišný od samotného stylu stránky a chcete tento styl stránky použít na dvě po sobě následující stránky. Pokud jste například na stránku použili styl <emph>První stránka</emph> a chcete tento styl použít znovu na bezprostředně následující stránku, poté je nutné styl První stránka ručně přepsat, protože je nastaven tak, aby po něm následoval styl <emph>Výchozí styl stránky</emph>."
#. enqf2
#: pagestyles.xhp
@@ -13766,7 +13766,7 @@ msgctxt ""
"par_id3149632\n"
"help.text"
msgid "If you cannot see the field shading of the cross-reference, choose <menuitem>View - Field Shadings</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>."
-msgstr ""
+msgstr "Pokud není vidět stínování pole křížového odkazu, zvolte <menuitem>Zobrazit - Stínování polí</menuitem> nebo stiskněte klávesy <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>."
#. TCBGW
#: references_modify.xhp
@@ -14081,7 +14081,7 @@ msgctxt ""
"par_id3154091\n"
"help.text"
msgid "You can quickly exit manual formatting by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+X</keycode>. For example, if you have pressed <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+B</keycode> to apply the bold typeface to the text that you type, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+X</keycode> to return to the default character format of the paragraph."
-msgstr ""
+msgstr "Rychle ukončit ruční formátování textu je možné stisknutím kláves <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+X</keycode>. Pokud jste například stiskli klávesy <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+B</keycode> pro tučný vzhled písma při psaní, k výchozímu formátu písma se navrátíte stisknutím kláves <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+X</keycode>."
#. GFUmE
#: reset_format.xhp
@@ -14135,7 +14135,7 @@ msgctxt ""
"par_id3155861\n"
"help.text"
msgid "To dock or undock the Navigator or the Styles window, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> key and double-click on a gray area in the window. Alternatively, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F10</keycode>."
-msgstr ""
+msgstr "Chcete-li ukotvit nebo uvolnit okno Navigátor nebo Styly, podržte klávesu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> a poklepejte na šedou oblast okna. Případně stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F10</keycode>."
#. zGJff
#: resize_navigator.xhp
@@ -14243,7 +14243,7 @@ msgctxt ""
"par_id91610715353328\n"
"help.text"
msgid "For example, 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 "Abyste například změnili odsazení zleva u druhého a dalších řádků odstavce, podržte klávesu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>, klepněte na levou dolní značku a přetáhněte ji doprava."
#. qDYHz
#: ruler.xhp
@@ -15206,7 +15206,7 @@ msgctxt ""
"par_id192266\n"
"help.text"
msgid "When you point to a Smart Tag, a tip help informs you to <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>-click to open the Smart Tags menu. If you don't use a mouse, position the cursor inside the marked text and open the context menu by <keycode>Shift+F10</keycode>."
-msgstr ""
+msgstr "Když na inteligentní značku najedete kurzorem, dostanete radu, že pomocí <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+klepnutí otevřete nabídku inteligentních značek. Pokud nepoužíváte myš, umístěte kurzor do označeného textu a zkratkou <keycode>Shift+F10</keycode> otevřete místní nabídku."
#. BsAXi
#: smarttags.xhp
@@ -15503,7 +15503,7 @@ msgctxt ""
"par_id3156097\n"
"help.text"
msgid "<variable id=\"open_sidebar\">Choose <menuitem>View - Styles</menuitem> to open the <emph>Styles</emph> deck in the Sidebar.</variable>"
-msgstr ""
+msgstr "<variable id=\"open_sidebar\">Volbou <menuitem>Zobrazit - Styly</menuitem> otevřete kartu <emph>Styly</emph> na postranní liště.</variable>"
#. rKRNy
#: stylist_fromselect.xhp
@@ -15512,7 +15512,7 @@ msgctxt ""
"par_id3153402\n"
"help.text"
msgid "<variable id=\"select_category\">Click the icon at the top of the <emph>Styles</emph> deck for the style category of the new style.</variable>"
-msgstr ""
+msgstr "<variable id=\"select_category\">Klepnutím na ikonu v horní části karty <emph>Styly</emph> vyberte kategorii nového stylu.</variable>"
#. tQGu2
#: stylist_fromselect.xhp
@@ -15521,7 +15521,7 @@ msgctxt ""
"par_id3153119\n"
"help.text"
msgid "Click in the document where you want to copy the style from, for example, in a paragraph to which you applied manual formatting."
-msgstr ""
+msgstr "Klepněte na místo v dokumentu, ze kterého si přejete použít styl, například do odstavce, na který jste použili ruční formátování."
#. fnCfm
#: stylist_fromselect.xhp
@@ -15530,7 +15530,7 @@ msgctxt ""
"par_id3153138\n"
"help.text"
msgid "Click the <menuitem>Style actions</menuitem> menu icon at the top right corner of the <emph>Styles</emph> deck and choose <menuitem>New Style from Selection</menuitem> from the submenu."
-msgstr ""
+msgstr "Klepněte na ikonu nabídky <menuitem>Akce stylů</menuitem> v pravém horním rohu karty <emph>Styly</emph> a z podnabídky zvolte <menuitem>Nový styl z výběru</menuitem>."
#. XsHQe
#: stylist_fromselect.xhp
@@ -15539,7 +15539,7 @@ msgctxt ""
"par_id3156260\n"
"help.text"
msgid "<variable id=\"enter_name\">Enter a name for the new style in the <menuitem>New Style from Selection</menuitem> dialog box.</variable>"
-msgstr ""
+msgstr "<variable id=\"enter_name\">Zadejte název nového stylu do dialogového okna <menuitem>Nový styl z výběru</menuitem>.</variable>"
#. Zd7VB
#: stylist_fromselect.xhp
@@ -15557,7 +15557,7 @@ msgctxt ""
"par_id761608476870069\n"
"help.text"
msgid "<image src=\"cmd/sc_stylenewbyexample.png\" id=\"img_id591608476870069\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id41608476870069\">Icon New Style from Selection</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_stylenewbyexample.png\" id=\"img_id591608476870069\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id41608476870069\">Ikona Nový styl z výběru</alt></image>"
#. i9rEe
#: stylist_fromselect.xhp
@@ -15566,7 +15566,7 @@ msgctxt ""
"par_id141608476870069\n"
"help.text"
msgid "Styles actions menu icon"
-msgstr ""
+msgstr "Ikona nabídky Akce stylů"
#. AC6pZ
#: stylist_fromselect.xhp
@@ -15584,7 +15584,7 @@ msgctxt ""
"par_id3154851\n"
"help.text"
msgid "For paragraph, character and list styles, select at least one character in the style that you want to copy, then drag the selection to the <emph>Styles</emph> deck and release. For <literal>frame</literal> styles, select the frame and hold the mouse button pressed until the mouse icon changes, then drag to the <emph>Styles</emph> deck and release."
-msgstr ""
+msgstr "Pro styly odstavce a znakové styly stačí vybrat alespoň jeden znak stylu, který chcete zkopírovat, a přetáhnout výběr na kartu <emph>Styly</emph>. Pro styly rámce vyberte rámec, podržte tlačítko myši, dokud se nezmění ukazatel myši a výběr přetáhněte na kartu <emph>Styly</emph> poté."
#. 94K4k
#: stylist_fromselect.xhp
@@ -15593,7 +15593,7 @@ msgctxt ""
"par_idN107B2\n"
"help.text"
msgid "Alternatively, you can drag-and-drop the selection onto the respective icon at the top of the Styles deck. You do not need to open that style category in advance."
-msgstr ""
+msgstr "Případně můžete přetáhnout výběr na příslušnou ikonu v horní části karty Styly. Není potřeba danou kategorii stylů otevírat předem."
#. Asyoi
#: stylist_fromselect.xhp
@@ -15602,7 +15602,7 @@ msgctxt ""
"par_id331608474971283\n"
"help.text"
msgid "For page and table styles, you must use the <menuitem>Styles actions</menuitem> menu at the top right corner of the Styles deck. The drag-and-drop method is not possible with these styles."
-msgstr ""
+msgstr "Pro styly stránky a tabulky je nutné použít nabídku <menuitem>Styly akcí</menuitem> v pravém horním rohu karty Styly. Přetahování u těchto stylů není podporováno."
#. Zpb6T
#: stylist_fromselect.xhp
@@ -15611,7 +15611,7 @@ msgctxt ""
"par_id3149988\n"
"help.text"
msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles (Sidebar)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Styly\">Styly (postranní lišta)</link>"
#. VtEnm
#: stylist_fromselect.xhp
@@ -15620,7 +15620,7 @@ msgctxt ""
"par_id301608479105670\n"
"help.text"
msgid "<link href=\"text/shared/01/05140100.xhp\" name=\"New Style from Selection\"><menuitem>Styles - New Style from Selection</menuitem></link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05140100.xhp\" name=\"Nový styl z výběru\"><menuitem>Styly - Nový styl z výběru</menuitem></link>"
#. WPhpE
#: stylist_update.xhp
@@ -15656,7 +15656,7 @@ msgctxt ""
"par_id3149838\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>."
-msgstr ""
+msgstr "Zvolte <menuitem>Zobrazit - Styly</menuitem> nebo stiskněte <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>."
#. Pry6h
#: stylist_update.xhp
@@ -18419,7 +18419,7 @@ msgctxt ""
"bm_id3155186\n"
"help.text"
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 ""
+msgstr "<bookmark_value>neseřazené seznamy;zapnutí a vypnutí</bookmark_value> <bookmark_value>odstavce; s odrážkami</bookmark_value> <bookmark_value>odrážky;přidávání a úpravy</bookmark_value> <bookmark_value>formátování;odrážky</bookmark_value> <bookmark_value>odstraňování;odrážky v textových dokumentech</bookmark_value> <bookmark_value>změna;symbol odrážky</bookmark_value>"
#. fHxYh
#: using_numbered_lists.xhp
@@ -18455,7 +18455,7 @@ msgctxt ""
"par_id3149635\n"
"help.text"
msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Unordered List</menuitem> icon (<keycode>Shift+F12</keycode>)."
-msgstr ""
+msgstr "Na liště <menuitem>Formátování</menuitem> klepněte na ikonu <menuitem>Přepnout neseřazený seznam</menuitem> (<keycode>Shift+F12</keycode>)."
#. nQCke
#: using_numbered_lists.xhp
@@ -18464,7 +18464,7 @@ msgctxt ""
"par_id3145403\n"
"help.text"
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 ""
+msgstr "Pro odstranění odrážek vyberte odstavce s odrážkami a klepněte na ikonu <emph>Přepnout neseřazený seznam</emph> na liště <emph>Formátování</emph>."
#. HpLDk
#: using_numbered_lists.xhp
@@ -18482,7 +18482,7 @@ msgctxt ""
"par_id3154416\n"
"help.text"
msgid "To change the formatting of an unordered list, choose <menuitem>Format - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Pro změnu formátování neseřazeného seznamu zvolte <menuitem>Formát - Odrážky a číslování</menuitem>."
#. qZ6Zu
#: using_numbered_lists.xhp
@@ -18491,7 +18491,7 @@ msgctxt ""
"par_id3153390\n"
"help.text"
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 ""
+msgstr "Klepněte na kartu <menuitem>Neseřazený</menuitem> nebo <menuitem>Obrázek</menuitem> a vyberte styl symbolu v oblasti <menuitem>Výběr</menuitem>."
#. XtKb5
#: using_numbered_lists.xhp
@@ -18518,7 +18518,7 @@ msgctxt ""
"bm_id3147418\n"
"help.text"
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 ""
+msgstr "<bookmark_value>číslování;odstavce, zap/vyp</bookmark_value> <bookmark_value>odstavce; přepnout seřazený seznam</bookmark_value> <bookmark_value>formátování;seřazené seznamy</bookmark_value> <bookmark_value>vkládání;číslování</bookmark_value>"
#. ZPrUH
#: using_numbered_lists2.xhp
@@ -18527,7 +18527,7 @@ msgctxt ""
"hd_id3147418\n"
"help.text"
msgid "<variable id=\"using_numbered_lists2\"><link href=\"text/swriter/guide/using_numbered_lists2.xhp\" name=\"Adding Numbering\">Adding Numbering</link></variable>"
-msgstr ""
+msgstr "<variable id=\"using_numbered_lists2\"><link href=\"text/swriter/guide/using_numbered_lists2.xhp\" name=\"Přidání číslování\">Přidání číslování</link></variable>"
#. fN39Y
#: using_numbered_lists2.xhp
@@ -18554,7 +18554,7 @@ msgctxt ""
"par_id181615764064889\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Proveďte jednu z následujících možností:"
#. B2NZk
#: using_numbered_lists2.xhp
@@ -18563,7 +18563,7 @@ msgctxt ""
"par_id3149968\n"
"help.text"
msgid "On the <emph>Formatting</emph> Bar, click the <emph>Toggle Ordered List</emph> icon (<keycode>F12</keycode>)"
-msgstr ""
+msgstr "Na liště <emph>Formátování</emph> klepněte na ikonu <emph>Přepnout seřazený seznam</emph> (<keycode>F12</keycode>)."
#. EaSQT
#: using_numbered_lists2.xhp
@@ -18572,7 +18572,7 @@ msgctxt ""
"par_id211615764184529\n"
"help.text"
msgid "Right-click, choose <menuitem>List</menuitem>, then select a list style."
-msgstr ""
+msgstr "Klepněte pravým tlačítkem, zvolte <menuitem>Seznam</menuitem> a vyberte styl seznamu."
#. dQ6VP
#: using_numbered_lists2.xhp
@@ -18581,7 +18581,7 @@ msgctxt ""
"par_id941615766439690\n"
"help.text"
msgid "A <link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Paragraph Style\">paragraph style</link> can be configured to add numbering."
-msgstr ""
+msgstr "Je také možné nastavit <link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Styl odstavce\">styl odstavce</link> tak, aby obsahoval číslování."
#. 96JB9
#: using_numbered_lists2.xhp
@@ -18590,7 +18590,7 @@ msgctxt ""
"hd_id861615765870820\n"
"help.text"
msgid "To Remove Paragraphs from an Ordered List"
-msgstr ""
+msgstr "Odstranění odstavců ze seřazeného seznamu"
#. PwFjK
#: using_numbered_lists2.xhp
@@ -18599,7 +18599,7 @@ msgctxt ""
"par_id3153365\n"
"help.text"
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 ""
+msgstr "Chcete-li číslování odstranit, vyberte číslované odstavce a klepněte na ikonu <emph>Přepnout seřazený seznam</emph> nebo <emph>Bez seznamu</emph> na liště <emph>Formátování</emph>."
#. iFCsz
#: using_numbered_lists2.xhp
@@ -18608,7 +18608,7 @@ msgctxt ""
"hd_id3154233\n"
"help.text"
msgid "To Format an Ordered List"
-msgstr ""
+msgstr "Formátování seřazeného seznamu"
#. XpCAC
#: using_numbered_lists2.xhp
@@ -18617,7 +18617,7 @@ msgctxt ""
"par_id3154246\n"
"help.text"
msgid "To change the formatting of a numbered list, do one of the following:"
-msgstr ""
+msgstr "Chcete-li změnit formátování číslovaného seznamu, proveďte jednu z následujících možností:"
#. ctBEK
#: using_numbered_lists2.xhp
@@ -18626,7 +18626,7 @@ msgctxt ""
"par_id801615765243022\n"
"help.text"
msgid "Click in the list, then choose <menuitem>Format - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Klepněte na seznam a zvolte <menuitem>Formát - Odrážky a číslování</menuitem>."
#. xAc7B
#: using_numbered_lists2.xhp
@@ -18635,7 +18635,7 @@ msgctxt ""
"par_id161615765280165\n"
"help.text"
msgid "Right-click in the list, then choose <menuitem>List - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Klepněte pravým tlačítkem na seznam a zvolte <menuitem>Seznam - Odrážky a číslování</menuitem>."
#. xgmVR
#: using_numbered_lists2.xhp
@@ -18644,7 +18644,7 @@ msgctxt ""
"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 ""
+msgstr "Chcete-li změnit hierarchii seřazeného seznamu, klepněte na seznam a použijte ikony na nástrojové liště <emph>Odrážky a číslování</emph>."
#. y2KEo
#: using_numbered_lists2.xhp
@@ -18653,7 +18653,7 @@ msgctxt ""
"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 Ordered List</emph> twice. Any formatting on the pasted item is reset to default."
-msgstr ""
+msgstr "Kopírování nebo přesouvání položky číslovaného seznamu na nové místo způsobí, že číslování seznamu bude pokračovat. Má-li začít pro vloženou položku znovu, klepněte dvakrát na <emph>Přepnout seřazený seznam</emph>. Formátování vložené položky se vždy nastaví na výchozí."
#. kPFQQ
#: using_numbering.xhp
@@ -18662,7 +18662,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Numbering and Paragraph Styles"
-msgstr ""
+msgstr "Číslování a styly odstavce"
#. FfEcT
#: using_numbering.xhp
@@ -18671,7 +18671,7 @@ msgctxt ""
"bm_id3155174\n"
"help.text"
msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>číslování; ručně/pomocí stylů</bookmark_value><bookmark_value>styly seznamu</bookmark_value><bookmark_value>ruční číslování v textu</bookmark_value><bookmark_value>styly odstavce;číslování</bookmark_value>"
#. FizBP
#: using_numbering.xhp
@@ -18680,7 +18680,7 @@ msgctxt ""
"hd_id3155174\n"
"help.text"
msgid "<variable id=\"using_numbering\"><link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Numbering and Numbering Styles\">Numbering and Paragraph Styles</link></variable>"
-msgstr ""
+msgstr "<variable id=\"using_numbering\"><link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Číslování a styly odstavce\">Číslování a styly odstavce</link> </variable>"
#. DeMXq
#: using_numbering.xhp
@@ -18698,7 +18698,7 @@ msgctxt ""
"par_id31616154131555\n"
"help.text"
msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>, instead of numbering manually."
-msgstr ""
+msgstr "Jestliže si přejete číslovat nadpisy, použijte místo ručního číslování <menuitem>Nástroje - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>."
#. Dh8sW
#: using_numbering.xhp
@@ -18716,7 +18716,7 @@ msgctxt ""
"par_id3155866\n"
"help.text"
msgid "To apply numbering manually, click in the paragraph, and then click the <menuitem>Toggle Ordered List</menuitem> icon on the <menuitem>Formatting</menuitem> bar, or use the dropdown box on the icon to select a numbering format."
-msgstr ""
+msgstr "Chcete-li použít ruční číslování, klepněte na odstavec a poté klepněte na ikonu <menuitem>Přepnout seřazený seznam</menuitem> na liště <menuitem>Formátování</menuitem> nebo vyberte formát číslování v rozbalovacím poli u této ikony."
#. m2kdH
#: using_numbering.xhp
@@ -18761,7 +18761,7 @@ msgctxt ""
"par_idN1073A\n"
"help.text"
msgid "Use the commands on the <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\">Bullets and Numbering</link> bar to change the order and level of list paragraphs."
-msgstr ""
+msgstr "Pomocí příkazů na liště <link href=\"text/swriter/main0206.xhp\" name=\"Lišta Odrážky a číslování\">Odrážky a číslování</link> změníte pořadí a úroveň odstavců seznamu."
#. f48BU
#: using_numbering.xhp
@@ -18770,7 +18770,7 @@ msgctxt ""
"par_id791616153048415\n"
"help.text"
msgid "To see which paragraphs are in the same list, click to the left of a number or symbol at the beginning of a list paragraph, with <link href=\"text/swriter/01/03080000.xhp\" name=\"Shadings\"><menuitem>View - Field Shadings</menuitem> </link> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>) enabled."
-msgstr ""
+msgstr "Chcete-li zobrazit, které odstavce se nacházejí v témže seznamu, klepněte vlevo od čísla nebo symbolu na začátku odstavce seznamu, zatímco je povoleno <link href=\"text/swriter/01/03080000.xhp\" name=\"Stínování\"><menuitem>Zobrazit - Stínování polí</menuitem></link> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>)."
#. Egm22
#: using_numbering.xhp
@@ -18779,7 +18779,7 @@ msgctxt ""
"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 Previous List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
-msgstr ""
+msgstr "Chcete-li přidat odstavce k již existujícímu seznamu, použijte <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Přidat k seznamu\"><menuitem>Formát - Seznamy - Přidat k seznamu</menuitem></link>."
#. qFAkZ
#: using_numbering.xhp
@@ -18797,7 +18797,7 @@ msgctxt ""
"par_id3153137\n"
"help.text"
msgid "Paragraph Styles give you greater control over numbering that you apply in a document. When you change the list style assigned to a paragraph style, then the numbering format in the list style is applied automatically to all paragraphs using the paragraph style."
-msgstr ""
+msgstr "Větší kontrolu nad číslováním v dokumentu poskytují styly odstavce. Pokud změníte styl seznamu přiřazený ke stylu odstavce, automaticky se podle tohoto stylu seznamu změní i formát číslování všech odstavců, které tento styl odstavce používají."
#. M3VEp
#: using_numbering.xhp
@@ -18824,7 +18824,7 @@ msgctxt ""
"par_id3149850\n"
"help.text"
msgid "Click the <item type=\"menuitem\">Outline & List</item> tab."
-msgstr ""
+msgstr "Klepněte na kartu <item type=\"menuitem\">Osnova a seznam</item>."
#. pnM3U
#: using_numbering.xhp
@@ -18833,7 +18833,7 @@ msgctxt ""
"par_id3149874\n"
"help.text"
msgid "In the <menuitem>List style</menuitem> box, select the list style to apply."
-msgstr ""
+msgstr "V poli <menuitem>Styl seznamu</menuitem> vyberte styl, který se má použít."
#. r8dBG
#: using_numbering.xhp
@@ -18851,7 +18851,7 @@ msgctxt ""
"par_id3149589\n"
"help.text"
msgid "Apply the paragraph style to the paragraphs that you want to add numbering to."
-msgstr ""
+msgstr "Styl odstavce použijte na odstavce, kterým si přejete přiřadit číslování."
#. HBCBV
#: using_numbering.xhp
@@ -18860,7 +18860,7 @@ msgctxt ""
"par_id401616165733544\n"
"help.text"
msgid "<link href=\"text/swriter/01/05130004.xhp\" name=\"List Style\">List Style</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05130004.xhp\" name=\"Styl seznamu\">Styl seznamu</link>"
#. 8s2hg
#: using_thesaurus.xhp
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index b4065940feb..4d41bc8e676 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-27 08:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cs/>\n"
"Language: cs\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Umístění a velikost"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30056,7 +30066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Zobrazit tlačítka skrývání osnovy"
#. 4hvcy
#: WriterCommands.xcu
@@ -30066,7 +30076,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Zobrazí vedle nadpisů a podnadpisů tlačítka, které umožní skrývat osnovu. Osnovu lze skrývat také bez nich, a to pomocí Navigátoru."
#. C5mHk
#: WriterCommands.xcu
@@ -35426,7 +35436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Přepnout skrývání osnovy"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index 2f54dea7c64..c91f0eb38b4 100644
--- a/source/cs/sd/messages.po
+++ b/source/cs/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 14:40+0000\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563224604.000000\n"
#. WDjkB
@@ -8937,13 +8937,13 @@ msgstr "Vybere vysoké rozlišení pro zobrazení snímků ve vysoké kvalitě."
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1186
msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
-msgstr ""
+msgstr "Full HD (1_920 × 1080 pixelů)"
#. GuDqe
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1197
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
msgid "Select a full hd resolution for a very high quality slide display."
-msgstr ""
+msgstr "Vybere rozlišení full HD pro zobrazení snímků ve velmi vysoké kvalitě."
#. zsvW6
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1213
diff --git a/source/cs/sfx2/messages.po b/source/cs/sfx2/messages.po
index e3a36faa8c1..084bbf465d4 100644
--- a/source/cs/sfx2/messages.po
+++ b/source/cs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/cs/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Umožňuje přidat do dokumentu vlastní pole s informacemi."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zavřít kartu postranní lišty"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index 5ec14c6cece..7c2391d8bf2 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/svx/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 21:16+0000\n"
+"PO-Revision-Date: 2021-04-01 04:39+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559834188.000000\n"
#. 3GkZj
@@ -7193,7 +7193,7 @@ msgstr "Vložit"
#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
-msgstr ""
+msgstr "%1. Kliknutím změníte režim výběru."
#. Dh5A2
#: include/svx/strings.hrc:1293
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index 6f46b21b698..be9dce55ffd 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/cs/>\n"
"Language: cs\n"
@@ -1538,7 +1538,7 @@ msgstr "Seznam řetězec popisku"
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "Metadata odkaz"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
@@ -2291,7 +2291,7 @@ msgstr "Odstraní na této kartě hodnoty, které jsou popsané v části „Obs
#: sw/inc/strings.hrc:29
msgctxt "STR_STANDARD_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 current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Nastaví hodnoty na aktuální kartě na odpovídající hodnoty ze stylu, který je určen v poli „Rodičovský“ na kartě Organizátor. Ve všech případech, včetně toho, kdy je „Rodičovský“ nastaven jako „Žádný“, se na této kartě odstraní hodnoty popsané v části „Obsahuje“."
#. x2EUX
#: sw/inc/strings.hrc:30
@@ -2321,13 +2321,13 @@ msgstr "Použít"
#: sw/inc/strings.hrc:34
msgctxt "STR_APPLY_TOOLTIP"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with Reset."
-msgstr ""
+msgstr "Uloží změny na všech kartách bez uzavření dialogového okna. Tuto akci nelze vrátit zpět pomocí Obnovit."
#. FbPXG
#: sw/inc/strings.hrc:35
msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
-msgstr ""
+msgstr "Použije všechny změny bez uzavření dialogového okna. Hodnoty se uloží a nebude možné je vrátit zpět pomocí Obnovit."
#. MvGmf
#. Format names
@@ -3360,7 +3360,7 @@ msgstr "Na šířku"
#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
-msgstr ""
+msgstr "Bez seznamu"
#. mGZHb
#: sw/inc/strings.hrc:215
@@ -5889,7 +5889,7 @@ msgstr "Vypnuto"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Kliknutím přepnete skrývání osnovy"
#. 44jEc
#: sw/inc/strings.hrc:659
@@ -5901,7 +5901,7 @@ msgstr "Kliknutím pravým tlačítkem zahrnete úrovně"
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Kliknutím přepnete skrývání osnovy"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5913,7 +5913,7 @@ msgstr "kliknutím pravým tlačítkem zahrnete podúrovně"
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Skrývání osnovy"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5925,13 +5925,13 @@ msgstr "Přepnout"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Zobrazit vše"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Skrýt vše"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -6479,7 +6479,7 @@ msgstr "Uživatelem definované 5"
#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_LOCAL_FILE"
msgid "Local file"
-msgstr ""
+msgstr "Místní soubor"
#. nsCwi
#: sw/inc/strings.hrc:764
@@ -9791,6 +9791,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Vlastní"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20031,14 +20043,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Otevře dialogové okno pro výběr šablony."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Vyberte počáteční dokument pro hromadnou korespondenci"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Určete dokument, na kterém se založí hromadně rozesílaná zpráva."
@@ -20221,7 +20239,7 @@ msgstr "Smazat vše"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Skrývání osnovy"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -21980,7 +21998,7 @@ msgstr "Přiřazený styl seznamu"
#: sw/uiconfig/swriter/ui/numparapage.ui:147
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "No List"
-msgstr ""
+msgstr "Bez seznamu"
#. hRgAM
#: sw/uiconfig/swriter/ui/numparapage.ui:151
@@ -24314,13 +24332,13 @@ msgstr "Odstavec"
#: sw/uiconfig/swriter/ui/paradialog.ui:32
msgctxt "paradialog|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "Neuložené změny na této kartě budou zrušeny."
#. Gw9vR
#: sw/uiconfig/swriter/ui/paradialog.ui:35
msgctxt "paradialog|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 "Zruší všechny změny provedené na zobrazené kartě a obnoví nastavení, které obsahovala při otevření dialogového okna."
#. 6xRiy
#: sw/uiconfig/swriter/ui/paradialog.ui:159
@@ -27330,7 +27348,7 @@ msgstr "Organizátor"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
-msgstr ""
+msgstr "Pojmenujte styl a zařaďte jej do kategorie"
#. 7o8No
#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
@@ -27342,7 +27360,7 @@ msgstr "Neseřazený"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
-msgstr ""
+msgstr "Zvolte předem definovaný typ odrážky"
#. uCBn4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:264
@@ -27354,7 +27372,7 @@ msgstr "Seřazený"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
-msgstr ""
+msgstr "Zvolte předem definovaný seřazený seznam"
#. D9oKE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:313
@@ -27366,7 +27384,7 @@ msgstr "Osnova"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:314
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
-msgstr ""
+msgstr "Zvolte předem definovaný formát osnovy"
#. Dp6La
#: sw/uiconfig/swriter/ui/templatedialog16.ui:362
@@ -27378,7 +27396,7 @@ msgstr "Obrázek"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:363
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
-msgstr ""
+msgstr "Zvolte předem definovaný grafický symbol odrážky"
#. K55K4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:411
@@ -27390,7 +27408,7 @@ msgstr "Umístění"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
-msgstr ""
+msgstr "Změňte odsazení, rozestupy a zarovnání čísel nebo symbolů seznamu"
#. g5NQF
#: sw/uiconfig/swriter/ui/templatedialog16.ui:460
@@ -27402,7 +27420,7 @@ msgstr "Přizpůsobit"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:461
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
-msgstr ""
+msgstr "Vytvořte vlastní formát seznamu či osnovy"
#. 6ozqU
#: sw/uiconfig/swriter/ui/templatedialog2.ui:8
@@ -29322,7 +29340,7 @@ msgstr "Nastavení"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "_Zobrazit tlačítka skrývání osnovy"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29334,7 +29352,7 @@ msgstr "Za_hrnout úrovně"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Skrývání osnovy"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/cs/vcl/messages.po b/source/cs/vcl/messages.po
index 93a9ededeb6..7313ee7881f 100644
--- a/source/cs/vcl/messages.po
+++ b/source/cs/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-19 21:36+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/cs/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Oddělovač"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 247b297680b..b8f7b8cccfb 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-24 12:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/cy/>\n"
@@ -3548,11 +3548,11 @@ 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 "Mae'r rhyngwyneb Bar Grŵp yn darparu mynediad at swyddogaethau mewn grwpiau, gydag eiconau ar gyfer nodweddion sy'n cael eu defnyddio amlaf, a chwymplenni ar gyfer rhai eraill. Mae'r amrywiad llawn hwn yn ffafrio swyddogaethau ac mae ychydig yn fwy na'r rhai eraill."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "Mae rhyngwyneb Bar Grŵp Cryno yn darparu mynediad at swyddogaethau mewn grwpiau, gydag eiconau ar gyfer nodweddion sy'n cael eu defnyddio amlaf, a chwymplenni ar gyfer rhai eraill. Mae'r amrywiad cryno hwn yn ffafrio gofod fertigol."
+msgid "The Groupedbar 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
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Yn neilltuo macros i ddigwyddiadau rhaglen. Mae'r macro a neilltuwyd yn rhedeg yn awtomatig bob tro y bydd y digwyddiad sydd wedi'i ddewis yn digwydd."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Nodweddion Ffontiau"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Rhagolwg"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Dewis a chymhwyso nodweddion argraffyddol ffont i nodau."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Gosodiadau Ffont ar gyfer Ffynonellau HTML, Basic a SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Cyngor estynedig"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Yn dangos testun cymorth pan fyddwch yn gorffwys y cyrchwr ar eicon, gorchymyn dewislen, neu reolaeth ar ddeialog."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Dangos llamlen \"Dim cymorth all-lein wedi ei osod\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Dangos deialog \"Awgrym y Dydd\" wrth gychwyn"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cymorth"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Defnyddio deialogau %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Deialogau Agor/Cadw"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Defnyddio d_eialogau %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Deialogau Argraffu"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Argraffu yn gosod statws \"dogfen wedi newid\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Yn nodi a yw argraffu'r ddogfen yn cyfrif fel addasiad."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Statws Dogfen"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Dehongli fel blynyddoedd rhwng "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Yn diffinio ystod dyddiad, lle mae'r system yn adnabod blwyddyn dau ddigid."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Blwyddyn (Dau Ddigid)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Casglu data defnydd a'i anfon at y Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Anfonwch ddata defnydd i helpu'r Document Foundation i wella defnyddioldeb y feddalwedd."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "_Anfon adroddiadau chwalu i'r Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Helpwch wella %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Llwytho %PRODUCTNAME wrth gychwyn y system"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Galluogi Cychwyn Cyflym"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Cychwyn Cyflym %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Apiau Rhagosodedig Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Cydgysylltiad Ffeiliau %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Yn pennu gosodiadau cyffredinol %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Brig"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Gosodiadau Cynllun"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index 811fab59fbe..8efd37441d2 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-24 12:37+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cy/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Safle a Maint"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index e169c6ab4af..1ef0f2ad7fb 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-24 12:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/cy/>\n"
@@ -2927,7 +2927,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Yn eich galluogi i neilltuo meysydd gwybodaeth cyfaddas i'ch dogfen."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Cau Dec y Bar Ochr"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index 15df1e9087b..a5b88de2745 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-27 08:37+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/cy/>\n"
@@ -9812,6 +9812,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Cyfaddas"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20052,14 +20064,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Yn agor deialog dewisydd templed."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Dewis Dogfen Gychwynnol ar gyfer Cyfuno Post"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Pennwch y ddogfen rydych am ei defnyddio fel sylfaen ar gyfer y ddogfen cyfuno post."
diff --git a/source/cy/vcl/messages.po b/source/cy/vcl/messages.po
index f612824a2cc..c85a7cfb49d 100644
--- a/source/cy/vcl/messages.po
+++ b/source/cy/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/cy/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Ymwahanydd"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index e77d55ceb10..ad3f576ea45 100644
--- a/source/da/cui/messages.po
+++ b/source/da/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-29 16:04+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562743938.000000\n"
#. GyY9M
@@ -3548,11 +3548,11 @@ 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 "Brugerfladen Grupperet linje giver adgang til funktioner i grupper, med ikoner til de hyppigst brugte funktioner og rullemenuer til de øvrige. Den komplette variant betoner funktioner og er en smule større end de øvrige."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "Brugerfladen Kompakt grupperet linje giver adgang til funktioner i grupper, med ikoner til hyppigst brugt funktioner og rullemuer til de andre. Denne kompakte variant favoriserer lodret plads."
+msgid "The Groupedbar 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
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Tilknytter makroer til programbegivenheder. De tilknyttede makroer afvikles automatisk, hver gang de valgte begivenheder optræder."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Skrifttype-funktioner"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Forhåndsvisning"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Marker og anvend skrifttypografiske funktioner på tegn."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Skrifttypeindstillinger for HTML-, Basic- og SQL-kilder"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Udvidede tips"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Viser en kort hjælpetekst, når du hviler markøren på et ikon, en menukommando eller et kontrolelement i en dialog."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Vis popup \"Ingen offline hjælp installeret\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Vis dialogen \"Dagens Tip\" ved opstart"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjælp"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Brug %PRODUCTNAME-dialoger"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Åbn/Gem-dialoger"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Brug %PRODUCTNAME-dialoger"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Udskriftsdialoger"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Udskrivning sætter status for \"Dokument ændret\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Angiver om dokumentet regnes som ændret, fordi det er blevet udskrevet."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Fortolk som år mellem "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Angiver hvilket årsinterval, som systemet oversætter tocifrede årstal til."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Tocifrede årstal"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Data om anvendelse indsamles og sendes til The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Send brugsdata for at hjælpe The Document Foundation med at forbedre software-anvendeligheden"
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Send nedbrudsrapporter til The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjælp med at forbedre %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Indlæs %PRODUCTNAME ved systemstart"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktiver Hurtigstart i systembakken"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Hurtigstart"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows standardapper"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME Filtilknytninger"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Specificerer de generelle indstillinger i %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Øverst"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Layoutindstillinger"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/da/helpcontent2/source/auxiliary.po b/source/da/helpcontent2/source/auxiliary.po
index e59c601168c..6f7818d72ce 100644
--- a/source/da/helpcontent2/source/auxiliary.po
+++ b/source/da/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-14 18:34+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562523768.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Kommandohenvisning"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Kørselsfunktioner, udtryk og operatorer"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Alfabetisk liste over funktioner, udtryk og operatorer"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/da/helpcontent2/source/text/sbasic/shared.po b/source/da/helpcontent2/source/text/sbasic/shared.po
index b05f33baf24..03326a39b1c 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-30 16:12+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561161214.000000\n"
#. yzYVt
@@ -9927,14 +9927,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile-funktion</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile-funktion</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9945,24 +9945,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Returnerer det næste tilgængelig filnummer til åbning af en fil. Brug denne funktion til åbne en fil ved at bruge et filnummer der ikke allerede er i brug af en aktuel åbn fil."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Returværdi:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9972,15 +9954,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9990,33 +9963,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Denne funktion kan kun bruges lige foran en Open-sætning. FreeFile returnerer det næste tilgængelig filnummer, men reserverer det ikke."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Første tekstlinje\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"En anden tekstlinje\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10161,6 +10107,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Dette er en anden tekstlinje\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10215,14 +10188,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Dette er en ny linje tekst\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Alle filer vil blive lukket\",0,\"Fejl\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10368,50 +10341,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position ved begyndelse"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Dette er den første linje tekst\" REM Fyld linje med tekst"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Dette er den anden tekstlinje\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Dette er den tredje tekstlinje\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Dette er en ny tekst\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Dette er teksten i datapost 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10431,14 +10467,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Indtastning sætning</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input#-udtryk</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10881,15 +10917,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Afgør om filens pegepind har nået slutningen af en fil."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10899,15 +10926,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (Intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Returværdi:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10917,15 +10935,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10944,33 +10953,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Brug Eof for at undgå fejl når du forsøger at få input efter slutningen af en fil. Når du bruger sætningen Input eller Get for at læse fra en fil, vil filens pegepind rykke frem svarende til antallet af bytes, der er læst. Når slutningen af en fil er nået, returnerer Eof værdien \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Første tekstlinje\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"En anden tekstlinje\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11115,15 +11097,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Returnerer størrelsen af en åben fil i bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11133,15 +11106,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Returværdi:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11151,15 +11115,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11178,78 +11133,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "For at få længden på en fil som ikke er åben, brug funktionen <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Skal være en variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Stilling ved start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Dette er den første tekstlinje\" REM Fyld med Tekst"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Dette er den anden tekstlinje\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Dette er den tredje tekstlinje\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Dette er en ny linje tekst\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Dette er teksten i datapost 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11936,15 +11819,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Se også:<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11954,15 +11828,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Returværdi:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11972,15 +11837,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12071,15 +11927,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (fil er åben i binær tilstand)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12089,23 +11936,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Dette er en linje tekst\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Adgangstilstand\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Filattribut\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12665,15 +12512,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Sletter en fil fra en disk."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12683,15 +12521,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12701,23 +12530,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Et vilkårligt strengudtryk, der indeholder en utvetydig filspecifikation. Du kan også bruge <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notation</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM Fil skal oprettes på forhånd"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17759,15 +17579,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Aktiverer en fejlhåndteringsrutine efter at en fejl opstår, eller genoptager programudførslen."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17786,15 +17597,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17840,15 +17642,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Erklæringen \"On Error Go To\" bruges til at reagere på fejl som sker i en makro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17858,14 +17651,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Dette er en linje tekst\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Alle filer vil blive lukket\",0,\"Fejl\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19298,149 +19091,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>mod-operator (matematisk)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod-operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Returnerer heltalresten af en division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaks:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultat = Udtryk1 MOD Udtryk2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Returværdi:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametre:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
+"help.text"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
+
+#. tjLmf
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultat:</emph> Numerisk variabel, som indeholder resultatet af Mod-operationen."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. uVobi
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id3147560\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Udtryk1, Udtryk2:</emph> Vilkårlige numeriske udtryk, som du vil dividere."
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultat = Udtryk1 MOD Udtryk2"
-#. PEAiU
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3153380\n"
"help.text"
-msgid "Example:"
-msgstr "Eksempel:"
+msgid "Integer"
+msgstr "Integer"
-#. ucwCQ
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 mod 2.5 REM returnerer 0"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 REM returnerer 4"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 REM returnerer 0"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 REM returnerer 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 REM returnerer 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 REM returnerer 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30287,33 +30089,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr "Funktionerne <link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> og <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link>"
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Sammenligningsoperatorer"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Sammenligningsoperatorer\">Sammenligningsoperatorer</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "De tilgængelige sammenligningsoperatorer er beskrevet her."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/shared/03.po b/source/da/helpcontent2/source/text/sbasic/shared/03.po
index e9a6b54a065..b21e1c54f5f 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/da/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-26 21:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/da/>\n"
@@ -5194,15 +5194,6 @@ msgctxt ""
msgid "Note that in previous examples, the prefix <literal>\"SFDialogs.\"</literal> may be omitted."
msgstr "Bemærk i de foregående eksempler, at præfikset <literal>\"SFDialogs.\"</literal> kan udelades."
-#. 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 ""
@@ -5428,6 +5419,24 @@ 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 "Det UNO-objekt, der repræsenter dialogvisningen. Se detaljeret information i <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1XControlModel.html\" name=\"XControl interface\">XControl</link> og <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> i APIens (Application Programming Interface) dokumentation."
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index bcbd3268a71..4c8b3c0bfb4 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-29 10:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/da/>\n"
"Language: da\n"
@@ -4460,7 +4460,7 @@ msgctxt ""
"par_id601615842657372\n"
"help.text"
msgid "<emph>DatabaseField</emph>. The column containing the data to be used in the function’s calculations."
-msgstr ""
+msgstr "<emph>Databasefelt</emph>. kolonnen, der indeholder de data, der skal bruges i funktionens beregninger."
#. D5P4G
#: 04060101.xhp
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_id761615889163416\n"
"help.text"
msgid "The <emph>Database</emph> argument may also be specified by passing the name of a named range or database range. Using a meaningful name to define the cell range can enhance formula readability and document maintenance. If the name does not match the name of a defined range, Calc reports a #NAME? error."
-msgstr ""
+msgstr "Argumentet <emph>Database</emph> kan også angives ved at videregive navnet på et navngivet område eller et databaseområde. Brug af et betydningsfuldt navn som definition af celleområdet kan forbedre formel-læsbarhed og dokumentvedligeholdelse. Hvis navnet ikke matcher navnet på et defineret område, rapporterer Calc en #NAME?-fejl."
#. 7L4XM
#: 04060101.xhp
@@ -4901,7 +4901,7 @@ msgctxt ""
"hd_id861616245631924\n"
"help.text"
msgid "Example 1"
-msgstr ""
+msgstr "c1"
#. cEWAG
#: 04060101.xhp
@@ -5045,7 +5045,7 @@ msgctxt ""
"par_id351616252313215\n"
"help.text"
msgid "In this example the search criteria area contains only one heading. Since there are two conditions in consecutive rows, these are connected by OR. With the above example database table and this search criteria area, insert the formula <item type=\"input\">=DCOUNT(A1:E10;;B12:B14)</item> into an empty cell elsewhere in the sheet to count how many of Joe’s guests are either 9 or 10 years old. The value 4 is returned (counting Andy, Betty, Charles, and Harry)."
-msgstr ""
+msgstr "I dette eksempel indholder søgekriterie-området kun en overskrift. Eftersom der to betingelser i fortløbende rækker, forbindes de med ELLER. Med eksempel-databasetabellen og dette søgekriterie-område, indsætter du formlen <item type=\"input\">=DTÆL(A1:E10;;B12:B14)</item> i en tom celle et andet sted i arket for at tælle, hvor mange af Joes gæster, der er enten 9 eller 10 år gamle. Værdien 4 returneres (nemlig Andu, Betty, Charles og Harry)."
#. GFADM
#: 04060101.xhp
@@ -5243,7 +5243,7 @@ msgctxt ""
"bm_id3156123\n"
"help.text"
msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
-msgstr ""
+msgstr "re8<bookmark_value>DCOUNTA (funktion)</bookmark_value> <bookmark_value>poster;tælle i Calc databaser</bookmark_value> <bookmark_value>tælle rækker;med numeriske eller alfanumeriske værdier</bookmark_value>"
#. aJdyL
#: 04060101.xhp
@@ -5504,7 +5504,7 @@ msgctxt ""
"bm_id3154274\n"
"help.text"
msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>DMIDDEL (funKtion)</bookmark_value> <bookmark_value>middeltal ; i Calc-databaser</bookmark_value> <bookmark_value>beregne;middeltal i Calc-databaser</bookmark_value>"
#. dQciw
#: 04060101.xhp
@@ -5855,7 +5855,7 @@ msgctxt ""
"par_id301616181465164\n"
"help.text"
msgid "Returns a #NUM! error if exactly one record matches the specified search criteria, or if there is only one numeric value in the cells of the specified column for the matching records."
-msgstr ""
+msgstr "Returner a #NUM!-fejl, hvis præcis en post matcher de angivne søgekriterier, eller hvis der kun er en numerisk værdi i cellerne i den angivne kolonner til matchende poster."
#. gW4LZ
#: 04060101.xhp
@@ -5891,7 +5891,7 @@ msgctxt ""
"par_id3153676\n"
"help.text"
msgid "Insert the formula <input>=DVAR(A1:E10; \"Distance\"; A12:E13)</input> into an empty cell elsewhere in the sheet to find the sample variance of the distances in meters that Joe’s party guests travel to school. The value 193125 is returned."
-msgstr ""
+msgstr "Indsæt formlen <input>=DVARIANS(A1:E10; \"Afstand\"; A12:E13)</input> i en tom celle på et andet sted i arket for at finde prøvevariansen af de afstande i meter, som Joes fødseldagsgæster har til skole. Værdien 193125 returneres."
#. sGiDz
#: 04060101.xhp
@@ -5927,7 +5927,7 @@ msgctxt ""
"par_id301616181648263\n"
"help.text"
msgid "Returns a #NUM! error if no records match the specified search criteria, or if there are no numeric values in the cells of the specified column for the matching records."
-msgstr ""
+msgstr "Returnerer en #NUM!-fejl,hvis ingen poster matcher søgekriterierne, er hvis der ikke er nogen numeriske værdier i cellerne i den angivne kolonne til matchende poster."
#. BygUf
#: 04060101.xhp
@@ -21052,50 +21052,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FAST (FIXED på engelsk)"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Returnerer et tal som tekst med et bestemt antal decimaler og med eller uden et tusindtalsskilletegn.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXED( Tal; Decimaler [; Ingen_tusindtalsskilletegn])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Tal</emph> henviser til det tal, der skal formateres."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimaler</emph> angiver det antal decimaler der skal vises."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>IngenTusindtalsskilletegn</emph> (valgfri) bestemmer om der skal bruges skilletegn for hvert tusindtal. Hvis parameteren er et tal forskellig fra 0, undertrykkes skilletegnene. Hvis parameteren er lig med 0 eller ikke er angivet, vil tusindtalsskilletegn blive benyttet som angivet i <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">aktuelle lokalitetsindstilling</link> blive vist."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21106,14 +21106,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FAST(1234567,89;3)</item> returnerer 1.234.567,890 som et tekststreng."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FAST(1234567,89;3;1)</item> returnerer 1234567.890 som en tekststreng."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/da/helpcontent2/source/text/sdatabase.po b/source/da/helpcontent2/source/text/sdatabase.po
index b39e62f74a7..03a23571870 100644
--- a/source/da/helpcontent2/source/text/sdatabase.po
+++ b/source/da/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-25 13:37+0000\n"
+"PO-Revision-Date: 2021-04-02 05:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
#. ugSgG
#: 02000000.xhp
@@ -4287,7 +4287,7 @@ msgctxt ""
"bm_id3155535\n"
"help.text"
msgid "<bookmark_value>queries; copying (Base)</bookmark_value><bookmark_value>tables in databases; copying database tables (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>forespørgsler; kopiere (Base)</bookmark_value><bookmark_value>tabeller i databaser; kopiere databasetabeller (Base)</bookmark_value>"
#. n82rc
#: 05030000.xhp
@@ -4296,7 +4296,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "Dragging-and-dropping a query or table opens the <emph>Copy Table </emph>dialog, which allows you to define the options for copying a query or a table."
-msgstr ""
+msgstr "Træk-og-slip af en forespørgsel eller en tabel åbner dialogen <emph>Kopier tabel</emph>, hvilket tillader dig at definere indstillinger til kopiering af en forespørgsel eller en tabel."
#. CzRJq
#: 05030000.xhp
@@ -4413,7 +4413,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definition"
#. b2GpC
#: 05030100.xhp
@@ -4602,7 +4602,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/from\">Lists the available data fields that you can include in the copied table. To copy a data field, click its name, and then click the > button. To copy all of the fields, click the <emph>>></emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/from\">Oplister de tilgængelige datafelter, som du kan medtage i den kopierede tabel.For at kopiere et datafelt klikker du på dets navn og derefter på knappen <emph>></emph> -. For at kopiere alle felterne klikker du på knappen <emph>>></emph>.</ahelp>"
#. FYG4i
#: 05030200.xhp
@@ -4620,7 +4620,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Lists the fields that you want to include in the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Oplister de felter, du vil medtage i den kopierede tabel.</ahelp>"
#. VyQwS
#: 05030200.xhp
@@ -4629,7 +4629,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Buttons"
-msgstr ""
+msgstr "Knappper"
#. NT8C3
#: 05030200.xhp
@@ -4647,7 +4647,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Næste side</link>"
#. gTg68
#: 05030300.xhp
@@ -4656,7 +4656,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Type formatting"
-msgstr ""
+msgstr "Typeformatering"
#. ybz5D
#: 05030300.xhp
@@ -4665,7 +4665,7 @@ msgctxt ""
"hd_id3163829\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Type formatting</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Typeformatering</link>"
#. EkSPG
#: 05030300.xhp
@@ -4683,7 +4683,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "List box"
-msgstr ""
+msgstr "Listefelt"
#. EqDjY
#: 05030300.xhp
@@ -4701,7 +4701,7 @@ msgctxt ""
"hd_id3155535\n"
"help.text"
msgid "Column information"
-msgstr ""
+msgstr "Kolonneinformation"
#. eiXTf
#: 05030300.xhp
@@ -4944,7 +4944,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected entry down one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Flytter det valgte element en position ned på listen.</ahelp>"
#. DqTjR
#: 05030400.xhp
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 49a12dd6394..ba06e355d6c 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-26 21:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/da/>\n"
@@ -25299,14 +25299,14 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Ny typografi fra markering"
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
-msgstr "Opret ny(t) <switchinline select=\"appl\"><caseinline select=\"WRITER\">afsnits-, tegn-, ramme-, side-, liste- og tabel-</caseinline><caseinline select=\"CALC\">celle- og side-</caseinline> <defaultinline>grafik-</defaultinline></switchinline>typografier<switchinline select=\"appl\"><caseinline select=\"WRITER\">fra objekter, der er formateret manuelt, til den nye typografi, du vil oprette. </caseinline><caseinline select=\"CALC\">fra manuelt ændrede celler eller en sideformatering.</caseinline> <defaultinline>fra objekter, du har formateret manuelt, til den typografi, du vil oprette.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgstr ""
#. 5nxxW
#: 05140100.xhp
@@ -41814,14 +41814,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Tildel makro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Åbner <link href=\"text/shared/01/06130000.xhp\">Makrovælgeren</link> for at tildele en makro til den valgte hændelse.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/01.po b/source/da/helpcontent2/source/text/swriter/01.po
index 65549fe3858..170e48c3b2c 100644
--- a/source/da/helpcontent2/source/text/swriter/01.po
+++ b/source/da/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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-29 10:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/da/>\n"
@@ -28597,23 +28597,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Marker et element på listen og klik på en pileknap for at flytte elementet.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail-meddelelse"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail-meddelelse"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28930,14 +28930,14 @@ msgctxt ""
msgid "Properties"
msgstr "Egenskaber"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\">Åbner dialogen <link href=\"text/swriter/01/mm_emabod.xhp\">E-mailbesked</link>, hvor du kan indtaste e-mailbeskeden til mailfletningsfiler, der sendes som vedhæftninger.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 8e57951ccae..63a22b8e17d 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-25 13:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/da/>\n"
"Language: da\n"
@@ -621,14 +621,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "For ikke at gøre det første bogstav i en sætning stort"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Vælg <menuitem>Funktioner ▸ Autokorrekturindstillinger</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
@@ -8944,7 +8944,7 @@ msgctxt ""
"par_id3146896\n"
"help.text"
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 ""
+msgstr "Hvis du vil bruge en anden afsnitstypografi som en indførsel i en indholdsfortegnelse, vælger du afkrydsningfeltet <menuitem>Yderligere typografier</menuitem> i området <menuitem>Opret fra</menuitem> og derefter klikker på knappen <menuitem>Tildel typografier</menuitem> ved siden af afkrydsningsfeltet. I dialogen <menuitem>Tildel typografier</menuitem> klikker du på typografien i listen og derefter på knappen <menuitem>>></menuitem> eller <menuitem><<</menuitem> for at definere afsnitstypografiens dispositionsniveau."
#. mXE4E
#: indices_toc.xhp
@@ -9592,7 +9592,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph down one list level, click at the beginning of the paragraph, and then press <keycode>Tab</keycode>."
-msgstr ""
+msgstr "For at flytte et afsnit med nummer elle punkttegn et niveau ned klikker du på afsnittets begyndelse og trykker på <keycode>Tabulator</keycode>."
#. 9onR5
#: insert_tab_innumbering.xhp
@@ -12265,7 +12265,7 @@ msgctxt ""
"hd_id181615419889677\n"
"help.text"
msgid "To Manually Override the “Next style” of a Page Style"
-msgstr ""
+msgstr "Manuel tilsidesættelse af \"Næste typografi\" i en sidetypografi"
#. mX6AF
#: pagestyles.xhp
@@ -18466,7 +18466,7 @@ msgctxt ""
"par_id3145403\n"
"help.text"
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 ""
+msgstr "For at fjerne punkttegn vælger du afsnittene med punkttegn og klikker så på ikonet <emph>Slå usorteret liste til/fra</emph> på værktøjslinjen <emph>Formatering</emph> Bar."
#. HpLDk
#: using_numbered_lists.xhp
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
index 10a18b15f2a..43e5a7aed90 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-27 08:37+0000\n"
"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/da/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Placering og størrelse"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/da/sfx2/messages.po b/source/da/sfx2/messages.po
index 4517688f850..36f0b375412 100644
--- a/source/da/sfx2/messages.po
+++ b/source/da/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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-29 16:04+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560616969.000000\n"
#. bHbFE
@@ -2928,7 +2928,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Giver dig mulighed for at tildele brugerdefinerede informationsfelter i dit dokument."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 450734180da..5a582a24dff 100644
--- a/source/da/sw/messages.po
+++ b/source/da/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-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-29 16:04+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/da/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Tilpasset"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Åbner en skabelonvælger-dialog."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Vælg startdokument for brevfletning"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Angiv det dokument som du vil bruge som basis for brevfletningsdokumentet."
diff --git a/source/da/vcl/messages.po b/source/da/vcl/messages.po
index e164fd98407..82c95c5e4cf 100644
--- a/source/da/vcl/messages.po
+++ b/source/da/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-16 04:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562421975.000000\n"
#. k5jTM
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Separator"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 70d59a376cc..638ae5d0545 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-28 12:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/de/>\n"
"Language: de\n"
@@ -1636,7 +1636,7 @@ msgstr ""
#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
-msgstr "Parameter bearbeiten"
+msgstr "Parameter bearbeiten:"
#. fsbAN
#: cui/inc/strings.hrc:305
@@ -2104,7 +2104,7 @@ msgstr "Um Änderungen in Teilen eines schreibgeschützten Writer-Dokuments zu e
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To print the notes of your slides go to File ▸ Print ▸ Impress tab and select Notes under Document ▸ Type."
-msgstr "Um die Notizen Ihrer Folien auszudrucken, wählen Sie »Datei ▸ Drucken… ▸ Register: LibreOffice Impress« und im Abschnitt Dokument \"Typ: Notizen\"."
+msgstr "Um die Notizen Ihrer Folien auszudrucken, wählen Sie »Datei ▸ Drucken… ▸ Register: LibreOffice Impress ▸ Abschnitt: Dokument ▸ Typ: Notizen«."
#. TWjA5
#: cui/inc/tipoftheday.hrc:52
@@ -2221,7 +2221,7 @@ msgstr "Um Zellinhalte in Calc farbig anzuzeigen, wählen Sie »Ansicht ▸ Wert
#: 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 "Um verschiedene Masterfolien in einer Präsentation zu verwenden, wählen Sie »Ansicht ▸ Folienmaster« und anschließend »Folie ▸ Neuer Master« (oder in der Symbolleiste \"Standard\" beziehungsweise nach Rechtsklick in den Folienbereich)."
+msgstr "Um verschiedene Masterfolien in einer Präsentation zu verwenden, wählen Sie »Ansicht ▸ Masterfolie« und anschließend »Folie ▸ Neuer Master« (oder in der Symbolleiste \"Standard\" beziehungsweise nach Rechtsklick in den Folienbereich)."
#. b3KPF
#: cui/inc/tipoftheday.hrc:71
@@ -2953,7 +2953,7 @@ msgstr "Um Ihre Tabelle oder Ihre Druckbereiche in Calc an die Seite anzupassen,
#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to include a list item without a bullet or number? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar."
-msgstr ""
+msgstr "Um einen Listeneintrag ohne Aufzählungszeichen oder Nummer einzufügen, verwenden Sie \"Eintrag ohne Nummerierung einfügen\" in der Symbolleiste \"Aufzählungszeichen und Nummerierung\"."
#. ZacQo
#: cui/inc/tipoftheday.hrc:192
@@ -3176,7 +3176,7 @@ msgstr "Um in Calc nur einen Kommentar zu kopieren ohne den Inhalt des Ziels zu
#: 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 "Um Ihre MS Office-Dokumente mittels Dokument-Konverter in das OpenDocument-Format umzuwandeln, wählen Sie »Datei ▸ Assistenten ▸ Dokument-Konverter…«."
+msgstr "Um Ihre MS Office-Dokumente mittels Dokumentkonverter in das OpenDocument-Format umzuwandeln, wählen Sie »Datei ▸ Assistenten ▸ Dokumentkonverter…«."
#. WMueE
#: cui/inc/tipoftheday.hrc:228
@@ -3548,11 +3548,11 @@ 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 Oberfläche \"Gruppiert\" bietet Zugriff auf Funktionen in Gruppen, mit Symbolen für die am häufigsten verwendeten Funktionen und Dropdown-Menüs für andere. Diese Vollvariante begünstigt Funktionen und ist etwas größer als andere."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 Oberfläche \"Gruppiert kompakt\" bietet Zugriff auf Funktionen in Gruppen, mit Symbolen für die am häufigsten verwendeten Funktionen und Dropdown-Menüs für andere. Diese kompakte Variante bevorzugt den vertikalen Raum."
+msgid "The Groupedbar 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
@@ -4116,13 +4116,13 @@ msgstr "Weitere Zeichen…"
#: cui/uiconfig/ui/aboutconfigdialog.ui:24
msgctxt "aboutconfigdialog|AboutConfig"
msgid "Expert Configuration"
-msgstr "Experten-Einstellungen"
+msgstr "Experteneinstellungen"
#. GBiPy
#: cui/uiconfig/ui/aboutconfigdialog.ui:40
msgctxt "aboutconfigdialog|edit"
msgid "Edit"
-msgstr "Bearbeiten"
+msgstr "Bearbeiten…"
#. Z7SA5
#: cui/uiconfig/ui/aboutconfigdialog.ui:46
@@ -7835,7 +7835,7 @@ msgstr "_Rahmen:"
#: cui/uiconfig/ui/cuiimapdlg.ui:169
msgctxt "cuiimapdlg|extended_tip|frameCB"
msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list."
-msgstr "Hier wählen Sie den Frame, in den das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen."
+msgstr "Hier wählen Sie den Frame, in dem das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen."
#. V8Zgo
#: cui/uiconfig/ui/cuiimapdlg.ui:197
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Weist Programmereignissen bestimmte Makros zu. Ein zugewiesenes Makro wird jedes Mal automatisch ausgeführt, wenn das angegebene Ereignis eintritt."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Schriftartformate"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Vorschau"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Wählen Sie typographische Schriftartformate aus und wenden Sie diese auf Zeichen an."
@@ -11386,13 +11404,13 @@ msgstr "Position"
#: cui/uiconfig/ui/javaclasspathdialog.ui:18
msgctxt "javaclasspathdialog|JavaClassPath"
msgid "Class Path"
-msgstr "Klassen-Pfad"
+msgstr "Klassenpfad"
#. cCAqB
#: cui/uiconfig/ui/javaclasspathdialog.ui:105
msgctxt "javaclasspathdialog|label1"
msgid "A_ssigned folders and archives"
-msgstr "Z_ugewiesene Ordner und Archive"
+msgstr "Z_ugewiesene Ordner und Archive:"
#. ERHh7
#: cui/uiconfig/ui/javaclasspathdialog.ui:158
@@ -11416,7 +11434,7 @@ msgstr "Eine Archivdatei im JAR- oder ZIP-Format auswählen und diese Datei zur
#: cui/uiconfig/ui/javaclasspathdialog.ui:204
msgctxt "javaclasspathdialog|folder"
msgid "Add _Folder"
-msgstr "_Ordner hinzufügen"
+msgstr "_Ordner hinzufügen…"
#. WP9Eo
#: cui/uiconfig/ui/javaclasspathdialog.ui:211
@@ -11452,7 +11470,7 @@ msgstr "Java-Startparameter"
#: cui/uiconfig/ui/javastartparametersdialog.ui:105
msgctxt "javastartparametersdialog|label4"
msgid "Java start _parameter"
-msgstr "Java-Start_parameter"
+msgstr "Java-Start_parameter:"
#. Btkis
#: cui/uiconfig/ui/javastartparametersdialog.ui:124
@@ -11464,7 +11482,7 @@ msgstr "Geben Sie JRE-Startparameter genau wie auf der Befehlszeile ein. Klicken
#: cui/uiconfig/ui/javastartparametersdialog.ui:137
msgctxt "javastartparametersdialog|label5"
msgid "Assig_ned start parameters"
-msgstr "Zuge_wiesene Startparameter"
+msgstr "Zuge_wiesene Startparameter:"
#. xjKFh
#: cui/uiconfig/ui/javastartparametersdialog.ui:179
@@ -11494,7 +11512,7 @@ msgstr "Fügt den aktuellen JRE-Startparameter zur Liste hinzu."
#: cui/uiconfig/ui/javastartparametersdialog.ui:230
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
-msgstr "_Bearbeiten"
+msgstr "_Bearbeiten:"
#. 5FP58
#: cui/uiconfig/ui/javastartparametersdialog.ui:238
@@ -11988,7 +12006,7 @@ msgstr "Bibliothek"
#: cui/uiconfig/ui/macroselectordialog.ui:245
msgctxt "macroselectordialog|categoryft"
msgid "Category"
-msgstr "Bereich"
+msgstr "Kategorie"
#. QvKmS
#: cui/uiconfig/ui/macroselectordialog.ui:318
@@ -13420,13 +13438,13 @@ msgstr "Öffnet den Dialog Java-Startparameter."
#: cui/uiconfig/ui/optadvancedpage.ui:154
msgctxt "optadvancedpage|classpath"
msgid "_Class Path..."
-msgstr "_Class Path…"
+msgstr "_Klassenpfad…"
#. qDrtT
#: cui/uiconfig/ui/optadvancedpage.ui:161
msgctxt "extended_tip|classpath"
msgid "Opens the Class Path dialog."
-msgstr "Öffnet den Dialog Class Path."
+msgstr "Öffnet den Dialog Klassenpfad."
#. MxHGu
#: cui/uiconfig/ui/optadvancedpage.ui:233
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Schrift-Einstellungen für HTML-, Basic- und SQL-Quelltexte"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Er_weiterte Tipps"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Diese Option zeigt einen Hilfetext an, wenn Sie den Cursor über ein Symbol, einen Menübefehl oder ein Steuerelement in einem Dialog halten."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Popup \"Keine Offline-Hilfe installiert\" anzeigen"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Dialog \"Tipp des Tages\" beim Starten anzeigen"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hilfe"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-Dialoge _verwenden"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoge zum Öffnen/Speichern"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-Dialoge verwende_n"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoge zum Drucken"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drucken setzt Status \"Dokument geändert\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Bestimmt, ob das Drucken eines Dokuments als Änderung betrachtet wird."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretieren als Jahre zwischen "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Hier legen Sie den Datumsbereich für die automatisch Erkennung zweistelliger Jahreszahlen fest."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "und "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jahr (zweistellig)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Nutzungsdaten sammeln und an The Document Foundation senden"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Sendet Anwendungsdaten, um The Document Foundation dabei zu helfen, die Software-Benutzbarkeit zu verbessern."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Absturzberichte an The Document Foundation senden"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Mithelfen, %PRODUCTNAME zu verbessern"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME beim Systemstart laden"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Schnellstarter aktivieren"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Schnellstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows Standard-Apps"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME Dateizuordnungen"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Hier legen Sie die allgemeinen Einstellungen für %PRODUCTNAME fest."
@@ -14750,7 +14774,7 @@ msgstr "Setzt Änderungen des aktuellen Registers auf jene zurück, die beim Öf
#: cui/uiconfig/ui/optionsdialog.ui:74
msgctxt "optionsdialog|apply"
msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
-msgstr ""
+msgstr "Alle Änderungen speichern, ohne den Dialog zu schließen. Kann nicht mit »Standard« rückgängig gemacht werden."
#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
@@ -17152,7 +17176,7 @@ msgstr "Wenn diese Option aktiviert ist, sind alle Absatzvorlagen mit aktivierte
#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
-msgstr "Rechts und Links"
+msgstr "Rechts und links"
#. xetCH
#: cui/uiconfig/ui/pageformatpage.ui:573
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Oben"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
-msgstr ""
+msgstr "Hintergrund deckt Ränder ab"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
-msgstr ""
+msgstr "Jeder Hintergrund deckt auch die Ränder der Seite ab"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
-msgstr ""
+msgstr "Wenn diese Option aktiviert ist, deckt jeder Hintergrund die gesamte Seite einschließlich der Ränder ab. Wenn deaktiviert, bedeckt jeder Hintergrund die Seite nur innerhalb der Ränder."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Layout-Einstellungen"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -17988,7 +18018,7 @@ msgstr "Tiefgestellt"
#: cui/uiconfig/ui/positionpage.ui:127
msgctxt "positionpage|raiselower"
msgid "Raise/lower by"
-msgstr "Hoch/Tief um"
+msgstr "Hoch/Tief um:"
#. Ac85F
#: cui/uiconfig/ui/positionpage.ui:163
@@ -18000,7 +18030,7 @@ msgstr "Automatisch"
#: cui/uiconfig/ui/positionpage.ui:179
msgctxt "positionpage|relativefontsize"
msgid "Relative font size"
-msgstr "Schriftgröße relativ"
+msgstr "Schriftgröße relativ:"
#. iG3EE
#: cui/uiconfig/ui/positionpage.ui:205
@@ -18030,7 +18060,7 @@ msgstr "270 Grad"
#: cui/uiconfig/ui/positionpage.ui:301
msgctxt "positionpage|label24"
msgid "Scale width"
-msgstr "Breite skalieren"
+msgstr "Breite skalieren:"
#. vAV4A
#: cui/uiconfig/ui/positionpage.ui:327
@@ -18319,14 +18349,14 @@ msgstr "Der Text, aus dem der QR-Code generiert werden soll."
#: cui/uiconfig/ui/qrcodegen.ui:132
msgctxt "qrcodegen|label_text"
msgid "URL/Text:"
-msgstr ""
+msgstr "URL/Text:"
#. FoKEY
#. Set Margin around QR
#: cui/uiconfig/ui/qrcodegen.ui:147
msgctxt "qrcodegen|label_margin"
msgid "Margin:"
-msgstr ""
+msgstr "Rand:"
#. i2kkj
#. Error Correction Level of QR code
@@ -18339,7 +18369,7 @@ msgstr "Fehlerkorrektur:"
#: cui/uiconfig/ui/qrcodegen.ui:200
msgctxt "edit margin"
msgid "The margin surrounding the QR code."
-msgstr ""
+msgstr "Der Rand um den QR-Code."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:217
diff --git a/source/de/dbaccess/messages.po b/source/de/dbaccess/messages.po
index 67401d658f8..3d56ae1af71 100644
--- a/source/de/dbaccess/messages.po
+++ b/source/de/dbaccess/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-08 14:39+0100\n"
-"PO-Revision-Date: 2021-03-28 12:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-04-02 06:37+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -1791,7 +1791,7 @@ msgstr ""
#: dbaccess/inc/strings.hrc:310
msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
msgid "The report, \"$file$\", requires the Report Builder feature."
-msgstr "Der Bericht \"$file$\" benötigt die Funktion Report Builder."
+msgstr "Der Bericht \"$file$\" benötigt die Funktion Bericht-Designer."
#. oC8Px
#: dbaccess/inc/strings.hrc:312
@@ -3870,7 +3870,7 @@ msgstr "So_cket:"
#: dbaccess/uiconfig/ui/mysqlnativesettings.ui:228
msgctxt "mysqlnativesettings|namedpipelabel"
msgid "Named p_ipe:"
-msgstr "Named p_ipe:"
+msgstr "Benannte P_ipe:"
#. CzRyx
#: dbaccess/uiconfig/ui/namematchingpage.ui:67
diff --git a/source/de/desktop/messages.po b/source/de/desktop/messages.po
index be25d2ec632..da94b9183d5 100644
--- a/source/de/desktop/messages.po
+++ b/source/de/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-03-08 13:45+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/de/>\n"
"Language: de\n"
@@ -893,7 +893,7 @@ msgstr "Die Erweiterung kann nicht installiert werden, da die folgenden Systemvo
#: desktop/uiconfig/ui/extensionmanager.ui:8
msgctxt "extensionmanager|ExtensionManagerDialog"
msgid "Extension Manager"
-msgstr "Extension Manager"
+msgstr "Extension-Manager"
#. gjCkd
#: desktop/uiconfig/ui/extensionmanager.ui:80
@@ -947,7 +947,7 @@ msgstr "Wählen Sie die zu entfernende, zu aktivierende oder zu deaktivierende E
#: desktop/uiconfig/ui/extensionmanager.ui:200
msgctxt "extensionmanager|optionsbtn"
msgid "_Options"
-msgstr "_Optionen"
+msgstr "_Optionen…"
#. DbuQS
#: desktop/uiconfig/ui/extensionmanager.ui:207
@@ -959,7 +959,7 @@ msgstr "Wählen Sie eine installierte Extension und klicken Sie hier, um den Opt
#: desktop/uiconfig/ui/extensionmanager.ui:219
msgctxt "extensionmanager|updatebtn"
msgid "Check for _Updates"
-msgstr "Auf _Updates prüfen"
+msgstr "Auf _Updates prüfen…"
#. rirpA
#: desktop/uiconfig/ui/extensionmanager.ui:226
@@ -1019,7 +1019,7 @@ msgstr "Sie finden eine Sammlung von Extensions im Netz."
#: desktop/uiconfig/ui/extensionmanager.ui:389
msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog"
msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions."
-msgstr "Mit dem Extension Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren."
+msgstr "Mit dem Extension-Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren."
#. EGwkP
#: desktop/uiconfig/ui/installforalldialog.ui:12
@@ -1115,7 +1115,7 @@ msgstr "Lizenzvertrag für Extension-Software"
#: desktop/uiconfig/ui/updatedialog.ui:24
msgctxt "updatedialog|UpdateDialog"
msgid "Extension Update"
-msgstr "Extension Update"
+msgstr "Extension-Update"
#. DmHy5
#: desktop/uiconfig/ui/updatedialog.ui:55
@@ -1127,7 +1127,7 @@ msgstr "_Installieren"
#: desktop/uiconfig/ui/updatedialog.ui:122
msgctxt "updatedialog|UPDATE_LABEL"
msgid "_Available extension updates"
-msgstr "_Verfügbare Extension-Updates"
+msgstr "_Verfügbare Extension-Updates:"
#. 3mtLC
#: desktop/uiconfig/ui/updatedialog.ui:135
@@ -1151,7 +1151,7 @@ msgstr "In der Standardeinstellung werden in diesem Dialog nur die herunterladba
#: desktop/uiconfig/ui/updatedialog.ui:257
msgctxt "updatedialog|DESCRIPTION_LABEL"
msgid "Description"
-msgstr "Beschreibung"
+msgstr "Beschreibung:"
#. 7DTtA
#: desktop/uiconfig/ui/updatedialog.ui:276
@@ -1187,7 +1187,7 @@ msgstr "Während nach Updates gesucht wird, wird eine Fortschrittsanzeige angeze
#: desktop/uiconfig/ui/updatedialog.ui:389
msgctxt "updatedialog|extended_tip|UpdateDialog"
msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update."
-msgstr "Klicken Sie auf die Schaltfläche Auf Updates prüfen im Extension Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü Update."
+msgstr "Klicken Sie auf die Schaltfläche »Auf Updates prüfen« im Extension-Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü »Update«."
#. YEhMN
#: desktop/uiconfig/ui/updateinstalldialog.ui:8
@@ -1211,7 +1211,7 @@ msgstr "Ergebnis"
#: desktop/uiconfig/ui/updateinstalldialog.ui:178
msgctxt "updateinstalldialog|extended_tip|UpdateInstallDialog"
msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update."
-msgstr "Klicken Sie auf die Schaltfläche »Auf Updates prüfen« im Extension Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü »Update…«."
+msgstr "Klicken Sie auf die Schaltfläche »Auf Updates prüfen« im Extension-Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü »Update…«."
#. Kfhc4
#: desktop/uiconfig/ui/updaterequireddialog.ui:8
diff --git a/source/de/dictionaries/en/dialog.po b/source/de/dictionaries/en/dialog.po
index 7de848e83a9..8c4ed297cdd 100644
--- a/source/de/dictionaries/en/dialog.po
+++ b/source/de/dictionaries/en/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-03-08 13:45+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesendialog/de/>\n"
"Language: de\n"
@@ -131,7 +131,7 @@ msgctxt ""
"hlp_mdash\n"
"property.text"
msgid "Force unspaced em dash instead of spaced en dash."
-msgstr "Em-Bindestriche ohne Leerstelle gegenüber en-Bindestrichen mit Leerstelle bevorzugen."
+msgstr "Em-Bindestriche ohne Leerstelle gegenüber En-Bindestrichen mit Leerstelle bevorzugen."
#. WCsJy
#: en_en_US.properties
@@ -149,7 +149,7 @@ msgctxt ""
"hlp_ndash\n"
"property.text"
msgid "Force spaced en dash instead of unspaced em dash."
-msgstr "En-Bindestriche mit Leerstelle gegenüber em-Bindestrichen ohne Leerstelle bevorzugen."
+msgstr "En-Bindestriche mit Leerstelle gegenüber Em-Bindestrichen ohne Leerstelle bevorzugen."
#. zGBHG
#: en_en_US.properties
diff --git a/source/de/filter/messages.po b/source/de/filter/messages.po
index 56510de6b66..e6de85fe689 100644
--- a/source/de/filter/messages.po
+++ b/source/de/filter/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-14 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562385794.000000\n"
#. 5AQgJ
@@ -26,19 +26,19 @@ msgstr "Unbekannt"
#: filter/inc/strings.hrc:25
msgctxt "STR_IMPORT_ONLY"
msgid "import filter"
-msgstr "Import Filter"
+msgstr "Importfilter"
#. 7vg82
#: filter/inc/strings.hrc:26
msgctxt "STR_IMPORT_EXPORT"
msgid "import/export filter"
-msgstr "Import/Export Filter"
+msgstr "Im- und Exportfilter"
#. q6Bc5
#: filter/inc/strings.hrc:27
msgctxt "STR_EXPORT_ONLY"
msgid "export filter"
-msgstr "Export Filter"
+msgstr "Exportfilter"
#. AmATR
#: filter/inc/strings.hrc:28
@@ -110,7 +110,7 @@ msgstr "%s XML-Filter wurden in dem Paket '%s' gesichert."
#: filter/inc/strings.hrc:39
msgctxt "STR_FILTER_PACKAGE"
msgid "XSLT filter package"
-msgstr "XSLT Filter Paket"
+msgstr "XSLT-Filterpaket"
#. TAAAB
#: filter/inc/strings.hrc:40
@@ -206,7 +206,7 @@ msgstr "OK"
#: filter/inc/strings.hrc:57
msgctxt "PDF_PROGRESS_BAR"
msgid "Export as PDF"
-msgstr "Exportieren als PDF"
+msgstr "Als PDF exportieren"
#. BGJB2
#. strings used in encryption UI
@@ -269,7 +269,7 @@ msgstr "Ein Formularelement enthielt eine Aktion, die nicht vom PDF/A-Standard u
#: filter/inc/strings.hrc:71
msgctxt "STR_WARN_TRANSP_CONVERTED"
msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
-msgstr "Da das Ziel-PDF-Format keine Transparenzen unterstützt, werden einige Objekte zu Bildern konvertiert, um Transparenzen zu entfernen. Es können eventuell bessere Ergebnisse erzielt werden, wenn die transparenten Objekte vor dem Export entfernt werden."
+msgstr "Da das Ziel-PDF-Format keine Transparenzen unterstützt, werden einige Objekte zu Bildern konvertiert, um Transparenzen zu entfernen. Möglicherweise können bessere Ergebnisse erzielt werden, wenn die transparenten Objekte vor dem Export entfernt werden."
#. qtCcB
#: filter/inc/strings.hrc:72
diff --git a/source/de/filter/source/config/fragments/types.po b/source/de/filter/source/config/fragments/types.po
index 1907f32bb41..d0dd66d4d5f 100644
--- a/source/de/filter/source/config/fragments/types.po
+++ b/source/de/filter/source/config/fragments/types.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2019-11-05 12:23+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
-"Language-Team: German <https://vm137.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentstypes/de/>\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentstypes/de/>\n"
"Language: de\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 3.8\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559618340.000000\n"
#. VQegi
@@ -374,7 +374,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Writer 8 Master Document"
-msgstr "Writer 8-Hauptdokument"
+msgstr "Writer 8-Globaldokument"
#. dp7AA
#: writerglobal8_template.xcu
diff --git a/source/de/formula/messages.po b/source/de/formula/messages.po
index c376cf37229..2bec266e3e6 100644
--- a/source/de/formula/messages.po
+++ b/source/de/formula/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-08 13:45+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1555474717.000000\n"
#. YfKFn
@@ -2600,13 +2600,13 @@ msgstr "(erforderlich)"
#: formula/inc/strings.hrc:27
msgctxt "STR_TITLE1"
msgid "Function Wizard"
-msgstr "Funktions-Assistent"
+msgstr "Funktionsassistent"
#. ctTA6
#: formula/inc/strings.hrc:28
msgctxt "STR_TITLE2"
msgid "Function Wizard -"
-msgstr "Funktions-Assistent –"
+msgstr "Funktionsassistent –"
#. USDCA
#: formula/inc/strings.hrc:29
@@ -2738,7 +2738,7 @@ msgstr "Zeigt die Funktionen der ausgewählten Kategorie an. Zum Auswählen eine
#: formula/uiconfig/ui/functionpage.ui:155
msgctxt "functionpage|extended_tip|FunctionPage"
msgid "Opens the Function Wizard, which helps you to interactively create formulas."
-msgstr "Öffnet den Funktions-Assistenten, der Sie beim interaktiven Erstellen von Formeln unterstützt."
+msgstr "Öffnet den Funktionsassistenten, der Sie beim interaktiven Erstellen von Formeln unterstützt."
#. GCYUY
#: formula/uiconfig/ui/parameter.ui:27
@@ -2750,25 +2750,25 @@ msgstr "Unbekannte Funktion"
#: formula/uiconfig/ui/parameter.ui:226
msgctxt "parameter|extended_tip|FX1"
msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
+msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
#. u3Zoo
#: formula/uiconfig/ui/parameter.ui:242
msgctxt "parameter|extended_tip|FX2"
msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
+msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
#. noEab
#: formula/uiconfig/ui/parameter.ui:258
msgctxt "parameter|extended_tip|FX3"
msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
+msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
#. M3LSb
#: formula/uiconfig/ui/parameter.ui:274
msgctxt "parameter|extended_tip|FX4"
msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
+msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können."
#. 6GD3i
#: formula/uiconfig/ui/parameter.ui:288
diff --git a/source/de/helpcontent2/source/auxiliary.po b/source/de/helpcontent2/source/auxiliary.po
index 4d7e94316e3..3e72a35b821 100644
--- a/source/de/helpcontent2/source/auxiliary.po
+++ b/source/de/helpcontent2/source/auxiliary.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-05-19 12:41+0200\n"
-"PO-Revision-Date: 2020-07-25 13:34+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/de/>\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:36+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/de/>\n"
"Language: de\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: LibreOffice\n"
"X-POOTLE-MTIME: 1562560629.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Befehlsreferenz"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funktionen, Anweisungen und Operatoren"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Alphabetische Liste der Funktionen, Anweisungen und Operatoren"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
@@ -527,7 +527,7 @@ msgctxt ""
"100504\n"
"node.text"
msgid "Agenda Wizard"
-msgstr "Tagesordnungs-Assistent"
+msgstr "Tagesordnungsassistent"
#. gvsML
#: shared.tree
diff --git a/source/de/helpcontent2/source/text/sbasic/guide.po b/source/de/helpcontent2/source/text/sbasic/guide.po
index 024b9e1576a..671f5954e82 100644
--- a/source/de/helpcontent2/source/text/sbasic/guide.po
+++ b/source/de/helpcontent2/source/text/sbasic/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-11-08 19:34+0100\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -455,7 +455,7 @@ msgctxt ""
"N0497\n"
"help.text"
msgid ".ISEMBEDDED = \"document\" ' document script"
-msgstr ".ISEMBEDDED = \"document\" ' Dokumentskript"
+msgstr ".ISEMBEDDED = \"document\" ' Dokumentenskript"
#. GGD4G
#: basic_2_python.xhp
diff --git a/source/de/helpcontent2/source/text/sbasic/python.po b/source/de/helpcontent2/source/text/sbasic/python.po
index 07587b918a1..7cdc3ee6fc2 100644
--- a/source/de/helpcontent2/source/text/sbasic/python.po
+++ b/source/de/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/de/>\n"
"Language: de\n"
@@ -2093,7 +2093,7 @@ msgctxt ""
"hd_id591544049572647\n"
"help.text"
msgid "%PRODUCTNAME Macros container"
-msgstr "%PRODUCTNAME Makro-Container"
+msgstr "%PRODUCTNAME Makrocontainer"
#. xBzRT
#: python_locations.xhp
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_id861544210028670\n"
"help.text"
msgid "The %PRODUCTNAME Macros container location in the file system depends on the operating system:"
-msgstr "Der Speicherort des %PRODUCTNAME Makro-Containers im Dateisystem hängt vom Betriebssystem ab:"
+msgstr "Der Speicherort des %PRODUCTNAME Makrocontainers im Dateisystem hängt vom Betriebssystem ab:"
#. GMBSF
#: python_locations.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"par_id191544209928221\n"
"help.text"
msgid "Libraries are folders in the container tree. To create a library, add a folder in the target container. The library name is the folder name."
-msgstr "Bibliotheken sind Ordner in der Container-Struktur. Fügen Sie dem Zielcontainer einen Ordner hinzu, um eine Bibliothek zu erstellen. Der Bibliotheksname ist der Ordnername."
+msgstr "Bibliotheken sind Ordner in der Containerstruktur. Fügen Sie dem Zielcontainer einen Ordner hinzu, um eine Bibliothek zu erstellen. Der Bibliotheksname ist der Ordnername."
#. hFS3L
#: python_locations.xhp
@@ -3416,4 +3416,4 @@ msgctxt ""
"N0142\n"
"help.text"
msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
-msgstr "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interaktive-Konsole</alt></image>"
+msgstr "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Interaktive Python-Konsole</alt></image>"
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index c6a330deeaf..fb76c026657 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/de/>\n"
"Language: de\n"
@@ -2354,7 +2354,7 @@ msgctxt ""
"par_id3153070\n"
"help.text"
msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
-msgstr "Einfache Variablen können positive oder negative Werte von 3,402823x10E38 bis 1,401298x10E-45 annehmen. Einfache Variablen sind Fließkommavariablen, in welchen die Dezimalpräzesion sinkt, wenn der nicht-dezimale Teil der Nummer steigt. Einfache Variablen sind geeignet für mathematische Berechnungen mit durchschnittlicher Genauigkeit. Berechnungen erfordern mehr Zeit als bei Integer-Variablen, sind aber schneller als Double-Variablen. Eine einfache Variable benötigt 4 Bytes Speicher. Das Zeichen der Typdekleration ist \"!\"."
+msgstr "Einfache Variablen können positive oder negative Werte von 3,402823x10E38 bis 1,401298x10E-45 annehmen. Einfache Variablen sind Fließkommavariablen, in welchen die Dezimalpräzision sinkt, wenn der nicht-dezimale Teil der Nummer steigt. Einfache Variablen sind geeignet für mathematische Berechnungen mit durchschnittlicher Genauigkeit. Berechnungen erfordern mehr Zeit als bei Integer-Variablen, sind aber schneller als Double-Variablen. Eine einfache Variable benötigt 4 Bytes Speicher. Das Zeichen der Typdeklaration ist \"!\"."
#. X2BBe
#: 01020100.xhp
@@ -2417,7 +2417,7 @@ msgctxt ""
"par_id1001576839723156\n"
"help.text"
msgid "Numbers can be encoded using octal and hexadecimal forms."
-msgstr "Nummern können codiert werden, indem das Oktal- und Hexidezimalsystem verwendet wird."
+msgstr "Nummern können codiert werden, indem das Oktal- und Hexadezimalsystem verwendet wird."
#. nGGUD
#: 01020100.xhp
@@ -2642,7 +2642,7 @@ msgctxt ""
"par_idm1341048752\n"
"help.text"
msgid "Dim Text$(-15 To 5) '21 elements (including 0), numbered from -15 to 5'"
-msgstr "Dim Text$(-15 To 5) '21 Elemente (einschließlich 0), von -15 bis 5 numeriert'"
+msgstr "Dim Text$(-15 To 5) '21 Elemente (einschließlich 0), von -15 bis 5 nummeriert'"
#. 6iBW4
#: 01020100.xhp
@@ -3866,7 +3866,7 @@ msgctxt ""
"par_id581574080384335\n"
"help.text"
msgid "<emph>Document</emph>: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document."
-msgstr "<emph>Dokument</emph>: Im Dokument-Container gespeicherte Bibliotheken sind nur für das Dokument verfügbar und nur zugänglich, wenn das Dokument geöffnet ist. Sie können nicht von einem anderen Dokument aus auf Makros eines Dokuments zugreifen."
+msgstr "<emph>Dokument</emph>: Im Dokumentcontainer gespeicherte Bibliotheken sind nur für das Dokument verfügbar und nur zugänglich, wenn das Dokument geöffnet ist. Sie können nicht von einem anderen Dokument aus auf Makros eines Dokuments zugreifen."
#. GCWxT
#: 01030400.xhp
@@ -3875,7 +3875,7 @@ msgctxt ""
"par_id881574081445896\n"
"help.text"
msgid "To access macros stored in libraries of <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph> from another container, including the document container, use the <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope specifier</link>."
-msgstr "Um auf Makros, die in ein den Bibliotheken <emph>%PRODUCTNAME Makros</emph> oder <emph>Meine Makros</emph> gespeichert sind, von einem anderen Container aus zuzugreifen, einschließlich des Dokument-Containers, verwenden Sie den <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope-Specifier</link>."
+msgstr "Um auf Makros, die in den Bibliotheken <emph>%PRODUCTNAME Makros</emph> oder <emph>Meine Makros</emph> gespeichert sind, von einem anderen Container einschließlich des Dokument-Containers aus zuzugreifen, verwenden Sie den <link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope-Spezifizierer</link>."
#. bGzjL
#: 01030400.xhp
@@ -6098,7 +6098,7 @@ msgctxt ""
"par_id3155113\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries.</ahelp>"
-msgstr "<ahelp hid=\".\">Wählen Sie \"Ja\" aus, um die Dropdown-Option für Listen- und Kombinationsfelder zu aktivieren. Dropdown-Steuelemente haben eine Schaltfläche mit Pfeil, die beim Anklicken eine Liste der vorhandenen Feldeinträge anzeigt.</ahelp>"
+msgstr "<ahelp hid=\".\">Wählen Sie \"Ja\" aus, um die Dropdown-Option für Listen- und Kombinationsfelder zu aktivieren. Dropdown-Steuerelemente haben eine Schaltfläche mit Pfeil, die beim Anklicken eine Liste der vorhandenen Feldeinträge anzeigt.</ahelp>"
#. tCz4B
#: 01170101.xhp
@@ -6962,7 +6962,7 @@ msgctxt ""
"par_id9174779\n"
"help.text"
msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl."
-msgstr "Wenn die Wurzeldarstellung auf FALSE gesetzt ist, ist der Wurzelknoten kein gülter Knoten mehr für das Baumansicht-Steuerelement und kann nicht mit einer XTreeControl Methode genutzt werden."
+msgstr "Wenn die Wurzeldarstellung auf FALSE gesetzt ist, ist der Wurzelknoten kein gültiger Knoten mehr für das Baumansicht-Steuerelement und kann nicht mit einer XTreeControl-Methode genutzt werden."
#. KucrS
#: 01170101.xhp
@@ -7124,7 +7124,7 @@ msgctxt ""
"par_id4974822\n"
"help.text"
msgid "The handles are dotted lines that visualize the hierarchy of the tree control."
-msgstr "Die Linien weden gepunktet dargestellt und stellen die Hirarchie im Baum dar."
+msgstr "Die Linien werden gepunktet dargestellt und stellen die Hierarchie im Baum dar."
#. 55Gfe
#: 01170101.xhp
@@ -7151,7 +7151,7 @@ msgctxt ""
"par_id3314004\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether the handles of the nodes should also be displayed at root level.</ahelp>"
-msgstr "<ahelp hid=\".\">Legt fest, ob die Linien der Knoten auch auf der Ursprungs-Ebene angezeigt werden sollen</ahelp>"
+msgstr "<ahelp hid=\".\">Legt fest, ob die Linien der Knoten auch auf der Ursprungsebene angezeigt werden sollen.</ahelp>"
#. GCfuF
#: 01170101.xhp
@@ -7196,7 +7196,7 @@ msgctxt ""
"par_idN10F0A\n"
"help.text"
msgid "<ahelp hid=\".\">Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected.</ahelp>"
-msgstr "<ahelp hid=\".\">Klicken Sie auf das auszuwählende Elemente. Um mehrere Elemente gleichzeitig auszuwählen, muss die Option Mehrfachauswahl aktiviert sein.</ahelp>"
+msgstr "<ahelp hid=\".\">Klicken Sie auf das Element oder die Elemente, die Sie auswählen möchten. Um mehrere Elemente gleichzeitig auszuwählen, muss die Option Mehrfachauswahl aktiviert sein.</ahelp>"
#. 56k8D
#: 01170101.xhp
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_id1134067\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
-msgstr "<ahelp hid=\".\">Bestimmt den Auswahl-Modus, der für das Steuerelement Baumansicht verfügbar ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Bestimmt den Auswahlmodus, der für das Steuerelement Baumansicht verfügbar ist.</ahelp>"
#. roCpn
#: 01170101.xhp
@@ -7277,7 +7277,7 @@ msgctxt ""
"hd_id3149538\n"
"help.text"
msgid "Tabstop"
-msgstr "Tabstop"
+msgstr "Tabstopp"
#. s9gEA
#: 01170101.xhp
@@ -7304,7 +7304,7 @@ msgctxt ""
"par_id3153547\n"
"help.text"
msgid "Only input controls receive the focus when using the <emph>Tab</emph> key. Controls without input like caption controls are omitted."
-msgstr "Nur Eingabesteuerelemente erhalten den Fokus, wenn Sie die Taste <emph>Tabulator</emph> verwenden. Steuerelemente ohne Eingabe wie Bildunterschriftkontrollen werden ausgelassen."
+msgstr "Nur Eingabesteuerelemente erhalten den Fokus, wenn Sie die Taste <emph>Tabulator</emph> verwenden. Steuerelemente ohne Eingabe wie Beschriftungssteuerelemente werden ausgelassen."
#. JTQgu
#: 01170101.xhp
@@ -8114,7 +8114,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr "Das Symbol Information wird dem Dialog hinzuegfügt."
+msgstr "Das Symbol Information wird dem Dialog hinzugefügt."
#. 8sTDk
#: 03010101.xhp
@@ -8411,7 +8411,7 @@ msgctxt ""
"par_id3146915\n"
"help.text"
msgid "Add the Information icon to the dialog."
-msgstr "Das Symbol Information wird dem Dialog hinzuegfügt."
+msgstr "Das Symbol Information wird dem Dialog hinzugefügt."
#. gDmyx
#: 03010102.xhp
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile (Funktion)</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Funktion FreeFile\">Funktion FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Gibt die nächst verfügbare Datenkanalnummer zum Öffnen einer Datei zurück. Verwenden Sie diese Funktion, um eine Datei unter Verwendung einer Datenkanalnummer zu öffnen, die noch nicht von einer bereits geöffneten Datei verwendet wird."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Rückgabewert:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Diese Funktion macht natürlich nur dann Sinn, wenn sie direkt vor einer Anweisung Open aufgerufen wird. FreeFile ermittelt nur die nächste Datenkanalnummer, reserviert sie aber nicht."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Das ist eine Zeile Text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Das ist eine weitere Zeile Text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Das ist eine weitere Zeile Text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Das ist eine Zeile Text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Alle Dateien werden geschlossen\",0,\"Fehler\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Auf Anfang positionieren"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Das ist die erste Zeile Text\" ' Füllt die Zeile mit Text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Das ist die 2.Zeile Text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Das ist die 3.Zeile Text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Das ist ein neuer Text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Das ist Text in Datensatz 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input (Anweisung)</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Anweisung Input#\">Anweisung Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Prüft, ob der Dateizeiger das Dateiende erreicht hat."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (IntAusdruck As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Rückgabewert:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Verwenden Sie EOF, um Fehler zu vermeiden, wenn Sie versuchen, Daten hinter dem Dateiende abzufragen. Wenn Sie die Anweisungen Input oder Get verwenden, um Daten aus einer Datei zu lesen, wird der Dateizeiger um die Anzahl der gelesenen Bytes vorgerückt. Wird das Ende einer Datei erreicht, gibt EOF den Wert \"True\" (-1) zurück."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Das ist eine Zeile Text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Das ist eine weitere Zeile Text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11003,7 +10985,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "Returns the current position in an open file."
-msgstr "Gibt Aufschluß über die gegenwärtige Position innerhalb einer geöffneten Datei."
+msgstr "Gibt Aufschluss über die gegenwärtige Position innerhalb einer geöffneten Datei."
#. paZ9R
#: 03020302.xhp
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Liefert die Größe einer geöffneten Datei zurück."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (Dateinummer)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Rückgabewert:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Um die Dateilänge einer nicht geöffneten Datei zu ermitteln, verwenden Sie die Funktion <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM muss Variant sein"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM auf Anfang positionieren"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Das ist die 1.Zeile Text\" REM Der Reihe nach mit Text füllen"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Das ist die 2.Zeile Text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Das ist die 3.Zeile Text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Das ist ein neuer Text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Das ist Text in Datensatz 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11723,7 +11606,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "This function is not case-sensitive."
-msgstr "Groß- und Kleinschreibung hat keinen Einfluß auf die Funktion."
+msgstr "Groß- und Kleinschreibung hat keinen Einfluss auf die Funktion."
#. DFUj3
#: 03020404.xhp
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Siehe auch: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (Dateinummer As Integer, Attribut As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Rückgabewert:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (Datei im Binärzugriff geöffnet)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Das ist eine Zeile Text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Zugriffsmodus\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Dateiattribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Löscht eine Datei von einem Datenträger."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Datei As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Datei:</emph> Ein beliebiger Zeichenkettenausdruck, der eine eindeutige Dateiangabe enthält. Sie können auch die <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-Schreibweise\">URL-Schreibweise</link> verwenden."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Datei muss vorher angelegt werden"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -14396,7 +14216,7 @@ msgctxt ""
"par_id3148551\n"
"help.text"
msgid "The year part must consist of either two (supported only in YYMMDD format without separators for compatibility) or at least four digits. With four digits leading zeros must be given if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string can be in the range \"-327680101\" to \"327671231\", or \"-32768-01-01\" to \"32767-12-31\"."
-msgstr "Die Jahreszahl muss entweder 2 (was aus Gründen der Kombatibilität nur in dem Format YYMMDD ohne die jeweiligen Separatoren möglich ist) oder eben dann mindestens 4 Ziffern enthalten. Bei Jahreszahlen kleiner als 4 Ziffern, beispielsweise dem 09. Mai 658, muss die Null voran gestellt werden, also beispielsweise 09.05.0658. Bei Zeitangaben vor unserer Zeitrechnung (auch bekannt als B.C. - Before Christ) kann die Jahreszahl ebenfalls mehr als vier Ziffern beinhalten, falls deren Betrag größer als 9999 ist. Die formatierte Zeichenkette kann derzeit im Bereich \"--327680101\" bis \"327671231\" oder \"01.01.-32768\" bis \"31.12.32767\" liegen."
+msgstr "Die Jahreszahl muss entweder 2 (was aus Gründen der Kompatibilität nur in dem Format YYMMDD ohne die jeweiligen Separatoren möglich ist) oder eben dann mindestens 4 Ziffern enthalten. Bei Jahreszahlen kleiner als 4 Ziffern, beispielsweise dem 09. Mai 658, muss die Null vorangestellt werden, also beispielsweise 09.05.0658. Bei Zeitangaben vor unserer Zeitrechnung (auch bekannt als B.C. - Before Christ) kann die Jahreszahl ebenfalls mehr als vier Ziffern beinhalten, falls deren Betrag größer als 9999 ist. Die formatierte Zeichenkette kann derzeit im Bereich \"--327680101\" bis \"327671231\" oder \"01.01.-32768\" bis \"31.12.32767\" liegen."
#. ACdxD
#: 03030108.xhp
@@ -14423,7 +14243,7 @@ msgctxt ""
"par_id3148554\n"
"help.text"
msgid "The YYYY-MM-DD format with separators is supported since %PRODUCTNAME 5.3.4. Years less than 100 or greater than 9999 are accepted since %PRODUCTNAME 5.4 if not in VBA compatibility mode."
-msgstr "Das Format JJJJ-MM-TT mit Separatoren wird seit %PRODUCTNAME 5.3.4 unterstützt. Jahreszahlen kleiner als 100 oder größer als 9999 werden seit %PRODUCTNAME 5.4 akzeptiert, sofern nicht im VBA-Kombatibilitätsmodus."
+msgstr "Das Format JJJJ-MM-TT mit Separatoren wird seit %PRODUCTNAME 5.3.4 unterstützt. Jahreszahlen kleiner als 100 oder größer als 9999 werden seit %PRODUCTNAME 5.4 akzeptiert, sofern nicht im VBA-Kompatibilitätsmodus."
#. DahpE
#: 03030108.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Verzweigt nach dem Auftreten eines Fehlers während der Programmausführung in eine Fehlerbehandlungsroutine oder setzt die Programmausführung fort."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Die Anweisung \"On Error GoTo\" wird verwendet, um auf Fehler, die während der Ausführung eines Makros auftreten, zu reagieren."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Das ist eine Zeile Text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Alle Dateien werden geschlossen\",0,\"Fehler\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD (mathematischer Operator)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operator Mod\">Operator Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Liefert den ganzzahligen Rest einer Division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Ergebnis = Ausdruck1 MOD Ausdruck2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Rückgabewert:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Ergebnis:</emph> Eine beliebige numerische Variable, die das Ergebnis der MOD-Berechnung aufnimmt."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Ausdruck1, Ausdruck2:</emph> Beliebige zu dividierende numerische Ausdrücke."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Beispiel:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Ergebnis = Ausdruck1 MOD Ausdruck2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' Liefert 0 zurück"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' Liefert 4 zurück"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' Liefert 0 zurück"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' Liefert 2 zurück"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' Liefert 5 zurück"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' Liefert 0.5 zurück"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -25628,7 +25430,7 @@ msgctxt ""
"par_id3125864\n"
"help.text"
msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages</menuitem>) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
-msgstr "Wenn Sie eine Zeichenkette konvertieren, müssen Datum und Uhrzeit entweder in einem der für Ihre Gebietsschema-Einstellung definierten Datum-Annahmemuster eingegeben werden (siehe <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – Spracheinstellungen – Sprachen</menuitem>) oder im ISO-Datumsfomat (momentan wird nur das ISO-Format mit Bindestrichen akzeptiert, beispielsweise \"2012-12-31\"). In numerischen Ausdrücken stehen die Werte links von der Dezimalstelle für das Datum ab dem 31. Dezember 1899. Die Werte rechts von der Dezimalstelle stehen für die Uhrzeit."
+msgstr "Wenn Sie eine Zeichenkette konvertieren, müssen Datum und Uhrzeit entweder in einem der für Ihre Gebietsschema-Einstellung definierten Datum-Annahmemuster eingegeben werden (siehe <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – Spracheinstellungen – Sprachen</menuitem>) oder im ISO-Datumsformat (momentan wird nur das ISO-Format mit Bindestrichen akzeptiert, beispielsweise \"2012-12-31\"). In numerischen Ausdrücken stehen die Werte links von der Dezimalstelle für das Datum ab dem 31. Dezember 1899. Die Werte rechts von der Dezimalstelle stehen für die Uhrzeit."
#. hCKkH
#: 03100300.xhp
@@ -30065,7 +29867,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "Uno type : A UnoObject"
-msgstr "Uno type: Ein Uno-Ubjekt"
+msgstr "Uno type: Ein Uno-Objekt"
#. AsDnS
#: 03104500.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Vergleichsoperatoren"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Vergleichsoperatoren\">Vergleichsoperatoren</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Hier werden alle Vergleichsoperatoren erklärt."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
@@ -34790,7 +34565,7 @@ msgctxt ""
"par_id3152924\n"
"help.text"
msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr "Instanziert einen Uno service am ProcessServiceManager."
+msgstr "Instanziiert einen Uno-Dienst mit dem ProcessServiceManager."
#. NjYQ2
#: 03131600.xhp
@@ -35033,7 +34808,7 @@ msgctxt ""
"bm_id3150682\n"
"help.text"
msgid "<bookmark_value>GlobalScope specifier</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>Library container</bookmark_value><bookmark_value>GlobalScope</bookmark_value><bookmark_value>API; BasicLibraries</bookmark_value><bookmark_value>API; DialogLibraries</bookmark_value><bookmark_value>BasicLibraries; library container</bookmark_value><bookmark_value>DialogLibraries; library container</bookmark_value>"
-msgstr "<bookmark_value>GlobalScope (Spezifizierer)</bookmark_value><bookmark_value>Bibliotheks-Systeme</bookmark_value><bookmark_value>Bibliotheks-Container</bookmark_value><bookmark_value>GlobalScope</bookmark_value><bookmark_value>API; BasicLibraries</bookmark_value><bookmark_value>API; DialogLibraries</bookmark_value><bookmark_value>BasicLibraries; Bibliotheks-Container</bookmark_value><bookmark_value>DialogLibraries; Bibliotheks-Container</bookmark_value>"
+msgstr "<bookmark_value>GlobalScope (Spezifizierer)</bookmark_value><bookmark_value>Bibliothekssysteme</bookmark_value><bookmark_value>Bibliothekscontainer</bookmark_value><bookmark_value>GlobalScope</bookmark_value><bookmark_value>API; BasicLibraries</bookmark_value><bookmark_value>API; DialogLibraries</bookmark_value><bookmark_value>BasicLibraries; Bibliothekscontainer</bookmark_value><bookmark_value>DialogLibraries; Bibliothekscontainer</bookmark_value>"
#. 4nALX
#: 03131900.xhp
@@ -35051,7 +34826,7 @@ msgctxt ""
"par_id991572457387308\n"
"help.text"
msgid "To manage personal or shared library containers (<emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph>) from within a document, use the <literal>GlobalScope</literal> specifier."
-msgstr "Um gemeinsame genutzte oder persönliche Bibliotheks-Container (<emph>%PRODUCTNAME Makros</emph> oder <emph>Meine Makros</emph>) aus einem Dokuments heraus zu verwalten, verwenden Sie den Spezifizierer <literal>GlobalScope</literal>."
+msgstr "Um gemeinsame genutzte oder persönliche Bibliothekscontainer (<emph>%PRODUCTNAME Makros</emph> oder <emph>Meine Makros</emph>) aus einem Dokument heraus zu verwalten, verwenden Sie den Spezifizierer <literal>GlobalScope</literal>."
#. Jz8ET
#: 03131900.xhp
@@ -35060,7 +34835,7 @@ msgctxt ""
"par_id3153345\n"
"help.text"
msgid "Basic source code and dialogs are organized in library containers. Libraries can contain modules and dialogs."
-msgstr "Basic-Quellcode und Dialoge sind in Bibliotheks-Containern organisiert. Bibliotheken können Module und Dialoge enthalten."
+msgstr "Basic-Quellcode und Dialoge sind in Bibliothekscontainern organisiert. Bibliotheken können Module und Dialoge enthalten."
#. BhGwB
#: 03131900.xhp
@@ -35105,7 +34880,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "<literal>BasicLibraries</literal> and <literal>DialogLibraries</literal> containers exist at application level and within every document. Document's library containers do not need the <literal>GlobalScope</literal> specifier to be managed. If you want to call a global library container (located in <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph>) from within a document, you must use the <literal>GlobalScope</literal> specifier."
-msgstr "<literal>BasicLibraries</literal>- und <literal>DialogLibraries</literal>-Container sind auf Anwendungsebene und in jedem Dokument vorhanden. Für die Bibliotheks-Container des Dokuments muss der <literal>GlobalScope</literal>-Spezifizierer nicht verwaltet werden. Wenn Sie einen globalen Bibliotheks-Ccontainer (in <emph>%PRODUCTNAME Makros</emph> oder <emph>Meine Makros</emph>) aus einem Dokument heraus aufrufen möchten, müssen Sie den <literal>GlobalScope</literal>-Spezifizierer verwenden."
+msgstr "<literal>BasicLibraries</literal>- und <literal>DialogLibraries</literal>-Container sind auf Anwendungsebene und in jedem Dokument vorhanden. Für die Bibliothekscontainer des Dokuments muss der <literal>GlobalScope</literal>-Spezifizierer nicht verwaltet werden. Wenn Sie einen globalen Bibliothekscontainer (in <emph>%PRODUCTNAME Makros</emph> oder <emph>Meine Makros</emph>) aus einem Dokument heraus aufrufen möchten, müssen Sie den <literal>GlobalScope</literal>-Spezifizierer verwenden."
#. BDRji
#: 03131900.xhp
@@ -35123,7 +34898,7 @@ msgctxt ""
"par_id3158408\n"
"help.text"
msgid "' calling Dialog1 in the document library Standard"
-msgstr "' Ansprechen von Dialog1 in der Dokumenten-Bibliothek Standard"
+msgstr "' Ansprechen von Dialog1 in der Dokumentenbibliothek Standard"
#. BcE6x
#: 03131900.xhp
@@ -35168,7 +34943,7 @@ msgctxt ""
"par_id3149346\n"
"help.text"
msgid "Creates a Listener instance."
-msgstr "Instanziert einen Listener."
+msgstr "Instanziiert einen Listener."
#. X9iCk
#: 03132000.xhp
@@ -35186,7 +34961,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr "oListener = CreateUnoListener( Praefixname, ListenerSchnittstelleName )"
+msgstr "oListener = CreateUnoListener( Präfixname, ListenerSchnittstelleName )"
#. B3pJi
#: 03132000.xhp
diff --git a/source/de/helpcontent2/source/text/sbasic/shared/03.po b/source/de/helpcontent2/source/text/sbasic/shared/03.po
index 22a6de4f92b..dd196437fd3 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/de/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/de/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc.po b/source/de/helpcontent2/source/text/scalc.po
index a73995ca684..3bdcd79c383 100644
--- a/source/de/helpcontent2/source/text/scalc.po
+++ b/source/de/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-07-27 05:34+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/de/>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/de/>\n"
"Language: de\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: 1513085807.000000\n"
#. ZxQeC
@@ -545,7 +545,7 @@ msgctxt ""
"hd_id3154015\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur-Optionen...\">AutoKorrektur-Optionen...</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur-Optionen…</link>"
#. eAavz
#: main0106.xhp
@@ -1544,7 +1544,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
-msgstr "Außerdem steht Ihnen der <link href=\"text/scalc/01/04060000.xhp\" name=\"Assistent\">Funktions-Assistent</link> als Hilfe zum Erstellen von Formeln zur Verfügung."
+msgstr "Außerdem steht Ihnen der <link href=\"text/scalc/01/04060000.xhp\" name=\"Assistent\">Funktionsassistent</link> als Hilfe zum Erstellen von Formeln zur Verfügung."
#. jARFA
#: main0503.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/00.po b/source/de/helpcontent2/source/text/scalc/00.po
index cae354204b2..2aaf2da1133 100644
--- a/source/de/helpcontent2/source/text/scalc/00.po
+++ b/source/de/helpcontent2/source/text/scalc/00.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-08 14:39+0100\n"
-"PO-Revision-Date: 2020-07-27 05:34+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc00/de/>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/de/>\n"
"Language: de\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: 1564805193.000000\n"
#. E9tti
@@ -464,7 +464,7 @@ msgctxt ""
"par_id3154370\n"
"help.text"
msgid "Function Wizard"
-msgstr "Funktions-Assistent"
+msgstr "Funktionsassistent"
#. CfMjV
#: 00000404.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index 70c676fd429..a8768945b5e 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -3821,7 +3821,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Function Wizard"
-msgstr "Funktions-Assistent"
+msgstr "Funktionsassistent"
#. DHRxH
#: 04060000.xhp
@@ -3830,7 +3830,7 @@ msgctxt ""
"bm_id3147426\n"
"help.text"
msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
-msgstr "<bookmark_value>Funktionen einfügen; Funktions-Assistent</bookmark_value><bookmark_value>Funktionen; Funktions-Assistent</bookmark_value><bookmark_value>Assistenten; Funktionen</bookmark_value>"
+msgstr "<bookmark_value>Funktionen einfügen; Funktionsassistent</bookmark_value><bookmark_value>Funktionen; Funktionsassistent</bookmark_value><bookmark_value>Assistenten; Funktionen</bookmark_value>"
#. KeWpp
#: 04060000.xhp
@@ -3848,7 +3848,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable>"
-msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Öffnet das Fenster <emph>Funktions-Assistent</emph>, das Sie beim interaktiven Erstellen von Formeln unterstützt.</ahelp></variable>"
+msgstr "<variable id=\"funktionsautopilottext\"><ahelp hid=\".\">Öffnet das Fenster <emph>Funktionsassistent</emph>, das Sie beim interaktiven Erstellen von Formeln unterstützt.</ahelp></variable>"
#. exDJs
#: 04060000.xhp
@@ -3875,7 +3875,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
-msgstr "Der <emph>Funktions-Assistent</emph> umfasst zwei Register: <emph>Funktionen</emph> zum Erstellen von Formeln und <emph>Struktur</emph> zum Prüfen der Formelstruktur."
+msgstr "Der <emph>Funktionsassistent</emph> umfasst zwei Register: <emph>Funktionen</emph> zum Erstellen von Formeln und <emph>Struktur</emph> zum Prüfen der Formelstruktur."
#. v7CjU
#: 04060000.xhp
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
-msgstr "<ahelp hid=\".\">Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des <emph>Funktions-Assistenten</emph>, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können.</ahelp>"
+msgstr "<ahelp hid=\".\">Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des <emph>Funktionsassistenten</emph>, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können.</ahelp>"
#. GSRgn
#: 04060000.xhp
@@ -4100,7 +4100,7 @@ msgctxt ""
"par_id3149898\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
-msgstr "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Zeigt die erstellte Formel an. Geben Sie die Formel entweder direkt ein oder erstellen Sie eine mithilfe des Funktions-Assistenten.</ahelp>"
+msgstr "<ahelp hid=\"formula/ui/formuladialog/ed_formula\">Zeigt die erstellte Formel an. Geben Sie die Formel entweder direkt ein oder erstellen Sie eine mithilfe des Funktionsassistenten.</ahelp>"
#. iBGou
#: 04060000.xhp
@@ -4172,7 +4172,7 @@ msgctxt ""
"par_id3153029\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/ok\">Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells.</ahelp>"
-msgstr "<ahelp hid=\"formula/ui/formuladialog/ok\">Beendet den <emph>Funktions-Assistenten</emph> und überträgt die Formel in die ausgewählten Zellen.</ahelp>"
+msgstr "<ahelp hid=\"formula/ui/formuladialog/ok\">Beendet den <emph>Funktionsassistenten</emph> und überträgt die Formel in die ausgewählten Zellen.</ahelp>"
#. fBUkR
#: 04060000.xhp
@@ -4217,7 +4217,7 @@ msgctxt ""
"par_id3149350\n"
"help.text"
msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
-msgstr "Wenn Sie den <emph>Funktions-Assistenten</emph> aufrufen, während sich der Zellcursor in einer Zelle mit einer Funktion befindet, wird das Register <emph>Struktur</emph> geöffnet, in dem der Aufbau der aktuellen Formel angezeigt wird."
+msgstr "Wenn Sie den <emph>Funktionsassistenten</emph> aufrufen, während sich der Zellcursor in einer Zelle mit einer Funktion befindet, wird das Register <emph>Struktur</emph> geöffnet, in dem der Aufbau der aktuellen Formel angezeigt wird."
#. bNwhM
#: 04060000.xhp
@@ -4280,7 +4280,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
-msgstr "In diesem Abschnitt werden die Funktionen von $[officename] Calc beschrieben. Dabei sind die verschiedenen Funktionen im Funktions-Assistenten zu Kategorien zusammengefasst."
+msgstr "In diesem Abschnitt werden die Funktionen von $[officename] Calc beschrieben. Dabei sind die verschiedenen Funktionen im Funktionsassistenten zu Kategorien zusammengefasst."
#. JJJ2y
#: 04060100.xhp
@@ -5972,7 +5972,7 @@ msgctxt ""
"bm_id3154536\n"
"help.text"
msgid "<bookmark_value>date and time functions</bookmark_value> <bookmark_value>functions; date & time</bookmark_value> <bookmark_value>Function Wizard; date & time</bookmark_value>"
-msgstr "<bookmark_value>Datums- und Zeitfunktionen</bookmark_value><bookmark_value>Funktionen; Datum und Zeit</bookmark_value><bookmark_value>Funktions-Assistent; Datum und Zeit</bookmark_value>"
+msgstr "<bookmark_value>Datums- und Zeitfunktionen</bookmark_value><bookmark_value>Funktionen; Datum und Zeit</bookmark_value><bookmark_value>Funktionsassistent; Datum und Zeit</bookmark_value>"
#. 4twnp
#: 04060102.xhp
@@ -6188,7 +6188,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
-msgstr "<bookmark_value>Finanzmathematische Funktionen</bookmark_value><bookmark_value>Funktionen; finanzmathematische Funktionen</bookmark_value><bookmark_value>Funktions-Assistent; finanzmathematisch</bookmark_value><bookmark_value>Amortisierung, siehe auch Abschreibungen</bookmark_value>"
+msgstr "<bookmark_value>Finanzmathematische Funktionen</bookmark_value><bookmark_value>Funktionen; finanzmathematische Funktionen</bookmark_value><bookmark_value>Funktionsassistent; finanzmathematisch</bookmark_value><bookmark_value>Amortisierung, siehe auch Abschreibungen</bookmark_value>"
#. 3uCaF
#: 04060103.xhp
@@ -8213,7 +8213,7 @@ msgctxt ""
"bm_id3147247\n"
"help.text"
msgid "<bookmark_value>information functions</bookmark_value> <bookmark_value>Function Wizard; information</bookmark_value> <bookmark_value>functions; information functions</bookmark_value>"
-msgstr "<bookmark_value>Informationsfunktionen</bookmark_value><bookmark_value>Funktions-Assistent; Informationen</bookmark_value><bookmark_value>Funktionen; Informationsfunktionen</bookmark_value>"
+msgstr "<bookmark_value>Informationsfunktionen</bookmark_value><bookmark_value>Funktionsassistent; Informationen</bookmark_value><bookmark_value>Funktionen; Informationsfunktionen</bookmark_value>"
#. rdDfi
#: 04060104.xhp
@@ -10427,7 +10427,7 @@ msgctxt ""
"bm_id3153484\n"
"help.text"
msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
-msgstr "<bookmark_value>Logische Funktionen</bookmark_value><bookmark_value>Funktions-Assistent; logisch</bookmark_value><bookmark_value>Funktionen; logische Funktionen</bookmark_value>"
+msgstr "<bookmark_value>Logische Funktionen</bookmark_value><bookmark_value>Funktionsassistent; logisch</bookmark_value><bookmark_value>Funktionen; logische Funktionen</bookmark_value>"
#. HZKH9
#: 04060105.xhp
@@ -11003,7 +11003,7 @@ msgctxt ""
"bm_id3147124\n"
"help.text"
msgid "<bookmark_value>mathematical functions</bookmark_value> <bookmark_value>Function Wizard; mathematical</bookmark_value> <bookmark_value>functions; mathematical functions</bookmark_value> <bookmark_value>trigonometric functions</bookmark_value>"
-msgstr "<bookmark_value>Mathematische Funktionen</bookmark_value><bookmark_value>Funktions-Assistent; mathematische Funktionen</bookmark_value><bookmark_value>Funktionen; mathematische Funktionen</bookmark_value><bookmark_value>Trigonometrische Funktionen</bookmark_value>"
+msgstr "<bookmark_value>Mathematische Funktionen</bookmark_value><bookmark_value>Funktionsassistent; mathematische Funktionen</bookmark_value><bookmark_value>Funktionen; mathematische Funktionen</bookmark_value><bookmark_value>Trigonometrische Funktionen</bookmark_value>"
#. 9umC6
#: 04060106.xhp
@@ -11021,7 +11021,7 @@ msgctxt ""
"par_id3154943\n"
"help.text"
msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
-msgstr "<variable id=\"mathematiktext\">Diese Kategorie enthält <emph>mathematische</emph> Funktionen für Calc.</variable> Um den <emph>Funktions-Assistenten</emph> zu öffnen, wählen Sie <link href=\"text/scalc/01/04060000.xhp\" name=\"Einfügen - Funktion...\"><emph>Einfügen - Funktion...</emph></link>."
+msgstr "<variable id=\"mathematiktext\">Diese Kategorie enthält <emph>mathematische</emph> Funktionen für Calc.</variable> Um den <emph>Funktionsassistenten</emph> zu öffnen, wählen Sie <link href=\"text/scalc/01/04060000.xhp\" name=\"Einfügen - Funktion...\"><emph>Einfügen - Funktion...</emph></link>."
#. bWDf7
#: 04060106.xhp
@@ -15683,7 +15683,7 @@ msgctxt ""
"bm_id3147273\n"
"help.text"
msgid "<bookmark_value>matrices; functions</bookmark_value><bookmark_value>Function Wizard; arrays</bookmark_value><bookmark_value>array formulas</bookmark_value><bookmark_value>inline array constants</bookmark_value><bookmark_value>formulas; arrays</bookmark_value><bookmark_value>functions; array functions</bookmark_value><bookmark_value>editing; array formulas</bookmark_value><bookmark_value>copying; array formulas</bookmark_value><bookmark_value>adjusting array ranges</bookmark_value><bookmark_value>calculating; conditional calculations</bookmark_value><bookmark_value>matrices; calculations</bookmark_value><bookmark_value>conditional calculations with arrays</bookmark_value><bookmark_value>implicit array handling</bookmark_value><bookmark_value>forced array handling</bookmark_value>"
-msgstr "<bookmark_value>Matrizen; Funktionen</bookmark_value><bookmark_value>Funktions-Assistent; Matrizen</bookmark_value><bookmark_value>Matrizen; Formeln</bookmark_value><bookmark_value>Matrizen; Konstanten</bookmark_value><bookmark_value>Funktionen; Matrizen</bookmark_value><bookmark_value>Formeln; Matrizen</bookmark_value><bookmark_value>Bearbeiten; Matrixformeln</bookmark_value><bookmark_value>Kopieren; Matrixformeln</bookmark_value><bookmark_value>Matrixbereiche anpassen</bookmark_value><bookmark_value>Berechnen; Bedingungen bei Matrizen</bookmark_value><bookmark_value>Matrizen; Berechnungen</bookmark_value><bookmark_value>Bedingungen; Berechnungen bei Matrizen</bookmark_value><bookmark_value>Implizite Matrixbearbeitung</bookmark_value><bookmark_value>Erzwungene Matrixbearbeitung</bookmark_value>"
+msgstr "<bookmark_value>Matrizen; Funktionen</bookmark_value><bookmark_value>Funktionsassistent; Matrizen</bookmark_value><bookmark_value>Matrizen; Formeln</bookmark_value><bookmark_value>Matrizen; Konstanten</bookmark_value><bookmark_value>Funktionen; Matrizen</bookmark_value><bookmark_value>Formeln; Matrizen</bookmark_value><bookmark_value>Bearbeiten; Matrixformeln</bookmark_value><bookmark_value>Kopieren; Matrixformeln</bookmark_value><bookmark_value>Matrixbereiche anpassen</bookmark_value><bookmark_value>Berechnen; Bedingungen bei Matrizen</bookmark_value><bookmark_value>Matrizen; Berechnungen</bookmark_value><bookmark_value>Bedingungen; Berechnungen bei Matrizen</bookmark_value><bookmark_value>Implizite Matrixbearbeitung</bookmark_value><bookmark_value>Erzwungene Matrixbearbeitung</bookmark_value>"
#. ALUph
#: 04060107.xhp
@@ -15845,7 +15845,7 @@ msgctxt ""
"par_id3149102\n"
"help.text"
msgid "If you create an array formula using the <emph>Function Wizard</emph>, you must mark the <emph>Array</emph> check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned."
-msgstr "Beim Erstellen von Matrixformeln im Fenster <emph>Funktions-Assistent</emph> müssen Sie jedes Mal das Markierfeld <emph>Matrix</emph> aktivieren, damit die Ergebnisse in einer Matrix ausgegeben werden. Anderenfalls wird nur der Wert der oberen linken Zelle der zu berechnenden Matrix geliefert."
+msgstr "Beim Erstellen von Matrixformeln im Fenster <emph>Funktionsassistent</emph> müssen Sie jedes Mal das Markierfeld <emph>Matrix</emph> aktivieren, damit die Ergebnisse in einer Matrix ausgegeben werden. Anderenfalls wird nur der Wert der oberen linken Zelle der zu berechnenden Matrix geliefert."
#. G9EUo
#: 04060107.xhp
@@ -16097,7 +16097,7 @@ msgctxt ""
"par_id3146787\n"
"help.text"
msgid "Select a range of cells where you want to insert the array formula and either press <emph>F2</emph> or position the cursor in the input line."
-msgstr "Wählen Sie den Zellbereich aus, in den die Matrixformel eingefügt werden soll. Drücken Sie dann entweder die Taste <emph>F2</emph> oder setzen Sie den Cursor in die Eingabezeile."
+msgstr "Wählen Sie den Zellbereich aus, in dem die Matrixformel eingefügt werden soll. Drücken Sie dann entweder die Taste <emph>F2</emph> oder setzen Sie den Cursor in die Eingabezeile."
#. EBtxq
#: 04060107.xhp
@@ -16511,7 +16511,7 @@ msgctxt ""
"par_id3150312\n"
"help.text"
msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the <emph>Function Wizard</emph>. Select the <emph>Data</emph> range in (A1:A11), and then the <emph>Classes</emph> range in which you entered the class limits (B1:B6). Select the <emph>Array</emph> check box and click <emph>OK</emph>. You will see the frequency count in the range C1:C6."
-msgstr "Wählen Sie einen einspaltigen Bereich aus, in den die Häufigkeit der Werte gemäß der Klassengrenzen eingetragen werden soll. Sie müssen eine Zelle über die oberste Klasse hinaus auswählen. Für dieses Beispiel wählen Sie den Bereich C1:C6. Rufen Sie die Funktion HÄUFIGKEIT im <emph>Funktions-Assistenten</emph> auf. Wählen Sie den Bereich <emph>Daten</emph> als (A1:A11) und den Bereich <emph>Klassen</emph>, in den Sie die Klassengrenzen eingegeben haben als (B1:B6). Aktivieren Sie das Kontrollkästchen <emph>Matrix</emph> und klicken Sie auf <emph>OK</emph>. Die Häufigkeitszählung erscheint im Bereich C1:C6."
+msgstr "Wählen Sie einen einspaltigen Bereich aus, in dem die Häufigkeit der Werte gemäß der Klassengrenzen eingetragen werden soll. Sie müssen eine Zelle über die oberste Klasse hinaus auswählen. Für dieses Beispiel wählen Sie den Bereich C1:C6. Rufen Sie die Funktion HÄUFIGKEIT im <emph>Funktionsassistenten</emph> auf. Wählen Sie den Bereich <emph>Daten</emph> als (A1:A11) und den Bereich <emph>Klassen</emph>, in dem Sie die Klassengrenzen eingegeben haben als (B1:B6). Aktivieren Sie das Kontrollkästchen <emph>Matrix</emph> und klicken Sie auf <emph>OK</emph>. Die Häufigkeitszählung erscheint im Bereich C1:C6."
#. shMJG
#: 04060107.xhp
@@ -16682,7 +16682,7 @@ msgctxt ""
"par_id3146826\n"
"help.text"
msgid "Select a square range. Choose the MMULT function. Select <emph>Array 1</emph>, then select <emph>Array 2</emph>. Using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. Click <emph>OK</emph>. The output array will appear in the first selected range."
-msgstr "Wählen Sie einen quadratischen Bereich aus. Rufen Sie die Funktion MMULT auf. Wählen Sie <emph>Matrix 1</emph> und anschließend <emph>Matrix 2</emph> aus. Bei Verwendung des <emph>Funktions-Assistenten</emph> aktivieren Sie das Markierfeld <emph>Matrix</emph>. Klicken Sie auf die Schaltfläche <emph>OK</emph>. Die Ausgabematrix wird im ersten ausgewählten Bereich angezeigt."
+msgstr "Wählen Sie einen quadratischen Bereich aus. Rufen Sie die Funktion MMULT auf. Wählen Sie <emph>Matrix 1</emph> und anschließend <emph>Matrix 2</emph> aus. Bei Verwendung des <emph>Funktionsassistenten</emph> aktivieren Sie das Markierfeld <emph>Matrix</emph>. Klicken Sie auf die Schaltfläche <emph>OK</emph>. Die Ausgabematrix wird im ersten ausgewählten Bereich angezeigt."
#. vPBWq
#: 04060107.xhp
@@ -16745,7 +16745,7 @@ msgctxt ""
"par_id3159366\n"
"help.text"
msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Shift + Command + Enter</emph></caseinline><defaultinline><emph>Shift + Ctrl + Enter</emph></defaultinline></switchinline>. Or, if you are using the <emph>Function Wizard</emph>, mark the <emph>Array</emph> check box. The transposed array appears in the selected target range and is protected automatically against changes."
-msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens die selbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus, und drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Umschalt+Befehl+Eingabetaste</emph></caseinline><defaultinline><emph>Umschalt+Strg+Eingabetaste</emph></defaultinline></switchinline>. Anderenfalls, wenn Sie mit dem <emph>Funktions-Assistenten</emph> arbeiten, aktivieren Sie das Markierfeld <emph>Matrix</emph>. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt."
+msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens die selbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus und drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Umschalt+Befehl+Eingabetaste</emph></caseinline><defaultinline><emph>Umschalt+Strg+Eingabetaste</emph></defaultinline></switchinline>. Anderenfalls, wenn Sie mit dem <emph>Funktionsassistenten</emph> arbeiten, aktivieren Sie das Markierfeld <emph>Matrix</emph>. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt."
#. 3oHh6
#: 04060107.xhp
@@ -17069,7 +17069,7 @@ msgctxt ""
"par_id3144687\n"
"help.text"
msgid "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the <emph>Function Wizard</emph>. For the LINEST function to work, you must have marked the <emph>Array</emph> check box in the <emph>Function Wizard</emph>. Next, select the following values in the spreadsheet (or enter them using the keyboard):"
-msgstr "Spalte A enthält mehrere X1-Werte, Spalte B mehrere X2-Werte und Spalte C die Y-Werte. Diese Werte haben Sie bereits in das Tabellendokument eingefügt. Sie haben nun E2:G6 im Tabellendokument eingerichtet und den <emph>Funktions-Assistenten</emph> aktiviert. Damit RGP funktioniert, müssen Sie außerdem das Markierfeld <emph>Matrix</emph> im Fenster <emph>Funktions-Assistent</emph> aktivieren. Nun wählen Sie die folgenden Werte im Tabellendokument aus (oder geben sie über die Tastatur ein):"
+msgstr "Spalte A enthält mehrere X1-Werte, Spalte B mehrere X2-Werte und Spalte C die Y-Werte. Diese Werte haben Sie bereits in das Tabellendokument eingefügt. Sie haben nun E2:G6 im Tabellendokument eingerichtet und den <emph>Funktionsassistenten</emph> aktiviert. Damit RGP funktioniert, müssen Sie außerdem das Markierfeld <emph>Matrix</emph> im Fenster <emph>Funktionsassistent</emph> aktivieren. Nun wählen Sie die folgenden Werte im Tabellendokument aus (oder geben sie über die Tastatur ein):"
#. KgyyZ
#: 04060107.xhp
@@ -17762,7 +17762,7 @@ msgctxt ""
"bm_id3153018\n"
"help.text"
msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
-msgstr "<bookmark_value>Statistikfunktionen</bookmark_value><bookmark_value>Funktions-Assistent; Statistiken</bookmark_value><bookmark_value>Funktionen; statistische Funktionen</bookmark_value>"
+msgstr "<bookmark_value>Statistikfunktionen</bookmark_value><bookmark_value>Funktionsassistent; Statistiken</bookmark_value><bookmark_value>Funktionen; statistische Funktionen</bookmark_value>"
#. KKBEq
#: 04060108.xhp
@@ -17834,7 +17834,7 @@ msgctxt ""
"bm_id3148522\n"
"help.text"
msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
-msgstr "<bookmark_value>Tabellen; Funktionen</bookmark_value><bookmark_value>Funktions-Assistent; Tabellen </bookmark_value><bookmark_value>Funktionen; Tabellen</bookmark_value>"
+msgstr "<bookmark_value>Tabellen; Funktionen</bookmark_value><bookmark_value>Funktionsassistent; Tabellen </bookmark_value><bookmark_value>Funktionen; Tabellen</bookmark_value>"
#. qcCTY
#: 04060109.xhp
@@ -20039,7 +20039,7 @@ msgctxt ""
"par_id1672109\n"
"help.text"
msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
-msgstr "Von der zweiten Syntaxvariante wird ausgegangen, wenn genau zwei Parameter vorhanden sind, von denen der erste eine Zelle oder ein Zellbereich ist. In allen anderen Fällen wird von der ersten Syntaxvariante ausgegangen. Der Funktions-Assistent zeigt die erste Syntaxvariante."
+msgstr "Von der zweiten Syntaxvariante wird ausgegangen, wenn genau zwei Parameter vorhanden sind, von denen der erste eine Zelle oder ein Zellbereich ist. In allen anderen Fällen wird von der ersten Syntaxvariante ausgegangen. Der Funktionsassistent zeigt die erste Syntaxvariante."
#. Cwsfn
#: 04060109.xhp
@@ -20183,7 +20183,7 @@ msgctxt ""
"bm_id3145389\n"
"help.text"
msgid "<bookmark_value>text in cells; functions</bookmark_value> <bookmark_value>functions; text functions</bookmark_value> <bookmark_value>Function Wizard;text</bookmark_value>"
-msgstr "<bookmark_value>Text in Zellen; Funktionen</bookmark_value><bookmark_value>Funktionen; Textfunktionen</bookmark_value><bookmark_value>Funktions-Assistent; Text</bookmark_value>"
+msgstr "<bookmark_value>Text in Zellen; Funktionen</bookmark_value><bookmark_value>Funktionen; Textfunktionen</bookmark_value><bookmark_value>Funktionsassistent; Text</bookmark_value>"
#. DEMF7
#: 04060110.xhp
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FEST"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Ergibt eine Zahl als Text mit einer gewünschten Anzahl an Dezimalstellen und optional mit Tausendertrennzeichen.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FEST(Zahl; Dezimalstellen [; KeineTausendertrennzeichen])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Zahl</emph> ist die Zahl, die formatiert werden soll."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Dezimalstellen</emph> ist die Anzahl der Dezimalstellen, die angezeigt werden sollen."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>KeineTausendertrennzeichen</emph> (optional) bestimmt, ob das Tausendertrennzeichen verwendet wird. Wenn der Parameter ungleich 0 ist, wird das Tausendertrennzeichen nicht angezeigt. Wenn der Parameter gleich 0 oder nicht vorhanden ist, werden die Tausendertrennzeichen entsprechend Ihren <link href=\"text/shared/optionen/01140000.xhp\" name=\"aktuellen lokalen Einstellungen\">aktuelle lokale Einstellungen</link> angezeigt."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FEST(1234567,89;3)</item> ergibt 1.234.567,890 als Zeichenkette."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FEST(1234567,89;3;1)</item> ergibt 1234567,890 als Zeichenkette."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
@@ -22865,7 +22901,7 @@ msgctxt ""
"bm_id3150870\n"
"help.text"
msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
-msgstr "<bookmark_value>Add-ins; Funktionen</bookmark_value><bookmark_value>Funktionen; Add-in-Funktionen</bookmark_value><bookmark_value>Funktions-Assistent; Add-ins</bookmark_value>"
+msgstr "<bookmark_value>Add-ins; Funktionen</bookmark_value><bookmark_value>Funktionen; Add-in-Funktionen</bookmark_value><bookmark_value>Funktionsassistent; Add-ins</bookmark_value>"
#. igy2a
#: 04060111.xhp
@@ -23468,7 +23504,7 @@ msgctxt ""
"par_id3150361\n"
"help.text"
msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library</caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
-msgstr "$[officename] Calc kann um Plug-ins, externe Programmiermodule mit zusätzlichen Funktionen für die Arbeit mit Tabellendokumenten, erweitert werden. Diese Funktionen finden Sie im <emph>Funktions-Assistenten</emph> unter der Kategorie <emph>Plug-in</emph>. Wenn Sie selbst Plug-ins programmieren möchten, erfahren Sie hier, welche Funktionen für eine erfolgreiche Implementierung von Plug-ins aus der <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library (gemeinsamen Bibliothek)</caseinline><defaultinline>externen DLL</defaultinline></switchinline> exportiert werden müssen."
+msgstr "$[officename] Calc kann um Plug-ins, externe Programmiermodule mit zusätzlichen Funktionen für die Arbeit mit Tabellendokumenten, erweitert werden. Diese Funktionen finden Sie im <emph>Funktionsassistenten</emph> unter der Kategorie <emph>Plug-in</emph>. Wenn Sie selbst Plug-ins programmieren möchten, erfahren Sie hier, welche Funktionen für eine erfolgreiche Implementierung von Plug-ins aus der <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library (gemeinsamen Bibliothek)</caseinline><defaultinline>externen DLL</defaultinline></switchinline> exportiert werden müssen."
#. qyzrA
#: 04060112.xhp
@@ -23477,7 +23513,7 @@ msgctxt ""
"par_id3149211\n"
"help.text"
msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library</caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library</caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
-msgstr "$[officename] durchsucht den in der Konfiguration festgelegten Plug-in-Ordner nach einer passenden <switchinline select=\"sys\"><caseinline select=\"UNIX\"> shared library (gemeinsame Bibliothek)</caseinline><defaultinline>DLL</defaultinline></switchinline>. Um von $[officename] erkannt zu werden, muss die <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library</caseinline><defaultinline>DLL</defaultinline></switchinline> bestimmte Eigenschaften aufweisen, wie im Folgenden erklärt wird. Mit diesen Informationen können Sie Ihr eigenes Plug-in für den <emph>Funktions-Assistenten</emph> von $[officename] Calc programmieren."
+msgstr "$[officename] durchsucht den in der Konfiguration festgelegten Plug-in-Ordner nach einer passenden <switchinline select=\"sys\"><caseinline select=\"UNIX\"> shared library (gemeinsame Bibliothek)</caseinline><defaultinline>DLL</defaultinline></switchinline>. Um von $[officename] erkannt zu werden, muss die <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library</caseinline><defaultinline>DLL</defaultinline></switchinline> bestimmte Eigenschaften aufweisen, wie im Folgenden erklärt wird. Mit diesen Informationen können Sie Ihr eigenes Plug-in für den <emph>Funktionsassistenten</emph> von $[officename] Calc programmieren."
#. CAC5V
#: 04060112.xhp
@@ -23810,7 +23846,7 @@ msgctxt ""
"par_id3148579\n"
"help.text"
msgid "<emph>Output</emph>: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
-msgstr "<emph>Output</emph>: Der bei der Programmierung verwendete Funktionsname, der die Funktion in der <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>DLL</defaultinline></switchinline> darstellt. Dieser Name legt nicht den Namen fest, der im <emph>Funktions-Assistenten</emph> verwendet wird."
+msgstr "<emph>Output</emph>: Der bei der Programmierung verwendete Funktionsname, der die Funktion in der <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library</caseinline><defaultinline>DLL</defaultinline></switchinline> darstellt. Dieser Name legt nicht den Namen fest, der im <emph>Funktionsassistenten</emph> verwendet wird."
#. 6yGps
#: 04060112.xhp
@@ -23837,7 +23873,7 @@ msgctxt ""
"par_id3155261\n"
"help.text"
msgid "<emph>Output</emph>: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
-msgstr "<emph>Output</emph>: Der für den Benutzer sichtbare Funktionsname, wie er im <emph>Funktions-Assistenten</emph> erscheint. Umlaute sind hier zulässig."
+msgstr "<emph>Output</emph>: Der für den Benutzer sichtbare Funktionsname, wie er im <emph>Funktionsassistenten</emph> erscheint. Umlaute sind hier zulässig."
#. rcNLZ
#: 04060112.xhp
@@ -23855,7 +23891,7 @@ msgctxt ""
"par_id3153000\n"
"help.text"
msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
-msgstr "Liefert eine kurze Beschreibung der Add-in-Funktion und ihrer Parameter. Diese Funktion kann optional eingesetzt werden, um im <emph>Funktions-Assistenten</emph> Beschreibungen der Funktionen und ihrer Parameter anzuzeigen."
+msgstr "Liefert eine kurze Beschreibung der Add-in-Funktion und ihrer Parameter. Diese Funktion kann optional eingesetzt werden, um im <emph>Funktionsassistenten</emph> Beschreibungen der Funktionen und ihrer Parameter anzuzeigen."
#. WCRmw
#: 04060112.xhp
@@ -23927,7 +23963,7 @@ msgctxt ""
"par_id3145303\n"
"help.text"
msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
-msgstr "pName und pDesc sind in $[officename] Calc implementierte Char-Arrays der Größe 256. Beachten Sie bitte, dass der im <emph>Funktions-Assistenten</emph> verfügbare Platz beschränkt ist und die 256 Zeichen nicht voll genutzt werden können."
+msgstr "pName und pDesc sind in $[officename] Calc implementierte Char-Arrays der Größe 256. Beachten Sie bitte, dass der im <emph>Funktionsassistenten</emph> verfügbare Platz beschränkt ist und die 256 Zeichen nicht voll genutzt werden können."
#. gmvAA
#: 04060112.xhp
@@ -44051,7 +44087,7 @@ msgctxt ""
"par_id3151118\n"
"help.text"
msgid "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> deck is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
-msgstr "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Öffnet das den Bereich Funktionen in der Seitenleiste, das alle Funktionen auflistet, die in das Dokument eingefügt werden können.</ahelp></variable> Der Bereich <emph>Funktionen</emph> der Seitenleiste ist mit dem Register <emph>Funktionen</emph> des <link href=\"text/scalc/01/04060000.xhp\" name=\"Funktions-Assistent\">Funktions-Assistenten</link> vergleichbar. Die Funktionen werden mit Platzhaltern eingefügt, die durch Ihre eigenen Werte zu ersetzen sind."
+msgstr "<variable id=\"function_list_text\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">Öffnet das den Bereich Funktionen in der Seitenleiste, das alle Funktionen auflistet, die in das Dokument eingefügt werden können.</ahelp></variable> Der Bereich <emph>Funktionen</emph> der Seitenleiste ist mit dem Register <emph>Funktionen</emph> des <link href=\"text/scalc/01/04060000.xhp\" name=\"Funktionsassistent\">Funktionsassistenten</link> vergleichbar. Die Funktionen werden mit Platzhaltern eingefügt, die durch Ihre eigenen Werte zu ersetzen sind."
#. UGvDB
#: 04080000.xhp
@@ -48074,7 +48110,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Spreadsheet Structure</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr "Die Struktur geschützter Tabellendokumente lässt sich nur dann ändern, wenn die Option <emph>Schutz</emph> deaktiviert ist. In den Kontextmenüs der Tabellenregister am unteren Bildschirmrand kann nur <emph>Alle Tabellen auswählen</emph> ausgewählt werden. Alle übrigen Menüelemente sind nicht verfügbar. Zum Aufheben des Schutzes wählen Sie erneut <emph>Extras - Tabellenstruktur schützen...</emph>. Wenn kein Kennwort festgelegt wurde, wird der Schutz sofort aufgehoben. Wenn ein Kennwort für die Schutzfunktion festgelegt wurde, erscheint der Dialog <emph>Tabellenschutz aufheben</emph>, in den Sie das Kennwort eingeben müssen. Erst dann wird das Häkchen ausgeblendet, das auf einen aktiven Schutz hinweist."
+msgstr "Die Struktur geschützter Tabellendokumente lässt sich nur dann ändern, wenn die Option <emph>Schutz</emph> deaktiviert ist. In den Kontextmenüs der Tabellenregister am unteren Bildschirmrand kann nur <emph>Alle Tabellen auswählen</emph> ausgewählt werden. Alle übrigen Menüelemente sind nicht verfügbar. Zum Aufheben des Schutzes wählen Sie erneut <emph>Extras - Tabellenstruktur schützen...</emph>. Wenn kein Kennwort festgelegt wurde, wird der Schutz sofort aufgehoben. Wenn ein Kennwort für die Schutzfunktion festgelegt wurde, erscheint der Dialog <emph>Tabellenschutz aufheben</emph>, in dem Sie das Kennwort eingeben müssen. Erst dann wird das Häkchen ausgeblendet, das auf einen aktiven Schutz hinweist."
#. Y5KBL
#: 06060200.xhp
@@ -48362,7 +48398,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
-msgstr "Bei der Eingabe von Formeln mit Zeichen, die bereits in vorigen Einträgen vorgekommen sind, wird ein Hilfetipp eingeblendet. Darin sind die letzten zehn aus dem <emph>Funktions-Assistenten</emph> verwendeten Funktionen aus allen definierten Bereichsnamen, allen Datenbankbereichsnamen und dem Inhalt aller Beschriftungsbereiche aufgeführt."
+msgstr "Bei der Eingabe von Formeln mit Zeichen, die bereits in vorigen Einträgen vorgekommen sind, wird ein Hilfetipp eingeblendet. Darin sind die letzten zehn aus dem <emph>Funktionsassistenten</emph> verwendeten Funktionen aus allen definierten Bereichsnamen, allen Datenbankbereichsnamen und dem Inhalt aller Beschriftungsbereiche aufgeführt."
#. ZG6FW
#: 06130000.xhp
@@ -62366,7 +62402,7 @@ msgctxt ""
"par_id571575080642652\n"
"help.text"
msgid "Further information about touch / no-touch options may be found on many financial websites."
-msgstr "Weitere Informationen zu Touch-/No-Touch-Optionen finden Sie auf vielen Finanzwebsites."
+msgstr "Weitere Informationen zu Touch-/No-Touch-Optionen finden Sie auf vielen Finanzwebseiten."
#. V3nnz
#: func_opt_touch.xhp
@@ -65885,7 +65921,7 @@ msgctxt ""
"par_id221589959855748\n"
"help.text"
msgid "You can install more solver engines as extensions, if available. Open <menuitem>Tools - Extension Manager</menuitem> and browse to the Extensions web site to search for extensions."
-msgstr "Sie können, falls verfügbar, weitere Solver-Maschinen als Extensions installieren. Wählen Sie <menuitem>Extras – Extension Manager…</menuitem> und navigieren Sie zur Extensions-Website, um nach Erweiterungen zu suchen."
+msgstr "Sie können, falls verfügbar, weitere Solver-Maschinen als Extensions installieren. Wählen Sie <menuitem>Extras – Extension-Manager…</menuitem> und navigieren Sie zur Extensions-Webseite, um nach Erweiterungen zu suchen."
#. QtDyE
#: solver_options.xhp
@@ -66011,7 +66047,7 @@ msgctxt ""
"par_id0603200910394248\n"
"help.text"
msgid "Specifies the probability for an individual to choose the Differential Evolution strategy."
-msgstr "Gibt die Wahrscheinlichkeit an, mit der eine Person die differentielle Entwicklungs-Strategie wählt."
+msgstr "Gibt die Wahrscheinlichkeit an, mit der eine Person die differentielle Entwicklungsstrategie wählt."
#. DbnUB
#: solver_options_algo.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/02.po b/source/de/helpcontent2/source/text/scalc/02.po
index 7c7211d179a..8745bb41fa6 100644
--- a/source/de/helpcontent2/source/text/scalc/02.po
+++ b/source/de/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-03-07 18:15+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc02/de/>\n"
"Language: de\n"
@@ -608,7 +608,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
-msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Geben Sie die Formel ein, die in die aktuelle Zelle eingefügt werden soll. Alternativ können Sie auch auf das Symbol des <link href=\"text/scalc/01/04060000.xhp\" name=\"Funktions-Assistent\">Funktions-Assistenten</link> klicken, um eine vordefinierte Funktion in die Formel einzufügen.</ahelp>"
+msgstr "<ahelp hid=\"HID_INSWIN_INPUT\">Geben Sie die Formel ein, die in die aktuelle Zelle eingefügt werden soll. Alternativ können Sie auch auf das Symbol des <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Funktionsassistenten</link> klicken, um eine vordefinierte Funktion in die Formel einzufügen.</ahelp>"
#. pBxxB
#: 06060000.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/04.po b/source/de/helpcontent2/source/text/scalc/04.po
index 89d492ea69b..e7575a2eef0 100644
--- a/source/de/helpcontent2/source/text/scalc/04.po
+++ b/source/de/helpcontent2/source/text/scalc/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: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc04/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -761,7 +761,7 @@ msgctxt ""
"par_id3145162\n"
"help.text"
msgid "Opens the Function Wizard."
-msgstr "Öffnet den Funktions-Assistenten."
+msgstr "Öffnet den Funktionsassistenten."
#. ppW28
#: 01020000.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index 399e09c6779..c25464c93ad 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565411177.000000\n"
#. NXy6S
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'</item>."
-msgstr "Damit Namen automatisch von Calc erkannt werden, müssen sie aus Buchstaben und Zahlen bestehen, wobei das erste Zeichen ein Buchstabe sein muss. Um auch andere Zeichen zu verwenden, einschließlich Leerzeichen, müssen Sie den Namen in einfache Anführungszeichen (') einschließen. Kommt im Namen selbst ein einfaches Anführungszeichen vor, so muss vor diesem Zeichen ein Rückstrich stehen, beispielsweise <item type=\"literal\">'Jan \\'97'</item>."
+msgstr "Damit Namen automatisch von Calc erkannt werden, müssen sie aus Buchstaben und Zahlen bestehen, wobei das erste Zeichen ein Buchstabe sein muss. Um auch andere Zeichen einschließlich Leerzeichen zu verwenden, müssen Sie den Namen in einfache Anführungszeichen (') einschließen. Kommt im Namen selbst ein einfaches Anführungszeichen vor, so muss vor diesem Zeichen ein Rückstrich stehen, beispielsweise <item type=\"literal\">'Jan \\'97'</item>."
#. EXFye
#: auto_off.xhp
@@ -257,7 +257,7 @@ msgctxt ""
"par_id3154368\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect - AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Extras - AutoKorrektur - AutoKorrektur-Optionen...\">Extras - AutoKorrektur - AutoKorrektur-Optionen...</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Extras - AutoKorrektur-Optionen…</link>"
#. tdzBC
#: autofilter.xhp
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
-msgstr "Schließen Sie den Funktions-Assistenten mit <item type=\"menuitem\">OK</item>."
+msgstr "Schließen Sie den Funktionsassistenten mit <item type=\"menuitem\">OK</item>."
#. 75WFf
#: cellstyle_conditional.xhp
@@ -6908,7 +6908,7 @@ msgctxt ""
"par_id3150109\n"
"help.text"
msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions."
-msgstr "Wie das Beispiel zeigt, können Funktionen in Formeln eingebettet werden. Sie können auch mehrere Funktionen ineinander verschachteln. Der Funktions-Assistent unterstützt Sie beim Arbeiten mit verschachtelten Funktionen."
+msgstr "Wie das Beispiel zeigt, können Funktionen in Formeln eingebettet werden. Sie können auch mehrere Funktionen ineinander verschachteln. Der Funktionsassistent unterstützt Sie beim Arbeiten mit verschachtelten Funktionen."
#. CQoDo
#: formulas.xhp
@@ -6926,7 +6926,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
-msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Assistent: Funktionen\">Funktions-Assistent</link>"
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Funktionsassistent</link>"
#. 6XzRE
#: fraction_enter.xhp
@@ -7997,7 +7997,7 @@ msgctxt ""
"par_id3150305\n"
"help.text"
msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
-msgstr "Von der aktuellen Zelle bis zur Zelle, auf die Sie geklickt haben, wird durch Mausklick ein rechteckiger Bereich ausgewählt. Alternativ können Sie mit gedückter Umschalttaste auf die Zelle klicken."
+msgstr "Von der aktuellen Zelle bis zur Zelle, auf die Sie geklickt haben, wird durch Mausklick ein rechteckiger Bereich ausgewählt. Alternativ können Sie mit gedrückter Umschalttaste auf die Zelle klicken."
#. TBk4P
#: mark_cells.xhp
@@ -9590,7 +9590,7 @@ msgctxt ""
"hd_id201525166689277\n"
"help.text"
msgid "Pivot chart field buttons"
-msgstr "Schaltflächen für Pivot-Diargamm-Felder"
+msgstr "Schaltflächen für Pivot-Diagramm-Felder"
#. h5tHY
#: pivotchart_filter.xhp
diff --git a/source/de/helpcontent2/source/text/schart/01.po b/source/de/helpcontent2/source/text/schart/01.po
index 9817d0a9c58..048bce59107 100644
--- a/source/de/helpcontent2/source/text/schart/01.po
+++ b/source/de/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/de/>\n"
"Language: de\n"
@@ -635,7 +635,7 @@ msgctxt ""
"par_id1106200812112530\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Legt die Schreibrichtung für einen Absatz fest, der Complex Text Layout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Legt die Schreibrichtung für einen Absatz fest, der Komplexes Textlayout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist.</ahelp>"
#. iNVc7
#: 04020000.xhp
@@ -860,7 +860,7 @@ msgctxt ""
"par_id1106200812280719\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Legt die Schreibrichtung für einen Absatz fest, der Complex Text Layout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Legt die Schreibrichtung für einen Absatz fest, der Komplexes Textlayout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist.</ahelp>"
#. iCBUY
#: 04030000.xhp
@@ -3479,7 +3479,7 @@ msgctxt ""
"par_id1106200812235271\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Legt die Schreibrichtung für einen Absatz fest, der Complex Text Layout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Legt die Schreibrichtung für einen Absatz fest, der Komplexes Textlayout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist.</ahelp>"
#. cjeWA
#: 05030000.xhp
diff --git a/source/de/helpcontent2/source/text/sdatabase.po b/source/de/helpcontent2/source/text/sdatabase.po
index a23997eb767..2f3c1c90a6b 100644
--- a/source/de/helpcontent2/source/text/sdatabase.po
+++ b/source/de/helpcontent2/source/text/sdatabase.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
#. ugSgG
#: 02000000.xhp
@@ -5008,7 +5008,7 @@ msgctxt ""
"par_idN107BD\n"
"help.text"
msgid "In %PRODUCTNAME Base, you can access data that is stored in a wide variety of database file formats. %PRODUCTNAME Base natively supports some flat file database formats, such as the dBASE format. You can also use %PRODUCTNAME Base to connect to external relational databases, such as databases from MySQL or Oracle."
-msgstr "In %PRODUCTNAME Base kann man die in vielen Datenbankenformaten gespeicherte Daten abrufen. %PRODUCTNAME Base unterstützt nativ einige flache Datenbankenformate, wie die dBASE-Dateien. Man kann mit %PRODUCTNAME Base auch externe relationale Datenbanken abrufen, wie die von MySQL oder Oracle."
+msgstr "In %PRODUCTNAME Base kann man die in vielen Datenbankformaten gespeicherten Daten abrufen. %PRODUCTNAME Base unterstützt nativ einige flache Datenbankformate, wie die dBASE-Dateien. Man kann mit %PRODUCTNAME Base auch externe relationale Datenbanken abrufen, wie die von MySQL oder Oracle."
#. RRoXE
#: main.xhp
@@ -5089,7 +5089,7 @@ msgctxt ""
"par_idN1084A\n"
"help.text"
msgid "To open a database file, choose <emph>File - Open</emph>. In the <emph>File type</emph> list box, select to view only \"Database documents\". Select a database document and click <emph>Open</emph>."
-msgstr "Zum Öffnen einer Datenbank wählen Sie <emph>Datei – Öffnen…</emph>. In der Liste <emph>Dateityp</emph> wählen Sie \"Datenbankendokumente\". Wählen Sie einen Datenbankdokument aus und klicken Sie auf <emph>Öffnen</emph>."
+msgstr "Zum Öffnen einer Datenbank wählen Sie <emph>Datei – Öffnen…</emph>. In der Liste <emph>Dateityp</emph> wählen Sie \"Datenbankdokumente\". Wählen Sie ein Datenbankdokument aus und klicken Sie auf <emph>Öffnen</emph>."
#. QFEDB
#: main.xhp
diff --git a/source/de/helpcontent2/source/text/sdraw.po b/source/de/helpcontent2/source/text/sdraw.po
index 4cce5825b24..5d94d3afa7c 100644
--- a/source/de/helpcontent2/source/text/sdraw.po
+++ b/source/de/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw/de/>\n"
"Language: de\n"
@@ -104,7 +104,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
-msgstr "Dieses Menü umfasst Befehle zum Arbeiten mit Draw Dokumenten. Sie können beispielsweise ein neues Dokument erstellen, ein Dokumente öffnen, schließen und drucken. Um die Arbeit mit $[officename] Draw zu beenden, klicken Sie auf <emph>Schließen</emph>."
+msgstr "Dieses Menü umfasst Befehle zum Arbeiten mit Draw-Dokumenten. Sie können beispielsweise ein neues Dokument erstellen, ein Dokumente öffnen, schließen und drucken. Um die Arbeit mit $[officename] Draw zu beenden, klicken Sie auf <emph>Schließen</emph>."
#. uGyaP
#: main0103.xhp
@@ -788,7 +788,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr "Hier finden Sie Befehle zum Bearbeiten von Draw Dokumenten, beispielsweise zum Widerrufen der letzten Aktion, zum Kopieren und Einfügen über die Zwischenablage."
+msgstr "Hier finden Sie Befehle zum Bearbeiten von Draw-Dokumenten, beispielsweise zum Widerrufen der letzten Aktion, zum Kopieren und Einfügen über die Zwischenablage."
#. dCFBH
#: main_edit.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id3156443\n"
"help.text"
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr "Dieses Menü enthält zusätzliche Befehle für $[officename] Draw Dokumente wie zur Sprache und den Programmeinstellungen."
+msgstr "Dieses Menü enthält zusätzliche Befehle für $[officename] Draw-Dokumente wie zur Sprache und den Programmeinstellungen."
#. QBgiC
#: main_tools.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur-Optionen</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur-Optionen…</link>"
#. U5jsV
#: main_tools.xhp
diff --git a/source/de/helpcontent2/source/text/shared.po b/source/de/helpcontent2/source/text/shared.po
index d97d1c22a88..bec0bd38fce 100644
--- a/source/de/helpcontent2/source/text/shared.po
+++ b/source/de/helpcontent2/source/text/shared.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2021-03-17 03:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -374,7 +374,7 @@ msgctxt ""
"par_id5144510\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowLicense\">Displays the <emph>CREDITS.odt</emph> document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowLicense\">Zeigt das Dokument <emph>CREDITS.odt</emph> an, in dem die Personen aufgeführt sind, die an dem OpenOffice.org-Quelltext (deren Beiträge in LibreOffice imintegriert worden sind) oder an LibreOffice seit dem 28.09.2010 mitgearbeitet haben.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowLicense\">Zeigt das Dokument <emph>CREDITS.odt</emph> an, in dem die Personen aufgeführt sind, die an dem OpenOffice.org-Quelltext (deren Beiträge in LibreOffice importiert wurden) oder an LibreOffice seit dem 28.09.2010 mitgearbeitet haben.</ahelp>"
#. F8BFu
#: main0108.xhp
@@ -1940,7 +1940,7 @@ msgctxt ""
"par_id9116183\n"
"help.text"
msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
-msgstr "Bevor Sie einen JDBC-Treiber nutzen können, müssen Sie seinen Klassenpfad hinzufügen. Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Einstellungen</caseinline><defaultinline>Extras - Optionen...</defaultinline></switchinline> - %PRODUCTNAME - Erweitert und klicken Sie auf die Schaltfläche Class Path... . Nachdem Sie die Pfadinformation eingetragen haben, starten Sie %PRODUCTNAME neu."
+msgstr "Bevor Sie einen JDBC-Treiber nutzen können, müssen Sie dessen Klassenpfad hinzufügen. Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Einstellungen</caseinline><defaultinline>Extras - Optionen…</defaultinline></switchinline> - %PRODUCTNAME - Erweitert und klicken Sie auf die Schaltfläche Klassenpfad… . Nachdem Sie die Pfadinformation eingetragen haben, starten Sie %PRODUCTNAME neu."
#. ApwuB
#: main0650.xhp
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index df99770b7ff..cafcf53e56d 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563509840.000000\n"
#. 3B8ZN
@@ -2039,7 +2039,7 @@ msgctxt ""
"par_id3155336\n"
"help.text"
msgid "Export Directly as PDF"
-msgstr "Direktes Exportieren als PDF"
+msgstr "Direkt als PDF exportieren"
#. xDED8
#: 00000005.xhp
@@ -2165,7 +2165,7 @@ msgctxt ""
"par_id3156081\n"
"help.text"
msgid "Languages with complex text layout may have some or all of the following features:"
-msgstr "Sprachen mit komplexen Skripten können unter anderem folgende Eigenschaften aufweisen:"
+msgstr "Sprachen mit komplexem Textlayout können einige oder alle der folgenden Funktionen aufweisen:"
#. 6BmAW
#: 00000005.xhp
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_idN10AC5\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Dokumenten-Konverter-Assistent</link>"
+msgstr "<link href=\"text/shared/autopi/01130000.xhp\">Dokumentkonverter-Assistent</link>"
#. 6sL4z
#: 00000099.xhp
@@ -6818,7 +6818,7 @@ msgctxt ""
"par_id3153387\n"
"help.text"
msgid "<variable id=\"htmlspeichern1\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select <emph>HTML</emph> file type, page 1 of the wizard.</variable>"
-msgstr "<variable id=\"htmlspeichern1\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren...</emph>, Dateityp <emph>Webseite</emph>, Seite 1 des Assistenten.</variable>"
+msgstr "<variable id=\"htmlspeichern1\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren…</emph>, Dateityp <emph>HTML-Dokument</emph>, Seite 1 des Assistenten.</variable>"
#. kTG56
#: 00000401.xhp
@@ -6827,7 +6827,7 @@ msgctxt ""
"par_id3154021\n"
"help.text"
msgid "<variable id=\"htmlspeichern2\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select <emph>HTML</emph> file type, page 2 of the wizard.</variable>"
-msgstr "<variable id=\"htmlspeichern2\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren...</emph>, Dateityp <emph>Webseite</emph>, Seite 2 des Assistenten.</variable>"
+msgstr "<variable id=\"htmlspeichern2\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren…</emph>, Dateityp <emph>HTML-Dokument</emph>, Seite 2 des Assistenten.</variable>"
#. z8mpb
#: 00000401.xhp
@@ -6836,7 +6836,7 @@ msgctxt ""
"par_id3147246\n"
"help.text"
msgid "<variable id=\"htmlspeichern3\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select <emph>HTML</emph> file type, page 3 of the wizard.</variable>"
-msgstr "<variable id=\"htmlspeichern3\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren...</emph>, Dateityp <emph>Webseite</emph>, Seite 3 des Assistenten.</variable>"
+msgstr "<variable id=\"htmlspeichern3\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren…</emph>, Dateityp <emph>HTML-Dokument</emph>, Seite 3 des Assistenten.</variable>"
#. A9Fks
#: 00000401.xhp
@@ -6845,7 +6845,7 @@ msgctxt ""
"par_id3145131\n"
"help.text"
msgid "<variable id=\"htmlspeichern4\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select <emph>HTML</emph> file type, page 4 of the wizard.</variable>"
-msgstr "<variable id=\"htmlspeichern4\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren...</emph>, Dateityp <emph>Webseite</emph>, Seite 4 des Assistenten.</variable>"
+msgstr "<variable id=\"htmlspeichern4\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren…</emph>, Dateityp <emph>HTML-Dokument</emph>, Seite 4 des Assistenten.</variable>"
#. pf6v8
#: 00000401.xhp
@@ -6854,7 +6854,7 @@ msgctxt ""
"par_id3150235\n"
"help.text"
msgid "<variable id=\"htmlspeichern5\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select <emph>HTML</emph> file type, page 5 of the wizard.</variable>"
-msgstr "<variable id=\"htmlspeichern5\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren...</emph>, Dateityp <emph>Webseite</emph>, Seite 5 des Assistenten.</variable>"
+msgstr "<variable id=\"htmlspeichern5\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren…</emph>, Dateityp <emph>HTML-Dokument</emph>, Seite 5 des Assistenten.</variable>"
#. bqvr4
#: 00000401.xhp
@@ -6863,7 +6863,7 @@ msgctxt ""
"par_id3145762\n"
"help.text"
msgid "<variable id=\"htmlspeichern6\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select <emph>HTML</emph> file type, page 6 of the wizard.</variable>"
-msgstr "<variable id=\"htmlspeichern6\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren...</emph>, Dateityp <emph>Webseite</emph>, Seite 6 des Assistenten.</variable>"
+msgstr "<variable id=\"htmlspeichern6\">In $[officename] Draw/$[officename] Impress wählen Sie <emph>Datei - Exportieren…</emph>, Dateityp <emph>HTML-Dokument</emph>, Seite 6 des Assistenten.</variable>"
#. SgBFJ
#: 00000401.xhp
@@ -7223,7 +7223,7 @@ msgctxt ""
"par_id3155763\n"
"help.text"
msgid "Export Directly as PDF"
-msgstr "Direktes Exportieren als PDF"
+msgstr "Direkt als PDF exportieren"
#. 4XVGr
#: 00000401.xhp
@@ -8474,7 +8474,7 @@ msgctxt ""
"par_idN10843\n"
"help.text"
msgid "<variable id=\"packagemanager\">Choose <emph>Tools - Extension Manager</emph>.</variable>"
-msgstr "<variable id=\"packagemanager\">Wählen Sie <emph>Extras - Extension-Manager...</emph>.</variable>"
+msgstr "<variable id=\"packagemanager\">Wählen Sie <emph>Extras - Extension-Manager…</emph>.</variable>"
#. JPbac
#: 00000406.xhp
@@ -8483,7 +8483,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Check for Updates</emph> button.</variable>"
-msgstr "<variable id=\"packagemanager_eu\">Wählen Sie <emph>Extras - Extension Manager...</emph> und klicken Sie dann auf die Schaltfläche <emph>Auf Updates prüfen</emph>.</variable>"
+msgstr "<variable id=\"packagemanager_eu\">Wählen Sie <emph>Extras - Extension-Manager…</emph> und klicken Sie dann auf die Schaltfläche <emph>Auf Updates prüfen</emph>.</variable>"
#. sPJ9b
#: 00000406.xhp
@@ -8951,7 +8951,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "<variable id=\"sprachenctl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages - Complex Text Layout</emph>.</variable>"
-msgstr "<variable id=\"sprachenctl\">Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen - Complex Text Layout</emph>.</variable>"
+msgstr "<variable id=\"sprachenctl\">Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen…</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen - Komplexes Textlayout</emph>.</variable>"
#. NyrwR
#: 00000406.xhp
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 97dd0cc81ca..ff6972d7c6f 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "%PRODUCTNAME recognizes templates located in any directory defined for <emph>Templates</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - </menuitem><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><menuitem>%PRODUCTNAME - Paths</menuitem></link>."
-msgstr ""
+msgstr "%PRODUCTNAME erkennt Dokumentvorlagen in einem beliebigen Verzeichnis, das für <emph>Vorlagen</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – </menuitem><link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\"><menuitem>%PRODUCTNAME – Pfade</menuitem></link> festgelegt ist."
#. Nksvx
#: 01020000.xhp
@@ -3011,7 +3011,7 @@ msgctxt ""
"par_id471561565422027\n"
"help.text"
msgid "The Export command opens the system file picker, where you can enter the name and format of the exported file."
-msgstr ""
+msgstr "Der Befehl Exportieren öffnet die Dateiauswahl, in welcher der Name und das Format der zu exportierenden Datei eingegeben werden können."
#. BM7XX
#: 01070001.xhp
@@ -3029,7 +3029,7 @@ msgctxt ""
"par_id871561565412738\n"
"help.text"
msgid "Enter a file name or a path for the file."
-msgstr ""
+msgstr "Geben Sie einen Dateinamen und Pfad für die Datei ein."
#. qpAcp
#: 01070001.xhp
@@ -3074,7 +3074,7 @@ msgctxt ""
"hd_id751513634008094\n"
"help.text"
msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Exportieren als</link>"
#. yQFCE
#: 01070002.xhp
@@ -3092,7 +3092,7 @@ msgctxt ""
"par_id971513634212601\n"
"help.text"
msgid "Choose <emph>File - Export As</emph>."
-msgstr ""
+msgstr "Wählen Sie <emph>Datei – Exportieren als</emph>."
#. 5EMoa
#: 01070002.xhp
@@ -3101,7 +3101,7 @@ msgctxt ""
"hd_id71513635341099\n"
"help.text"
msgid "Export Directly as PDF"
-msgstr "Direktes Exportieren als PDF"
+msgstr "Direkt als PDF exportieren"
#. AWMaF
#: 01070002.xhp
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_idN106CC\n"
"help.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Digitale Signaturen"
#. EdEtn
#: 01100200.xhp
@@ -3488,7 +3488,7 @@ msgctxt ""
"hd_id3156346\n"
"help.text"
msgid "Last printed"
-msgstr ""
+msgstr "Zuletzt gedruckt"
#. BunTF
#: 01100200.xhp
@@ -3506,7 +3506,7 @@ msgctxt ""
"par_id211604484407570\n"
"help.text"
msgid "After printing, a document must be saved to preserve its <emph>Last printed</emph> data. No warning message is given about this, if an unsaved document is closed."
-msgstr ""
+msgstr "Nach dem Drucken muss ein Dokument gespeichert werden, um seine Daten für <emph>Zuletzt gedruckt</emph> zu erhalten. Es wird keine Warnmeldung angezeigt, wenn ein nicht gespeichertes Dokument geschlossen wird."
#. mD6yU
#: 01100200.xhp
@@ -3515,7 +3515,7 @@ msgctxt ""
"hd_id3155342\n"
"help.text"
msgid "Total editing time"
-msgstr ""
+msgstr "Gesamte Bearbeitungszeit"
#. pg3gJ
#: 01100200.xhp
@@ -3533,7 +3533,7 @@ msgctxt ""
"hd_id3153252\n"
"help.text"
msgid "Revision number"
-msgstr ""
+msgstr "Versionsnummer"
#. FPbiF
#: 01100200.xhp
@@ -3587,7 +3587,7 @@ msgctxt ""
"hd_id101602069139228\n"
"help.text"
msgid "Save preview image with this document"
-msgstr ""
+msgstr "Vorschaubild mit diesem Dokument speichern"
#. YDHAD
#: 01100200.xhp
@@ -3596,7 +3596,7 @@ msgctxt ""
"par_id171606265050158\n"
"help.text"
msgid "Saves a thumbnail preview .png inside the document. This image may be used by a file manager under certain conditions."
-msgstr ""
+msgstr "Speichert eine Miniaturansicht als .png im Dokument. Dieses Bild kann von einem Dateimanager unter bestimmten Bedingungen angezeigt werden."
#. kGCVD
#: 01100200.xhp
@@ -3605,7 +3605,7 @@ msgctxt ""
"par_id231606265075565\n"
"help.text"
msgid "To disable generating thumbnails in general, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem/><menuitem> - %PRODUCTNAME - Advanced</menuitem>. Click the <widget>Open Expert Configuration</widget> button, and search for <emph>GenerateThumbnail</emph>. If this property has the value <literal>true</literal>, then double-click on it to set its value to <literal>false</literal>."
-msgstr ""
+msgstr "Um das Erstellen von Miniaturansichten allgemein zu deaktivieren, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem/><menuitem> – %PRODUCTNAME – Erweitert</menuitem>. Klicken Sie auf die Schaltfläche <widget>Experteneinstellungen…</widget> und suchen Sie nach der Eigenschaft <emph>GenerateThumbnail</emph>. Wenn die Eigenschaft den Wert <literal>true</literal> hat, dann doppelklicken Sie auf ihn, um den Wert auf <literal>false</literal> zu ändern."
#. ibdbD
#: 01100300.xhp
@@ -3758,7 +3758,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "Cells:"
-msgstr ""
+msgstr "Zellen:"
#. sLNFC
#: 01100400.xhp
@@ -3767,7 +3767,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "Number of cells with content in the file."
-msgstr ""
+msgstr "Anzahl der Zellen in der Datei mit Inhalt."
#. sxqAk
#: 01100400.xhp
@@ -3776,7 +3776,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "Formula groups:"
-msgstr ""
+msgstr "Formelgruppen:"
#. QDcds
#: 01100400.xhp
@@ -3785,7 +3785,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "Number of contiguous ranges in a column with same formula."
-msgstr ""
+msgstr "Anzahl der zusammenhängenden Bereiche in einer Spalte mit derselben Formel."
#. LU85G
#: 01100400.xhp
@@ -3794,7 +3794,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "Images:"
-msgstr ""
+msgstr "Bilder:"
#. a4k3j
#: 01100400.xhp
@@ -3803,7 +3803,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "Number of images in the file. This statistic <emph>does not</emph> include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link> objects."
-msgstr ""
+msgstr "Anzahl der Bilder in der Datei. Diese Statistik enthält <emph>keine</emph> Bilder, die als <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link>-Objekte eingefügt wurden."
#. UBabs
#: 01100400.xhp
@@ -3812,7 +3812,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "OLE Objects:"
-msgstr ""
+msgstr "OLE-Objekte:"
#. BuF3C
#: 01100400.xhp
@@ -3821,7 +3821,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link> objects in the file, <emph>including</emph> tables and graphics that were inserted as OLE objects."
-msgstr ""
+msgstr "Anzahl der <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\"><emph>OLE</emph></link>-Objekte in der Datei, <emph>einschließlich</emph> Tabellen und Grafiken, die als OLE-Objekte eingefügt wurden."
#. qw77q
#: 01100400.xhp
@@ -3830,7 +3830,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "Paragraphs:"
-msgstr ""
+msgstr "Absätze:"
#. sDTWH
#: 01100400.xhp
@@ -3839,7 +3839,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "Number of paragraphs, including blank paragraphs, in the file."
-msgstr ""
+msgstr "Anzahl der Absätze in der Datei, einschließlich der leeren Absätze."
#. cJoGM
#: 01100400.xhp
@@ -3848,7 +3848,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "Words:"
-msgstr ""
+msgstr "Wörter:"
#. NWZHb
#: 01100400.xhp
@@ -3857,7 +3857,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "Number of words, including words consisting of a single character, in the file."
-msgstr ""
+msgstr "Anzahl der Wörter in der Datei, einschließlich Wörtern, die aus einem einzelnen Zeichen bestehen."
#. F9a22
#: 01100400.xhp
@@ -3866,7 +3866,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "Characters:"
-msgstr ""
+msgstr "Zeichen:"
#. J57aD
#: 01100400.xhp
@@ -3875,7 +3875,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "Number of characters, including spaces, in the file. Non-printable characters are not included."
-msgstr ""
+msgstr "Anzahl der Zeichen in der Datei, einschließlich Leerzeichen. Nicht druckbare Zeichen sind nicht enthalten."
#. EvT7H
#: 01100400.xhp
@@ -3884,7 +3884,7 @@ msgctxt ""
"hd_id541589188608624\n"
"help.text"
msgid "Characters excluding spaces:"
-msgstr ""
+msgstr "Zeichen ohne Leerzeichen:"
#. C6y8S
#: 01100400.xhp
@@ -3893,7 +3893,7 @@ msgctxt ""
"par_id341589188750182\n"
"help.text"
msgid "Number of characters, excluding spaces, in the file. Non-printable characters are not included."
-msgstr ""
+msgstr "Anzahl der Zeichen ohne Leerzeichen in der Datei. Nicht druckbare Zeichen sind nicht enthalten."
#. FeKAd
#: 01100400.xhp
@@ -3902,7 +3902,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "Lines:"
-msgstr ""
+msgstr "Linien:"
#. cronY
#: 01100400.xhp
@@ -3911,7 +3911,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "Number of lines in the file."
-msgstr ""
+msgstr "Anzahl der Linien in der Datei."
#. dbQ2X
#: 01100400.xhp
@@ -3920,7 +3920,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "Update"
-msgstr ""
+msgstr "Aktualisieren"
#. xECP4
#: 01100400.xhp
@@ -3929,7 +3929,7 @@ msgctxt ""
"par_id3148981\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/statisticsinfopage/update\">Updates the statistics.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/statisticsinfopage/update\">Aktualisiert die Statistik.</ahelp>"
#. HpTwh
#: 01100600.xhp
@@ -4109,7 +4109,7 @@ msgctxt ""
"par_id3155377\n"
"help.text"
msgid "Choose <menuitem>Tools - Address Book Source</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Adressbuchquelle…</menuitem>."
#. 46kw3
#: 01110101.xhp
@@ -4172,7 +4172,7 @@ msgctxt ""
"hd_id3145119\n"
"help.text"
msgid "Assign"
-msgstr ""
+msgstr "Zuweisen"
#. 7XELF
#: 01110101.xhp
@@ -4262,7 +4262,7 @@ msgctxt ""
"hd_id3147226\n"
"help.text"
msgid "Enter Template Name"
-msgstr ""
+msgstr "Namen der Dokumentvorlage eingeben"
#. 39pSZ
#: 01110300.xhp
@@ -4280,7 +4280,7 @@ msgctxt ""
"hd_id3147571\n"
"help.text"
msgid "Select Template Category"
-msgstr ""
+msgstr "Kategorie der Dokumentvorlage auswählen"
#. pZzDq
#: 01110300.xhp
@@ -4316,7 +4316,7 @@ msgctxt ""
"par_id861608396537022\n"
"help.text"
msgid "Templates added with this command appear automatically in the <emph>Template Manager</emph>. You can also use the <emph>Template Manager</emph> to import templates. Both methods are recommended for adding templates."
-msgstr ""
+msgstr "Dokumentvorlagen, die mit diesem Befehl hinzugefügt worden, werden selbsttätig im <emph>Vorlagenmanager</emph> angezeigt. Es kann der <emph>Vorlagenmanager</emph> auch zum Importieren genutzt werden. Beide Methoden werden zum Hinzufügen von Dokumentvorlagen empfohlen."
#. 7BaN7
#: 01110400.xhp
@@ -4325,7 +4325,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Template"
-msgstr ""
+msgstr "Dokumentvorlage bearbeiten"
#. VqGEF
#: 01110400.xhp
@@ -4334,7 +4334,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Open Template\">Edit Template</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01110400.xhp\" name=\"Open Template\">Dokumentvorlage bearbeiten</link>"
#. VUYtJ
#: 01110400.xhp
@@ -4352,7 +4352,7 @@ msgctxt ""
"par_id01110401\n"
"help.text"
msgid "Choose <menuitem>File - Templates - Edit Template</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Datei – Dokumentvorlagen – Dokumentvorlage bearbeiten…</menuitem>."
#. VkA8N
#: 01130000.xhp
@@ -4397,7 +4397,7 @@ msgctxt ""
"par_id0818200912284853\n"
"help.text"
msgid "The <emph>Print</emph> dialog consists of three main parts: A preview with navigation buttons, tab pages with control elements specific to the current document type, and the <emph>Print</emph>, <emph>Cancel</emph> and <emph>Help</emph> buttons."
-msgstr ""
+msgstr "Der Dialog <emph>Drucken</emph> besteht aus drei Bereichen: Eine Vorschau mit Navigationsschaltflächen, Registerkarten mit Steuerelementen, die für den aktuellen Dokumenttyp spezifisch sind, und den Schaltflächen <emph>Drucken</emph>, <emph>Abbrechen</emph> und <emph>Hilfe</emph>."
#. KGLDV
#: 01130000.xhp
@@ -11399,7 +11399,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/cuiimapdlg/frameCB\">Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/cuiimapdlg/frameCB\">Hier wählen Sie den Frame, in den das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/cuiimapdlg/frameCB\">Hier wählen Sie den Frame, in dem das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen.</ahelp>"
#. BgAcM
#: 02220100.xhp
@@ -14927,7 +14927,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "Complex text layout font - right-to-left text direction"
-msgstr "Schriftart für CTL (Complex Text Layout) - Textlaufrichtung von rechts nach links"
+msgstr "Schriftart für Komplexes Textlayout (CTL) - Textlaufrichtung von rechts nach links"
#. iVVkD
#: 05020100.xhp
@@ -14936,7 +14936,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "To enable support for complex text layout and Asian character sets, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>, and then select the <emph>Enabled</emph> box in the corresponding area."
-msgstr "Um die Unterstützung für CTL und asiatische Zeichensätze zu aktivieren, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen</emph> und dann <emph>Aktiviert</emph> im entsprechenden Bereich."
+msgstr "Um die Unterstützung für CTL und asiatische Zeichensätze zu aktivieren, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen…</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen</emph> und dann <emph>Aktiviert</emph> im entsprechenden Bereich."
#. ig9HL
#: 05020100.xhp
@@ -15080,7 +15080,7 @@ msgctxt ""
"par_id3147213\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout support\">Complex text layout support</link>"
-msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"CTL-Unterstützung\">CTL-Unterstützung</link>"
+msgstr "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout\">CTL-Unterstützung</link>"
#. FC2BQ
#: 05020200.xhp
@@ -21929,7 +21929,7 @@ msgctxt ""
"par_id3157960\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/columnpage/textdirectionlb\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/textdirectionlb\">Geben Sie den Textfluss für Absätze an, die CTL (Complex Text Layout) verwenden. Diese Funktion ist nur bei aktivierter CTL-Unterstützung verfügbar.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/textdirectionlb\">Geben Sie den Textfluss für Absätze an, die Komplexes Textlayout (CTL) verwenden. Diese Funktion ist nur bei aktivierter CTL-Unterstützung verfügbar.</ahelp>"
#. LzeZA
#: 05030800.xhp
@@ -23063,7 +23063,7 @@ msgctxt ""
"par_id3156027\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/HFormatPage\">Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/headfootformatpage/HFormatPage\">Fügt der aktuellen Seitenvorlage eine Kopfzeile hinzu. Eine Kopfzeile ist ein Bereich am oberen Seitenrand, in den Sie Text oder Grafiken einfügen können.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/headfootformatpage/HFormatPage\">Fügt der aktuellen Seitenvorlage eine Kopfzeile hinzu. Eine Kopfzeile ist ein Bereich am oberen Seitenrand, in dem Sie Text oder Grafiken einfügen können.</ahelp>"
#. AiAZ8
#: 05040300.xhp
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -33638,7 +33638,7 @@ msgctxt ""
"par_id3147242\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/textype\">Converts the texture to black and white.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/docking3deffects/textype\">Die Textur wird in Schwarzweiß konvertiert.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/textype\">Die Textur wird in Schwarz-Weiß konvertiert.</ahelp>"
#. ohvQW
#: 05350500.xhp
@@ -35924,7 +35924,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoKorrektur</link>"
#. AdAHF
#: 06040100.xhp
@@ -37364,7 +37364,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen\">Sonderzeichen</link>, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Extras - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
+msgstr "<ahelp hid=\".\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">Sonderzeichen</link>, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Extras - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
#. rmnSr
#: 06040400.xhp
@@ -37382,7 +37382,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen\">Sonderzeichen</link>, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Extras - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
+msgstr "<ahelp hid=\".\">Wählen Sie das <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">Sonderzeichen</link>, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von <emph>Extras - AutoKorrektur - Anwenden</emph> automatisch ersetzt werden sollen.</ahelp>"
#. fzTrp
#: 06040400.xhp
@@ -41812,14 +41812,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Zuweisen"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Öffnet die <link href=\"text/shared/01/06130000.xhp\">Makro-Auswahl</link>, mit der Sie dem ausgewählten Ereignis ein Makro zuweisen können.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
@@ -44240,7 +44240,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Extension Update"
-msgstr "Extension Update"
+msgstr "Extension-Update"
#. gFZiV
#: extensionupdate.xhp
@@ -44249,7 +44249,7 @@ msgctxt ""
"hd_id9688100\n"
"help.text"
msgid "Extension Update"
-msgstr "Extension Update"
+msgstr "Extension-Update"
#. C93ei
#: extensionupdate.xhp
@@ -44258,7 +44258,7 @@ msgctxt ""
"par_id5084688\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Check for Updates</emph> button in the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose <emph>Update</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Klicken Sie auf die Schaltfläche <emph>Auf Updates prüfen</emph> im <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf, und wählen Sie dann im Kontextmenü <emph>Update</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Klicken Sie auf die Schaltfläche <emph>Auf Updates prüfen</emph> im <link href=\"text/shared/01/packagemanager.xhp\">Extension-Manager</link>, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf, und wählen Sie dann im Kontextmenü <emph>Update</emph>.</ahelp>"
#. j6Gfk
#: extensionupdate.xhp
@@ -44267,7 +44267,7 @@ msgctxt ""
"par_id6401257\n"
"help.text"
msgid "When you click the <item type=\"menuitem\">Check for Updates</item> button or choose the <item type=\"menuitem\">Update</item> command, the Extension Update dialog is displayed and the check for availability of updates starts immediately."
-msgstr "Wenn Sie auf die Schaltfläche <item type=\"menuitem\">Auf Updates prüfen</item> klicken oder den Befehl <item type=\"menuitem\">Update</item> wählen, wird der Dialog \"Extension Update\" angezeigt und die Prüfung auf verfügbare Aktualisierungen beginnt."
+msgstr "Wenn Sie auf die Schaltfläche <item type=\"menuitem\">Auf Updates prüfen</item> klicken oder den Befehl <item type=\"menuitem\">Update</item> wählen, wird der Dialog \"Extension-Update\" angezeigt und die Prüfung auf verfügbare Aktualisierungen beginnt."
#. tzbHd
#: extensionupdate.xhp
@@ -44303,7 +44303,7 @@ msgctxt ""
"par_id6420484\n"
"help.text"
msgid "The Extension Update dialog may contain entries which are not selectable and hence no automatic update can be performed."
-msgstr "Der Dialog \"Extension Update\" kann verschiedene Einträge enthalten, die nicht ausgewählt werden können. Bei diesen Einträgen können keine automatisches Update durchgeführt werden."
+msgstr "Der Dialog \"Extension-Update\" kann verschiedene Einträge enthalten, die nicht ausgewählt werden können. Bei diesen Einträgen kann kein automatisches Update durchgeführt werden."
#. XAmPE
#: extensionupdate.xhp
@@ -44321,7 +44321,7 @@ msgctxt ""
"par_id616779\n"
"help.text"
msgid "Insufficient user rights (the Extension Manager was started from the menu, but shared extensions can only be modified when %PRODUCTNAME does not run, and only by a user with appropriate rights). See <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> for details."
-msgstr "Unzureichende Benutzerrechte (der Extension Manager wurde über das Menü gestartet, aber die gemeinsam genutzten Extensions können nur dann geändert werden, wenn %PRODUCTNAME nicht ausgeführt wird, und nur von einem Benutzer mit entsprechenden Rechten). Sehen Sie für weitere Details unter <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> nach."
+msgstr "Unzureichende Benutzerrechte (der Extension-Manager wurde über das Menü gestartet, aber die gemeinsam genutzten Extensions können nur dann geändert werden, wenn %PRODUCTNAME nicht ausgeführt wird, und nur von einem Benutzer mit entsprechenden Rechten). Sehen Sie für weitere Details unter <link href=\"text/shared/01/packagemanager.xhp\">Extension-Manager</link> nach."
#. BfdJ5
#: extensionupdate.xhp
@@ -44357,7 +44357,7 @@ msgctxt ""
"par_id3949095\n"
"help.text"
msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser."
-msgstr "Einige Extensions können mit dem Hinweis \"Browserbasiertes Update\" markiert sein. Diese Extensions können nicht über den Extension Manager heruntergeladen werden. Um die Extension von einer bestimmten Webseite herunterzuladen, muss ein Webbrowser geöffnet werden. Auf dieser Webseite können Anwendereingriffe nötig sein, um die Extension herunterzuladen. Nach dem Herunterladen müssen Sie die Extension manuell installieren, beispielsweise durch Doppelklick auf das Symbol der Extension in einem Dateibrowser."
+msgstr "Einige Extensions können mit dem Hinweis \"Browserbasiertes Update\" markiert sein. Diese Extensions können nicht über den Extension-Manager heruntergeladen werden. Um die Extension von einer bestimmten Webseite herunterzuladen, muss ein Webbrowser geöffnet werden. Auf dieser Webseite können Anwendereingriffe nötig sein, um die Extension herunterzuladen. Nach dem Herunterladen müssen Sie die Extension manuell installieren, beispielsweise durch Doppelklick auf das Symbol der Extension in einem Dateibrowser."
#. 8NJ29
#: extensionupdate.xhp
@@ -44366,7 +44366,7 @@ msgctxt ""
"par_id3729056\n"
"help.text"
msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately."
-msgstr "Der Extension Manager öffnet für Extensions, die als \"Browserbasiertes Update\" markiert sind, Ihren Webbrowser mit der entsprechenden Webseite. Dies geschieht nach dem Schließen des Dialogs, nachdem alle sonstigen Updates heruntergeladen wurden. Der Webbrowser startet sofort, wenn für keine Extension direkt Updates heruntergeladen werden können."
+msgstr "Der Extension-Manager öffnet für Extensions, die als \"Browserbasiertes Update\" markiert sind, Ihren Webbrowser mit der entsprechenden Webseite. Dies geschieht nach dem Schließen des Dialogs, nachdem alle sonstigen Updates heruntergeladen wurden. Der Webbrowser startet sofort, wenn für keine Extension direkt Updates heruntergeladen werden können."
#. yBbmW
#: extensionupdate.xhp
@@ -44411,7 +44411,7 @@ msgctxt ""
"par_id7634510\n"
"help.text"
msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
-msgstr "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
+msgstr "<link href=\"text/shared/01/packagemanager.xhp\">Extension-Manager</link>"
#. ytNtF
#: font_features.xhp
@@ -44627,7 +44627,7 @@ msgctxt ""
"par_id1536301\n"
"help.text"
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=\".\">Fügt ein unsichtbares Leerzeichen in ein Wort ein, das einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen in einer Zeile wird. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Fügt ein unsichtbares Leerzeichen in ein Wort ein, das einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen in einer Zeile wird. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist.</ahelp>"
#. jHLBC
#: formatting_mark.xhp
@@ -44645,7 +44645,7 @@ msgctxt ""
"par_id1085238\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Fügt ein unsichtbares Leerzeichen in ein Wort ein, welches das Wort am Ende einer Zeile zusammenhält. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Fügt ein unsichtbares Leerzeichen in ein Wort ein, welches das Wort am Ende einer Zeile zusammenhält. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist.</ahelp>"
#. vgtCd
#: formatting_mark.xhp
@@ -44663,7 +44663,7 @@ msgctxt ""
"par_id6690878\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist.</ahelp>"
#. MK38W
#: formatting_mark.xhp
@@ -44681,7 +44681,7 @@ msgctxt ""
"par_id923184\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr "<ahelp hid=\".\">Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist.</ahelp>"
+msgstr "<ahelp hid=\".\">Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist.</ahelp>"
#. CwV4T
#: gallery.xhp
@@ -46562,7 +46562,7 @@ msgctxt ""
"bm_id2883388\n"
"help.text"
msgid "<bookmark_value>UNO components;Extension Manager</bookmark_value><bookmark_value>extensions;Extension Manager</bookmark_value><bookmark_value>packages, see extensions</bookmark_value>"
-msgstr "<bookmark_value>UNO-Komponenten; Extension Manager</bookmark_value><bookmark_value>Extensions; Extension Manager</bookmark_value><bookmark_value>Packages, siehe Extensions</bookmark_value>"
+msgstr "<bookmark_value>UNO-Komponenten; Extension-Manager</bookmark_value><bookmark_value>Extensions; Extension-Manager</bookmark_value><bookmark_value>Packages, siehe Extensions</bookmark_value>"
#. i2fi4
#: packagemanager.xhp
@@ -46571,7 +46571,7 @@ msgctxt ""
"par_idN10543\n"
"help.text"
msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
-msgstr "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
+msgstr "<link href=\"text/shared/01/packagemanager.xhp\">Extension-Manager</link>"
#. ELh8y
#: packagemanager.xhp
@@ -46580,7 +46580,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
-msgstr "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">Mit dem Extension Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren.</ahelp>"
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/ExtensionManagerDialog\">Mit dem Extension-Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren.</ahelp>"
#. AEioS
#: packagemanager.xhp
@@ -46697,7 +46697,7 @@ msgctxt ""
"par_id7857905\n"
"help.text"
msgid "<ahelp hid=\".\">You can find a collection of extensions on the Web.</ahelp> Click the \"Get more extensions online\" link in the Extension Manager to open your Web browser and see the <link href=\"https://extensions.libreoffice.org/\">https://extensions.libreoffice.org/</link> page."
-msgstr "<ahelp hid=\".\">Sie finden eine Sammlung von Extensions im Netz.</ahelp> Klicken Sie im Extension Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter...\", um Ihren Webbrowser zu öffnen und die Seite <link href=\"https://extensions.libreoffice.org/\">https://extensions.libreoffice.org/</link> zu anzuzeigen."
+msgstr "<ahelp hid=\".\">Sie finden eine Sammlung von Extensions im Netz.</ahelp> Klicken Sie im Extension-Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter...\", um Ihren Webbrowser zu öffnen und die Seite <link href=\"https://extensions.libreoffice.org/\">https://extensions.libreoffice.org/</link> anzuzeigen."
#. eeTRp
#: packagemanager.xhp
@@ -46733,7 +46733,7 @@ msgctxt ""
"par_id5269020\n"
"help.text"
msgid "On a web page, click a hyperlink to an <item type=\"literal\">*.oxt</item> file (if your web browser can be configured to start the Extension Manager for this file type)."
-msgstr "Klicken Sie auf einer Webseite auf einen Hyperlink zu einer <item type=\"literal\">*.oxt</item>-Datei (wenn Ihr Webbrowser zum Starten des Extension Managers für diesen Dateityp konfiguriert werden kann)."
+msgstr "Klicken Sie auf einer Webseite auf einen Hyperlink zu einer <item type=\"literal\">*.oxt</item>-Datei (wenn Ihr Webbrowser zum Starten des Extension-Managers für diesen Dateityp konfiguriert werden kann)."
#. B2MCq
#: packagemanager.xhp
@@ -46742,7 +46742,7 @@ msgctxt ""
"par_id8714255\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Extension Manager</item> and click <item type=\"menuitem\">Add</item>."
-msgstr "Wählen Sie <item type=\"menuitem\">Extras - Extension Manager...</item> und klicken Sie auf <item type=\"menuitem\">Hinzufügen</item>."
+msgstr "Wählen Sie <item type=\"menuitem\">Extras - Extension-Manager…</item> und klicken Sie auf <item type=\"menuitem\">Hinzufügen</item>."
#. cnBQF
#: packagemanager.xhp
@@ -46904,7 +46904,7 @@ msgctxt ""
"par_id4129459\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately.</ahelp> You will see the <link href=\"text/shared/01/extensionupdate.xhp\">Extension Update</link> dialog."
-msgstr "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Klicken Sie hier, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur ausgewählte Extensions auf Updates zu prüfen, klicken Sie zum Öffnen des Kontextmenüs mit der rechten Maustaste auf diese und wählen dann Update.... Die Prüfung auf verfügbare Aktualisierungen wird unmittelbar gestartet.</ahelp> Der Dialog <link href=\"text/shared/01/extensionupdate.xhp\">Extension Update</link> wird geöffnet."
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Klicken Sie hier, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur ausgewählte Extensions auf Updates zu prüfen, klicken Sie zum Öffnen des Kontextmenüs mit der rechten Maustaste auf diese und wählen dann Update.... Die Prüfung auf verfügbare Aktualisierungen wird unmittelbar gestartet.</ahelp> Der Dialog <link href=\"text/shared/01/extensionupdate.xhp\">Extension-Update</link> wird geöffnet."
#. CBJAi
#: packagemanager.xhp
@@ -47003,7 +47003,7 @@ msgctxt ""
"par_id0103201110331832\n"
"help.text"
msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension."
-msgstr "Abhängig von der gewählten Extension können einige weitere Einträge im Kontextmenü des Extension Managers angezeigt werden. So können Sie den Lizenztext erneut anzeigen lassen oder die Extension von der Prüfung auf Updates ausnehmen oder wieder einschließen."
+msgstr "Abhängig von der gewählten Extension können einige weitere Einträge im Kontextmenü des Extension-Managers angezeigt werden. So können Sie den Lizenztext erneut anzeigen lassen oder die Extension von der Prüfung auf Updates ausnehmen oder wieder einschließen."
#. tBvF5
#: password_dlg.xhp
@@ -48092,7 +48092,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Export as PDF"
-msgstr "Exportieren als PDF"
+msgstr "Als PDF exportieren"
#. 9A7EN
#: ref_pdf_export.xhp
@@ -50621,7 +50621,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Time Stamp Authorities for Digital Signatures"
-msgstr ""
+msgstr "Zeitstempel-Behörden für digitale Signaturen"
#. HgFt5
#: timestampauth.xhp
@@ -51377,7 +51377,7 @@ msgctxt ""
"par_idN1076B\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter the calculation.</ahelp>"
-msgstr "<ahelp hid=\".\">Die Schaltfläche <emph>Bedingung</emph> öffnet den Dialog <link href=\"text/shared/01/xformsdataaddcon.xhp\">Bedingung hinzufügen</link>, in den Sie die Berechnung eingeben können.</ahelp>"
+msgstr "<ahelp hid=\".\">Die Schaltfläche <emph>Bedingung</emph> öffnet den Dialog <link href=\"text/shared/01/xformsdataaddcon.xhp\">Bedingung hinzufügen</link>, in dem Sie die Berechnung eingeben können.</ahelp>"
#. VYfFD
#: xformsdataaddcon.xhp
@@ -51755,7 +51755,7 @@ msgctxt ""
"par_id636921\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the <emph>...</emph> button for a dialog to enter the XPath expression.</ahelp>"
-msgstr "<ahelp hid=\".\">Geben Sie den DOM-Knoten ein, mit dem das Steuerelement-Modell verbunden werden soll. Klicken Sie auf die Schaltfläche <emph>...</emph>, um einen Dialog zu öffnen, in den Sie den XPath-Ausdruck eingeben können.</ahelp>"
+msgstr "<ahelp hid=\".\">Geben Sie den DOM-Knoten ein, mit dem das Steuerelement-Modell verbunden werden soll. Klicken Sie auf die Schaltfläche <emph>...</emph>, um einen Dialog zu öffnen, in dem Sie den XPath-Ausdruck eingeben können.</ahelp>"
#. mZuaw
#: xformsdatatab.xhp
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index a73fd658586..e159f5b5f21 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-23 11:44+0100\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565413604.000000\n"
#. Edm6o
@@ -4442,7 +4442,7 @@ msgctxt ""
"par_id3150378\n"
"help.text"
msgid "When creating a form, an index is automatically assigned to the control fields that are added to this form; every control field added is assigned an index increased by <emph>1</emph>. If you change the index of a control, the indices of the other controls are updated automatically. Elements that cannot be focused (\"Tabstop = No\") are also assigned a value. However, these controls are skipped when using the <emph>Tab</emph> key."
-msgstr "Bei der Erstellung eines Formulars wird den Steuerelementen, die diesem Formular hinzugefügt werden, automatisch ein Index zugewiesen, wobei jedes neu hinzugefügte Steuerelement einen um <emph>1</emph> erhöhten Index erhält. Wenn Sie den Index eines Steuerelements ändern, werden die Indizes der restlichen Steuerelemente automatisch aktualisiert. Elementen, die nicht fokussiert werden können (\"Tabstop = Nein\"), wird ebenfalls ein Wert zugewiesen. Diese Steuerelemente werden jedoch bei einer Betätigung der <emph>Tabulatortaste</emph> übersprungen."
+msgstr "Bei der Erstellung eines Formulars wird den Steuerelementen, die diesem Formular hinzugefügt werden, automatisch ein Index zugewiesen, wobei jedes neu hinzugefügte Steuerelement einen um <emph>1</emph> erhöhten Index erhält. Wenn Sie den Index eines Steuerelements ändern, werden die Indizes der restlichen Steuerelemente automatisch aktualisiert. Elementen, die nicht fokussiert werden können (\"Tabstopp = Nein\"), wird ebenfalls ein Wert zugewiesen. Diese Steuerelemente werden jedoch bei einer Betätigung der <emph>Tabulatortaste</emph> übersprungen."
#. BAvfE
#: 01170101.xhp
@@ -12731,7 +12731,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Export Directly as PDF"
-msgstr "Direktes Exportieren als PDF"
+msgstr "Direkt als PDF exportieren"
#. A98Xc
#: 07090000.xhp
@@ -12740,7 +12740,7 @@ msgctxt ""
"hd_id3146946\n"
"help.text"
msgid "<link href=\"text/shared/02/07090000.xhp\" name=\"Export Directly as PDF\">Export Directly as PDF</link>"
-msgstr "<link href=\"text/shared/02/07090000.xhp\" name=\"Direktes Exportieren als PDF\">Direktes Exportieren als PDF</link>"
+msgstr "<link href=\"text/shared/02/07090000.xhp\" name=\"Export Directly as PDF\">Direkt als PDF exportieren</link>"
#. MKhDs
#: 07090000.xhp
@@ -18833,7 +18833,7 @@ msgctxt ""
"par_id3153062\n"
"help.text"
msgid "The graphic object is shown in black and white. All brightness values below 50% will appear black, all over 50% will appear white."
-msgstr "Das Grafikobjekt wird in Schwarzweiß angezeigt. Alle Helligkeitswerte unter 50 % erscheinen als Schwarz, alle über 50 % als Weiß."
+msgstr "Das Grafikobjekt wird in Schwarz-Weiß angezeigt. Alle Helligkeitswerte unter 50 % werden schwarz, alle über 50 % werden weiß dargestellt."
#. BCJuy
#: 24020000.xhp
diff --git a/source/de/helpcontent2/source/text/shared/06.po b/source/de/helpcontent2/source/text/shared/06.po
index b58cce68555..f0ba058a8fb 100644
--- a/source/de/helpcontent2/source/text/shared/06.po
+++ b/source/de/helpcontent2/source/text/shared/06.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared06/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -167,7 +167,7 @@ msgctxt ""
"par_id481394381734366\n"
"help.text"
msgid "<image src=\"media/screenshots/cui/ui/optctlpage/OptCTLPage.png\" id=\"img_id231592783736868\"><alt id=\"alt_id271534783734367\">Options CTL Dialog Image</alt></image>"
-msgstr "<image src=\"media/screenshots/cui/ui/optctlpage/OptCTLPage.png\" id=\"img_id231592783736868\"><alt id=\"alt_id271534783734367\">Bild des Dialogs Optionen – Complex Text Layout</alt></image>"
+msgstr "<image src=\"media/screenshots/cui/ui/optctlpage/OptCTLPage.png\" id=\"img_id231592783736868\"><alt id=\"alt_id271534783734367\">Bild des Dialogs Optionen – Komplexes Textlayout</alt></image>"
#. kEHFK
#: optionen_screenshots.xhp
diff --git a/source/de/helpcontent2/source/text/shared/autokorr.po b/source/de/helpcontent2/source/text/shared/autokorr.po
index 36235917e35..355378f1bcf 100644
--- a/source/de/helpcontent2/source/text/shared/autokorr.po
+++ b/source/de/helpcontent2/source/text/shared/autokorr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE 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-03-07 18:15+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautokorr/de/>\n"
"Language: de\n"
@@ -50,7 +50,7 @@ msgctxt ""
"par_id3158397\n"
"help.text"
msgid "Typing errors such as \"WOrd\" have been corrected and replaced by the <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> function to \"Word\"."
-msgstr "Tippfehler wie \"WOrt\" wurden durch die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> zu \"Wort\" korrigiert."
+msgstr "Tippfehler wie \"WOrt\" wurden durch die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> zu \"Wort\" korrigiert."
#. YGggv
#: 02000000.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3158397\n"
"help.text"
msgid "Your text was corrected with <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> so that the current word began with a capital letter. AutoCorrect changes words at the beginning of a paragraph, and words after the character at the end of a sentence (period, exclamation point, question mark)."
-msgstr "Ihr Text wurde mit der <link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> korrigiert, sodass das aktuelle Wort mit einem Großbuchstaben beginnt. Die AutoKorrektur ändert Wörter am Anfang eines Absatzes und Wörter nach einem Satzendezeichen (Punkt, Ausrufezeichen, Fragezeichen)."
+msgstr "Ihr Text wurde mit der <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> korrigiert, sodass das aktuelle Wort mit einem Großbuchstaben beginnt. Die AutoKorrektur ändert Wörter am Anfang eines Absatzes und Wörter nach einem Satzendezeichen (Punkt, Ausrufezeichen, Fragezeichen)."
#. L6A3T
#: 03000000.xhp
@@ -122,7 +122,7 @@ msgctxt ""
"par_id3158397\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text so that a word beginning with two capital letters at the beginning of a sentence now starts with one capital letter."
-msgstr "Ihr Text wurde durch die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> so korrigiert, dass zwei Großbuchstaben am Wortanfang sowie am Satzanfang durch einen Großbuchstabe ersetzt wurden."
+msgstr "Ihr Text wurde durch die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> so korrigiert, dass zwei Großbuchstaben am Wortanfang sowie am Satzanfang durch einen Großbuchstaben ersetzt wurden."
#. gwa8j
#: 04000000.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"par_id3159241\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has replaced a word."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat ein Wort ersetzt."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat ein Wort ersetzt."
#. CgGde
#: 05000000.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_id3153341\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has performed a replacement, and the beginning of the sentence now starts with a capital letter."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat eine Ersetzung vorgenommen. Der Satz beginnt nun mit einem Großbuchstaben."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat eine Ersetzung vorgenommen. Der Satz beginnt nun mit einem Großbuchstaben."
#. pMoyc
#: 06000000.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"par_id3146060\n"
"help.text"
msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that double quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat doppelte Anführungszeichen in Ihrem Text durch <link href=\"text/shared/01/06040400.xhp\" name=\"typografische Anführungszeichen\">typografische Anführungszeichen</link> ersetzt."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect</link>\">AutoKorrektur</link> hat doppelte Anführungszeichen in Ihrem Text durch <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typografische Anführungszeichen</link> ersetzt."
#. B9CDq
#: 07000000.xhp
@@ -266,7 +266,7 @@ msgctxt ""
"par_id3154688\n"
"help.text"
msgid "Your text was corrected by <link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">Autocorrect</link> so that single quotation marks were replaced by <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typographical quotation marks</link>."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat einfache Anführungszeichen in Ihrem Text durch <link href=\"text/shared/01/06040400.xhp\" name=\"typografische Anführungszeichen\">typografische Anführungszeichen</link> ersetzt."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Autocorrect\">AutoKorrektur</link> hat einfache Anführungszeichen in Ihrem Text durch <link href=\"text/shared/01/06040400.xhp\" name=\"typographical quotation marks\">typografische Anführungszeichen</link> ersetzt."
#. RkFAj
#: 08000000.xhp
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3150278\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text. A string has been detected as an URL and is now shown as a hyperlink."
-msgstr "Die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat Ihren Text verändert. Eine Zeichenkette wurde als URL erkannt und wird nun als Hyperlink dargestellt."
+msgstr "Die <link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat Ihren Text verändert. Eine Zeichenkette wurde als URL erkannt und wird nun als Hyperlink dargestellt."
#. VTdXe
#: 09000000.xhp
@@ -338,7 +338,7 @@ msgctxt ""
"par_id3149297\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has corrected your text so that the multiple spaces you have entered have now been reduced to one single space."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat mehrfach eingegebene Leerzeichen in Ihrem Text durch einzelne Leerzeichen ersetzt."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat mehrfach eingegebene Leerzeichen in Ihrem Text durch einzelne Leerzeichen ersetzt."
#. EejSa
#: 10000000.xhp
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3156014\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text, and the bold and/or underline text attributes have been automatically applied."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat die Textattribute Fett und/oder Unterstrichen automatisch auf Ihren Text angewendet."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat die Textattribute Fett und/oder Unterstrichen automatisch auf Ihren Text angewendet."
#. FBeJm
#: 12000000.xhp
@@ -410,7 +410,7 @@ msgctxt ""
"par_id3148932\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has modified your text, and minus signs have been replaced with dashes."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat Minuszeichen in Ihrem Text durch Bindestriche ersetzt."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat Minuszeichen in Ihrem Text durch Bindestriche ersetzt."
#. bKCng
#: 13000000.xhp
@@ -446,4 +446,4 @@ msgctxt ""
"par_id3153220\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect</link> has corrected your text so that ordinal number suffixes have been superscripted."
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link> hat Ihren Text so korrigiert, dass die Endungen der im Englischen gebräuchlichen Ordnungszahlen hochgestellt sind."
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur</link> hat Ihren Text so korrigiert, dass die Endungen der im Englischen gebräuchlichen Ordnungszahlen hochgestellt sind."
diff --git a/source/de/helpcontent2/source/text/shared/autopi.po b/source/de/helpcontent2/source/text/shared/autopi.po
index 78cb894ce20..8784c024e45 100644
--- a/source/de/helpcontent2/source/text/shared/autopi.po
+++ b/source/de/helpcontent2/source/text/shared/autopi.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautopi/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -86,7 +86,7 @@ msgctxt ""
"hd_id3147530\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter</link>"
-msgstr "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Dokumenten-Konverter\">Dokumenten-Konverter</link>"
+msgstr "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Dokumentkonverter</link>"
#. nxJzj
#: 01000000.xhp
@@ -1859,7 +1859,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard"
-msgstr "Tagesordnungs-Assistent"
+msgstr "Tagesordnungsassistent"
#. D3wGn
#: 01040000.xhp
@@ -1868,7 +1868,7 @@ msgctxt ""
"bm_id3149031\n"
"help.text"
msgid "<bookmark_value>wizards;agendas</bookmark_value><bookmark_value>Agenda Wizard</bookmark_value><bookmark_value>templates;agendas</bookmark_value>"
-msgstr "<bookmark_value>Assistenten; Tagesordnung</bookmark_value><bookmark_value>Tagesordnungs-Assistent</bookmark_value><bookmark_value>Vorlagen; Tagesordnungen</bookmark_value>"
+msgstr "<bookmark_value>Assistenten; Tagesordnung</bookmark_value><bookmark_value>Tagesordnungsassistent</bookmark_value><bookmark_value>Vorlagen; Tagesordnungen</bookmark_value>"
#. s5qJR
#: 01040000.xhp
@@ -1877,7 +1877,7 @@ msgctxt ""
"hd_id3149031\n"
"help.text"
msgid "Agenda Wizard"
-msgstr "Tagesordnungs-Assistent"
+msgstr "Tagesordnungsassistent"
#. rVtcF
#: 01040000.xhp
@@ -1976,7 +1976,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard - Page Design"
-msgstr "Tagesordnungs-Assistent - Seitendesign"
+msgstr "Tagesordnungsassistent – Seitendesign"
#. bBzNB
#: 01040100.xhp
@@ -1985,7 +1985,7 @@ msgctxt ""
"hd_id3151100\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040100.xhp\" name=\"Agenda Wizard - Page Design\">Agenda Wizard - Page Design</link>"
-msgstr "<link href=\"text/shared/autopi/01040100.xhp\" name=\"Tagesordnungs-Assistent - Seitendesign\">Tagesordnungs-Assistent - Seitendesign</link>"
+msgstr "<link href=\"text/shared/autopi/01040100.xhp\" name=\"Agenda Wizard - Page Design\">Tagesordnungsassistent – Seitendesign</link>"
#. fPTHx
#: 01040100.xhp
@@ -2039,7 +2039,7 @@ msgctxt ""
"par_id3153087\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Go to Agenda Wizard - General information\">Go to Agenda Wizard - General information</link>"
-msgstr "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Weiter zu Tagesordnungs-Assistent - Allgemeine Informationen\">Weiter zu Tagesordnungs-Assistent - Allgemeine Informationen</link>"
+msgstr "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Go to Agenda Wizard - General information\">Weiter zu: Tagesordnungsassistent – Allgemeine Informationen</link>"
#. WGmzy
#: 01040200.xhp
@@ -2048,7 +2048,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard - General Information"
-msgstr "Tagesordnungs-Assistent - Allgemeine Informationen"
+msgstr "Tagesordnungsassistent – Allgemeine Informationen"
#. d4naA
#: 01040200.xhp
@@ -2057,7 +2057,7 @@ msgctxt ""
"hd_id3150247\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Agenda Wizard - General Information\">Agenda Wizard - General Information</link>"
-msgstr "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Tagesordnungs-Assistent - Allgemeine Informationen\">Tagesordnungs-Assistent - Allgemeine Informationen</link>"
+msgstr "<link href=\"text/shared/autopi/01040200.xhp\" name=\"Agenda Wizard - General Information\">Tagesordnungsassistent – Allgemeine Informationen</link>"
#. eLECH
#: 01040200.xhp
@@ -2147,7 +2147,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Go to Agenda Wizard - Headings to include\">Go to Agenda Wizard - Headings to include</link>"
-msgstr "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Weiter zu Tagesordnungs-Assistent - Bestandteile\">Weiter zu Tagesordnungs-Assistent - Bestandteile</link>"
+msgstr "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Go to Agenda Wizard - Headings to include\">Weiter zum Tagesordnungsassistenten – Bestandteile</link>"
#. Q5JDB
#: 01040300.xhp
@@ -2156,7 +2156,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard - Headings to include"
-msgstr "Tagesordnungs-Assistent - Bestandteile"
+msgstr "Tagesordnungsassistent – Bestandteile"
#. ipAGt
#: 01040300.xhp
@@ -2165,7 +2165,7 @@ msgctxt ""
"hd_id3109850\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Agenda Wizard - Headings to include\">Agenda Wizard - Headings to include</link>"
-msgstr "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Tagesordnungs-Assistent - Bestandteile\">Tagesordnungs-Assistent - Bestandteile</link>"
+msgstr "<link href=\"text/shared/autopi/01040300.xhp\" name=\"Agenda Wizard - Headings to include\">Tagesordnungsassistent – Bestandteile</link>"
#. yBn6A
#: 01040300.xhp
@@ -2255,7 +2255,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Go to Agenda Wizard - Names\">Go to Agenda Wizard - Names</link>"
-msgstr "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Weiter zu Tagesordnungs-Assistent - Namen\">Weiter zu Tagesordnungs-Assistent - Namen</link>"
+msgstr "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Go to Agenda Wizard - Names\">Weiter zu: Tagesordnungsassistent – Namen</link>"
#. zECC7
#: 01040400.xhp
@@ -2264,7 +2264,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard - Names"
-msgstr "Tagesordnungs-Assistent - Namen"
+msgstr "Tagesordnungsassistent – Namen"
#. FmZNr
#: 01040400.xhp
@@ -2273,7 +2273,7 @@ msgctxt ""
"hd_id3143284\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Agenda Wizard - Names\">Agenda Wizard - Names</link>"
-msgstr "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Tagesordnungs-Assistent - Namen\">Tagesordnungs-Assistent - Namen</link>"
+msgstr "<link href=\"text/shared/autopi/01040400.xhp\" name=\"Agenda Wizard - Names\">Tagesordnungsassistent – Namen</link>"
#. emLhT
#: 01040400.xhp
@@ -2417,7 +2417,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Go to Agenda Wizard - Agenda Items\">Go to Agenda Wizard - Agenda Items</link>"
-msgstr "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Weiter zu Tagesordnungs-Assistent - Tagesordnungspunkte\">Weiter zu Tagesordnungs-Assistent - Tagesordnungspunkte</link>"
+msgstr "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Go to Agenda Wizard - Agenda Items\">Weiter zu: Tagesordnungsassistent – Tagesordnungspunkte</link>"
#. STCc4
#: 01040500.xhp
@@ -2426,7 +2426,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard - Agenda Items"
-msgstr "Tagesordnungs-Assistent - Tagesordnungspunkte"
+msgstr "Tagesordnungsassistent – Tagesordnungspunkte"
#. Gj4D2
#: 01040500.xhp
@@ -2435,7 +2435,7 @@ msgctxt ""
"hd_id3159224\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Agenda Wizard - Agenda Items\">Agenda Wizard - Agenda Items</link>"
-msgstr "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Tagesordnungs-Assistent - Tagesordnungspunkte\">Tagesordnungs-Assistent - Tagesordnungspunkte</link>"
+msgstr "<link href=\"text/shared/autopi/01040500.xhp\" name=\"Agenda Wizard - Agenda Items\">Tagesordnungsassistent – Tagesordnungspunkte</link>"
#. BDRvF
#: 01040500.xhp
@@ -2543,7 +2543,7 @@ msgctxt ""
"par_id3146798\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Go to Agenda Wizard - Name and location\">Go to Agenda Wizard - Name and location</link>"
-msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Weiter zu Tagesordnungs-Assistent - Name und Speicherort\">Weiter zu Tagesordnungs-Assistent - Name und Speicherort</link>"
+msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Go to Agenda Wizard - Name and location\">Weiter zu: Tagesordnungsassistent – Name und Speicherort</link>"
#. H9Wbq
#: 01040600.xhp
@@ -2552,7 +2552,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Agenda Wizard - Name and Location"
-msgstr "Tagesordnungs-Assistent - Name und Speicherort"
+msgstr "Tagesordnungsassistent – Name und Speicherort"
#. VcrH9
#: 01040600.xhp
@@ -2561,7 +2561,7 @@ msgctxt ""
"hd_id3144740\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Agenda Wizard - Name and Location\">Agenda Wizard - Name and Location</link>"
-msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Tagesordnungs-Assistent - Name und Speicherort\">Tagesordnungs-Assistent - Name und Speicherort</link>"
+msgstr "<link href=\"text/shared/autopi/01040600.xhp\" name=\"Agenda Wizard - Name and Location\">Tagesordnungsassistent – Name und Speicherort</link>"
#. viGf3
#: 01040600.xhp
@@ -2651,7 +2651,7 @@ msgctxt ""
"par_idN105F6\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Go to Agenda Wizard\">Go to Agenda Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Weiter zu Tagesordnungs-Assistent\">Weiter zu Tagesordnungs-Assistent</link>"
+msgstr "<link href=\"text/shared/autopi/01040000.xhp\" name=\"Go to Agenda Wizard\">Weiter zu: Tagesordnungsassistent</link>"
#. 4DsCG
#: 01090000.xhp
@@ -3857,7 +3857,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard"
-msgstr "Berichts-Assistent"
+msgstr "Berichtsassistent"
#. Ljpsw
#: 01100000.xhp
@@ -3866,7 +3866,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "Report Wizard"
-msgstr "Berichts-Assistent"
+msgstr "Berichtsassistent"
#. Wxizv
#: 01100000.xhp
@@ -3893,7 +3893,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Field Selection"
-msgstr "Berichts-Assistent - Feldauswahl"
+msgstr "Berichtsassistent – Feldauswahl"
#. 3hFgh
#: 01100100.xhp
@@ -3902,7 +3902,7 @@ msgctxt ""
"hd_id3155599\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100100.xhp\" name=\"Report Wizard - Field Selection\">Report Wizard - Field Selection</link>"
-msgstr "<link href=\"text/shared/autopi/01100100.xhp\" name=\"Berichts-Assistent – Feldauswahl\">Berichts-Assistent – Feldauswahl</link>"
+msgstr "<link href=\"text/shared/autopi/01100100.xhp\" name=\"Report Wizard - Field Selection\">Berichtsassistent – Feldauswahl</link>"
#. k9HWM
#: 01100100.xhp
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100150.xhp\" name=\"More about Report Wizard - Labeling Fields\">More about Report Wizard - Labeling Fields</link>"
-msgstr "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Weitere Informationen zum Berichts-Assistent – Felder beschriften\">Weitere Informationen zum Berichts-Assistent – Felder beschriften</link>"
+msgstr "<link href=\"text/shared/autopi/01100150.xhp\" name=\"More about Report Wizard - Labeling Fields\">Weitere Informationen zu: Berichtsassistent – Felder beschriften</link>"
#. CU6F5
#: 01100150.xhp
@@ -4055,7 +4055,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Labeling Fields"
-msgstr "Berichts-Assistent – Felder beschriften"
+msgstr "Berichtsassistent – Felder beschriften"
#. pcAoA
#: 01100150.xhp
@@ -4064,7 +4064,7 @@ msgctxt ""
"hd_id3144415\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Report Wizard - Labeling Fields\">Report Wizard - Labeling Fields</link>"
-msgstr "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Report Wizard - Labeling Fields\">Berichts-Assistent - Felder beschriften</link>"
+msgstr "<link href=\"text/shared/autopi/01100150.xhp\" name=\"Report Wizard - Labeling Fields\">Berichtsassistent - Felder beschriften</link>"
#. GsVRi
#: 01100150.xhp
@@ -4100,7 +4100,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100200.xhp\" name=\"More about Report Wizard - Grouping\">More about Report Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Weitere Informationen zum Berichts-Assistent – Gruppierung\">Weitere Informationen zum Berichts-Assistent – Gruppierung</link>"
+msgstr "<link href=\"text/shared/autopi/01100200.xhp\" name=\"More about Report Wizard - Grouping\">Weitere Informationen zu: Berichtsassistent – Gruppierung</link>"
#. BUhYd
#: 01100200.xhp
@@ -4109,7 +4109,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Grouping"
-msgstr "Berichts-Assistent – Gruppierung"
+msgstr "Berichtsassistent – Gruppierung"
#. QGdmm
#: 01100200.xhp
@@ -4118,7 +4118,7 @@ msgctxt ""
"hd_id3147000\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Report Wizard - Grouping\">Report Wizard - Grouping</link>"
-msgstr "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Berichts-Assistent – Gruppierung\">Berichts-Assistent – Gruppierung</link>"
+msgstr "<link href=\"text/shared/autopi/01100200.xhp\" name=\"Report Wizard - Grouping\">Berichtsassistent – Gruppierung</link>"
#. UURLb
#: 01100200.xhp
@@ -4208,7 +4208,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100300.xhp\" name=\"More about Report Wizard - Sort Options\">More about Report Wizard - Sort Options</link>"
-msgstr "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Weitere Informationen zum Berichts-Assistent – Sortieroptionen\">Weitere Informationen zum Berichts-Assistent – Sortieroptionen</link>"
+msgstr "<link href=\"text/shared/autopi/01100300.xhp\" name=\"More about Report Wizard - Sort Options\">Weitere Informationen zu: Berichtsassistent – Sortieroptionen</link>"
#. HPGPg
#: 01100300.xhp
@@ -4217,7 +4217,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Sort Options"
-msgstr "Berichts-Assistent – Sortieroptionen"
+msgstr "Berichtsassistent – Sortieroptionen"
#. 5icZB
#: 01100300.xhp
@@ -4226,7 +4226,7 @@ msgctxt ""
"hd_id3148668\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Report Wizard - Sort Options\">Report Wizard - Sort Options</link>"
-msgstr "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Berichts-Assistent – Sortieroptionen\">Berichts-Assistent – Sortieroptionen</link>"
+msgstr "<link href=\"text/shared/autopi/01100300.xhp\" name=\"Report Wizard - Sort Options\">Berichtsassistent – Sortieroptionen</link>"
#. RSArv
#: 01100300.xhp
@@ -4316,7 +4316,7 @@ msgctxt ""
"par_id3156329\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"More about Report Wizard - Choose Layout\">More about Report Wizard - Choose Layout</link>"
-msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Weitere Informationen zum Berichts-Assistent – Auswahl des Layouts\">Weitere Informationen zum Berichts-Assistent – Auswahl des Layouts</link>"
+msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"More about Report Wizard - Choose Layout\">Weitere Informationen zu: Berichtsassistent – Auswahl des Layouts</link>"
#. 8Gkxm
#: 01100400.xhp
@@ -4325,7 +4325,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Choose Layout"
-msgstr "Berichts-Assistent - Auswahl des Layouts"
+msgstr "Berichtsassistent – Auswahl des Layouts"
#. GCkoV
#: 01100400.xhp
@@ -4334,7 +4334,7 @@ msgctxt ""
"hd_id3148668\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Choose Layout\">Report Wizard - Choose Layout</link>"
-msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Berichts-Assistent – Auswahl des Layouts\">Berichts-Assistent – Auswahl des Layouts</link>"
+msgstr "<link href=\"text/shared/autopi/01100400.xhp\" name=\"Report Wizard - Choose Layout\">Berichtsassistent – Auswahl des Layouts</link>"
#. aPVFq
#: 01100400.xhp
@@ -4442,7 +4442,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100500.xhp\" name=\"More about Report Wizard - Create Report\">More about Report Wizard - Create Report</link>"
-msgstr "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Weitere Informationen zum Berichts-Assistent – Bericht erstellen\">Weitere Informationen zum Berichts-Assistent – Bericht erstellen</link>"
+msgstr "<link href=\"text/shared/autopi/01100500.xhp\" name=\"More about Report Wizard - Create Report\">Weitere Informationen zu: Berichtsassistent – Bericht erstellen</link>"
#. KwNon
#: 01100500.xhp
@@ -4451,7 +4451,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Report Wizard - Create Report"
-msgstr "Berichts-Assistent - Bericht erstellen"
+msgstr "Berichtsassistent – Bericht erstellen"
#. gKZbX
#: 01100500.xhp
@@ -4460,7 +4460,7 @@ msgctxt ""
"hd_id3156211\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Report Wizard - Create Report\">Report Wizard - Create Report</link>"
-msgstr "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Berichts-Assistent - Bericht erstellen\">Berichts-Assistent - Bericht erstellen</link>"
+msgstr "<link href=\"text/shared/autopi/01100500.xhp\" name=\"Report Wizard - Create Report\">Berichtsassistent – Bericht erstellen</link>"
#. G5N3i
#: 01100500.xhp
@@ -5180,7 +5180,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "To export to ASP, in a $[officename] Impress document choose <emph>File - Export</emph>. You then see the <emph>Export</emph> dialog in which you select <emph>HTML Document</emph> as the file type. Once you have selected a directory and entered a file name, click <emph>Export</emph>. For export as ASP, we recommend selecting a \"secret\" file name for the HTML file (see below for more details). You then see the <emph>HTML Export</emph> dialog. Several files will be written to the directory you have just selected."
-msgstr "Zum Exportieren nach ASP wählen Sie in einem geöffneten $[officename] Impress Dokument <emph>Datei - Exportieren</emph>. Sie sehen den Dialog <emph>Exportieren</emph>, in dem Sie <emph>Webseite</emph> als Dateityp wählen. Nach Auswahl eines Verzeichnisses und Eingabe eines Dateinamens klicken Sie auf <emph>Speichern</emph>. Für den Export als ASP empfehlen wir einen \"geheimen\" Dateinamen für die HTML-Datei zu wählen, siehe weiter unten. Sie sehen anschließend den Dialog <emph>HTML-Export</emph>. Er wird mehrere Dateien in das eben ausgewählte Verzeichnis schreiben."
+msgstr "Zum Exportieren nach ASP wählen Sie in einem geöffneten $[officename] Impress-Dokument <emph>Datei - Exportieren…</emph>. Sie sehen den Dialog <emph>Exportieren</emph>, in dem Sie <emph>HTML-Dokument</emph> als Dateityp wählen. Nach Auswahl eines Verzeichnisses und Eingabe eines Dateinamens klicken Sie auf <emph>Speichern</emph>. Für den Export als ASP empfehlen wir, einen \"geheimen\" Dateinamen für die HTML-Datei zu wählen, siehe weiter unten. Sie sehen anschließend den Dialog <emph>HTML-Export</emph>. Es werden mehrere Dateien in das soeben gewählte Verzeichnis geschrieben."
#. ALHEL
#: 01110200.xhp
@@ -5963,7 +5963,7 @@ msgctxt ""
"hd_id3149095\n"
"help.text"
msgid "Use browser colors"
-msgstr "Browser Farben verwenden"
+msgstr "Browserfarben verwenden"
#. AgdRU
#: 01110600.xhp
@@ -6593,7 +6593,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Document Converter"
-msgstr "Dokumenten-Konverter-Assistent"
+msgstr "Dokumentkonverter-Assistent"
#. szRb9
#: 01130000.xhp
@@ -6602,7 +6602,7 @@ msgctxt ""
"hd_id3149798\n"
"help.text"
msgid "Document Converter"
-msgstr "Dokumenten-Konverter-Assistent"
+msgstr "Dokumentkonverter-Assistent"
#. v5SJh
#: 01130000.xhp
@@ -6629,7 +6629,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "The Document Converter Wizard contains the following pages:"
-msgstr "Der Dokumenten-Konverter-Assistent umfasst die folgenden Seiten:"
+msgstr "Der Dokumentkonverter-Assistent umfasst die folgenden Seiten:"
#. 9CQNJ
#: 01130000.xhp
@@ -6638,7 +6638,7 @@ msgctxt ""
"hd_id3154318\n"
"help.text"
msgid "Document Converter Summary"
-msgstr "Dokumenten-Konverter Zusammenfassung"
+msgstr "Dokumentkonverter Zusammenfassung"
#. 3qZPc
#: 01130000.xhp
@@ -6656,7 +6656,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Document Converter Page 1"
-msgstr "Dokumenten-Konverter Erste Seite"
+msgstr "Dokumentkonverter Erste Seite"
#. EhtBu
#: 01130100.xhp
@@ -6665,7 +6665,7 @@ msgctxt ""
"hd_id3151299\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Document Converter Page 1\">Document Converter Page 1</link>"
-msgstr "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Dokumenten-Konverter Erste Seite\">Dokumenten-Konverter Erste Seite</link>"
+msgstr "<link href=\"text/shared/autopi/01130100.xhp\" name=\"Document Converter Page 1\">Dokumentkonverter Erste Seite</link>"
#. G7Zgn
#: 01130100.xhp
@@ -6773,7 +6773,7 @@ msgctxt ""
"par_id3149578\n"
"help.text"
msgid "Continue to the next page of the <link href=\"text/shared/autopi/01130200.xhp\" name=\"Document Converter\">Document Converter</link>."
-msgstr "Hier geht es weiter zur nächsten Seite des <link href=\"text/shared/autopi/01130200.xhp\" name=\"Dokumenten-Konverters\">Dokumenten-Konverters</link>."
+msgstr "Hier geht es weiter zur nächsten Seite des <link href=\"text/shared/autopi/01130200.xhp\" name=\"Document Converter\">Dokumentkonverters</link>."
#. 58vGa
#: 01130200.xhp
@@ -6782,7 +6782,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Document converter continuation pages"
-msgstr "Dokumenten-Konverter Folgeseiten"
+msgstr "Dokumentkonverter Folgeseiten"
#. MZWf5
#: 01130200.xhp
@@ -6791,7 +6791,7 @@ msgctxt ""
"hd_id3149748\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01130200.xhp\" name=\"Document converter continuation pages\">Document converter continuation pages</link>"
-msgstr "<link href=\"text/shared/autopi/01130200.xhp\" name=\"Dokumenten-Konverter Folgeseiten\">Dokumenten-Konverter Folgeseiten</link>"
+msgstr "<link href=\"text/shared/autopi/01130200.xhp\" name=\"Document converter continuation pages\">Dokumentkonverter Folgeseiten</link>"
#. Ve7Wv
#: 01130200.xhp
@@ -6845,7 +6845,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGIMPORT_2_CBTEMPLATE\">Specifies that templates are to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGIMPORT_2_CBTEMPLATE\">Markieren Sie dieses Feld, um die Dokumentenvorlagen zu konvertieren.</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGIMPORT_2_CBTEMPLATE\">Markieren Sie dieses Feld, um die Dokumentvorlagen zu konvertieren.</ahelp>"
#. fnBXC
#: 01130200.xhp
@@ -6971,7 +6971,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "Here you can return to the main page of the <link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter Wizard</link>."
-msgstr "Hier können Sie zur Hauptseite des <link href=\"text/shared/autopi/01130000.xhp\" name=\"Dokumenten-Konverter\">Dokumenten-Konverter</link> zurückkehren."
+msgstr "Hier können Sie zur Hauptseite des <link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Dokumentkonverter</link> zurückkehren."
#. ELq8D
#: 01150000.xhp
diff --git a/source/de/helpcontent2/source/text/shared/explorer/database.po b/source/de/helpcontent2/source/text/shared/explorer/database.po
index 63842fdf89e..23e08ee022d 100644
--- a/source/de/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/de/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-02 05:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565413637.000000\n"
#. rxCsN
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_idN105B7\n"
"help.text"
msgid "<link href=\"text/sdatabase/main.xhp\">Working with databases in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/main.xhp\">Mit Datenbanken in %PRODUCTNAME arbeiten</link>"
#. ptEgp
#: dabaprop.xhp
@@ -2507,7 +2507,7 @@ msgctxt ""
"bm_id2026429\n"
"help.text"
msgid "<bookmark_value>wizards;databases (Base)</bookmark_value><bookmark_value>Database Wizard (Base)</bookmark_value><bookmark_value>databases; formats (Base)</bookmark_value><bookmark_value>MySQL databases (Base)</bookmark_value><bookmark_value>MariaDB databases (Base)</bookmark_value><bookmark_value>dBASE; database settings (Base)</bookmark_value><bookmark_value>spreadsheets;as databases (base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Assistenten; Datenbanken (Base)</bookmark_value><bookmark_value>Datenbankassistent (Base)</bookmark_value><bookmark_value>Datenbanken; Formate (Base)</bookmark_value><bookmark_value>MySQL Datenbanken (Base)</bookmark_value><bookmark_value>MariaDB Datenbanken (Base)</bookmark_value><bookmark_value>dBASE; Datenbankeinstellungen (Base)</bookmark_value><bookmark_value>Tabellendokumente; als Datenbanken (Base)</bookmark_value>"
#. 4QDPm
#: dabawiz00.xhp
@@ -3614,7 +3614,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "MariaDB and MySQL Connection"
-msgstr ""
+msgstr "Verbindung mit MariaDB und MySQL"
#. bVNAZ
#: dabawiz02mysql.xhp
@@ -3623,7 +3623,7 @@ msgctxt ""
"bm_id861587404584956\n"
"help.text"
msgid "<bookmark_value>MariaDB settings (Base)</bookmark_value><bookmark_value>MySQL settings (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>MariaDB-Einstellungen (Base)</bookmark_value><bookmark_value>MySQL-Einstellungen (Base)</bookmark_value>"
#. f4CzF
#: dabawiz02mysql.xhp
@@ -3632,7 +3632,7 @@ msgctxt ""
"par_idN10549\n"
"help.text"
msgid "<variable id=\"mysql\"><link href=\"text/shared/explorer/database/dabawiz02mysql.xhp\">MariaDB and MySQL Connection</link></variable>"
-msgstr ""
+msgstr "<variable id=\"mysql\"><link href=\"text/shared/explorer/database/dabawiz02mysql.xhp\">Verbindung zu MariaDB und MySQL</link></variable>"
#. 5FPU6
#: dabawiz02mysql.xhp
@@ -3641,7 +3641,7 @@ msgctxt ""
"par_idN1054D\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the options for MariaDB and MySQL databases.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die Optionen für MariaDB- und MySQL-Datenbanken fest.</ahelp>"
#. Bmcwo
#: dabawiz02mysql.xhp
@@ -3650,7 +3650,7 @@ msgctxt ""
"hd_id661587405298284\n"
"help.text"
msgid "Direct Connection for MariaDB and MySQL databases"
-msgstr ""
+msgstr "Direktverbindung für MariaDB- und MySQL-Datenbanken"
#. vd9VD
#: dabawiz02mysql.xhp
@@ -3659,7 +3659,7 @@ msgctxt ""
"hd_id321587405303769\n"
"help.text"
msgid "Database name"
-msgstr ""
+msgstr "Datenbankname"
#. 6LAsi
#: dabawiz02mysql.xhp
@@ -3668,7 +3668,7 @@ msgctxt ""
"par_id371587405314376\n"
"help.text"
msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name."
-msgstr ""
+msgstr "Geben Sie den Namen der MariaDB- oder MySQL-Datenbank ein. Fragen Sie Ihren Datenbankadministrator nach dem richtigen Namen."
#. jbdZp
#: dabawiz02mysql.xhp
@@ -3677,7 +3677,7 @@ msgctxt ""
"hd_id561587405334695\n"
"help.text"
msgid "Server URL"
-msgstr ""
+msgstr "Server-URL"
#. SshYk
#: dabawiz02mysql.xhp
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id521587405341138\n"
"help.text"
msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server."
-msgstr ""
+msgstr "Geben Sie die URL für den Datenbankserver ein. Dies ist der Name des Computers, auf dem die MariaDB- oder MySQL-Datenbank ausgeführt wird. Sie können den Hostnamen auch durch die IP-Adresse des Servers ersetzen."
#. MZQiq
#: dabawiz02mysql.xhp
@@ -3695,7 +3695,7 @@ msgctxt ""
"hd_id171587405349438\n"
"help.text"
msgid "Port number"
-msgstr ""
+msgstr "Portnummer"
#. J2SR3
#: dabawiz02mysql.xhp
@@ -3704,7 +3704,7 @@ msgctxt ""
"par_id1001587405358390\n"
"help.text"
msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306."
-msgstr ""
+msgstr "Geben Sie die Portnummer für den Datenbankserver ein. Fragen Sie Ihren Datenbankadministrator nach der richtigen Portadresse. Die Standardportnummer für MySQL- oder MariaDB-Datenbanken lautet 3306."
#. ovKhU
#: dabawiz02mysql.xhp
@@ -3713,7 +3713,7 @@ msgctxt ""
"hd_id121587407845730\n"
"help.text"
msgid "Named Pipe"
-msgstr ""
+msgstr "Benannte Pipe"
#. Rq89B
#: dabawiz02mysql.xhp
@@ -3722,7 +3722,7 @@ msgctxt ""
"par_id941587407987180\n"
"help.text"
msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name."
-msgstr ""
+msgstr "Wenn auf die MariaDB- oder MySQL-Datenbank über eine benannte Pipe zugegriffen werden soll, geben Sie hier ihren Namen ein."
#. wF6bj
#: dabawiz02mysql.xhp
@@ -3731,7 +3731,7 @@ msgctxt ""
"hd_id161587405553671\n"
"help.text"
msgid "Socket"
-msgstr ""
+msgstr "Socket"
#. e8DB2
#: dabawiz02mysql.xhp
@@ -3740,7 +3740,7 @@ msgctxt ""
"par_id161587405561472\n"
"help.text"
msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID."
-msgstr ""
+msgstr "Wenn über einen Socket auf die MariaDB- oder MySQL-Datenbank zugegriffen werden soll, geben Sie hier die Socket-ID ein."
#. fpBNu
#: dabawiz02mysql.xhp
@@ -4784,7 +4784,7 @@ msgctxt ""
"par_idN105C2\n"
"help.text"
msgid "Report Wizard"
-msgstr "Berichts-Assistent"
+msgstr "Berichtsassistent"
#. U7xE3
#: menuedit.xhp
@@ -4793,7 +4793,7 @@ msgctxt ""
"par_idN105C6\n"
"help.text"
msgid "<ahelp hid=\".\">Starts the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link> for the selected table, query, or view.</ahelp>"
-msgstr "<ahelp hid=\".\">Startet den <link href=\"text/shared/autopi/01100000.xhp\">Berichts-Assistenten</link> für die ausgewählte Tabelle, Abfrage oder Ansicht.</ahelp>"
+msgstr "<ahelp hid=\".\">Startet den <link href=\"text/shared/autopi/01100000.xhp\">Berichtsassistenten</link> für die ausgewählte Tabelle, Abfrage oder Ansicht.</ahelp>"
#. yNkzG
#: menuedit.xhp
@@ -5711,7 +5711,7 @@ msgctxt ""
"par_id0112200902353466\n"
"help.text"
msgid "<ahelp hid=\".\">The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area.</ahelp>"
-msgstr "<ahelp hid=\".\">Der Migrations-Assistent für Datenbankmakros verschiebt vorhandene Makros aus Unterdokumenten einer alten Datenbankdatei in den Makro-Speicherbereich der neuen Datenbankdatei.</ahelp>"
+msgstr "<ahelp hid=\".\">Der Migrationsassistent für Datenbankmakros verschiebt vorhandene Makros aus Unterdokumenten einer alten Datenbankdatei in den Makro-Speicherbereich der neuen Datenbankdatei.</ahelp>"
#. ajASD
#: migrate_macros.xhp
@@ -5756,7 +5756,7 @@ msgctxt ""
"par_id0112200903075830\n"
"help.text"
msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed."
-msgstr "Der Migrations-Assistent für Datenbankmakros kann die Makros in den Speicherbereich der Datenbankdatei verschieben. Sie können dann die Makros überprüfen und nach Bedarf bearbeiten."
+msgstr "Der Migrationsassistent für Datenbankmakros kann die Makros in den Speicherbereich der Datenbankdatei verschieben. Sie können dann die Makros überprüfen und nach Bedarf bearbeiten."
#. RJUfX
#: migrate_macros.xhp
@@ -5783,7 +5783,7 @@ msgctxt ""
"par_id0112200902353554\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
-msgstr "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Makros in Datenbank-Dokumenten\">Wiki-Seite mit einer ausführlichereren Erklärung der Entwickler.</link>"
+msgstr "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Makros in Datenbankdokumenten\">Wiki-Seite mit einer ausführlicheren Erklärung der Entwickler.</link>"
#. WG9NH
#: password.xhp
@@ -6719,7 +6719,7 @@ msgctxt ""
"par_id8638874\n"
"help.text"
msgid "<ahelp hid=\".\">You can open the Date and Time dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Date and Time</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">Sie können den Dialog \"Datum und Zeit\" des <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builders</link> öffnen, indem Sie <item type=\"menuitem\">Einfügen – Datum und Zeit</item> wählen.</ahelp>"
+msgstr "<ahelp hid=\".\">Sie können den Dialog \"Datum und Zeit\" des <link href=\"text/shared/explorer/database/rep_main.xhp\">Bericht-Designers</link> öffnen, indem Sie <item type=\"menuitem\">Einfügen – Datum und Zeit</item> wählen.</ahelp>"
#. tSLyd
#: rep_datetime.xhp
@@ -6989,7 +6989,7 @@ msgctxt ""
"par_id5248573\n"
"help.text"
msgid "The Report Builder is a tool to create your own database reports. Unlike with the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too."
-msgstr "Der Bericht-Designer ist ein Werkzeug, mit dem Sie Ihre eigenen Datenbankberichte erstellen können. Im Unterschied zum <link href=\"text/shared/autopi/01100000.xhp\">Berichts-Assistenten</link> können Sie mithilfe des Bericht-Designers den Bericht den eigenen Wünschen entsprechend entwerfen. Der erzeugte Bericht ist ein Writerdokument, welches Sie ebenfalls bearbeiten können."
+msgstr "Der Bericht-Designer ist ein Werkzeug, mit dem Sie Ihre eigenen Datenbankberichte erstellen können. Im Unterschied zum <link href=\"text/shared/autopi/01100000.xhp\">Berichtsassistenten</link> können Sie mithilfe des Bericht-Designers den Bericht den eigenen Wünschen entsprechend entwerfen. Der erzeugte Bericht ist ein Writerdokument, welches Sie ebenfalls bearbeiten können."
#. A7xcb
#: rep_main.xhp
@@ -6998,7 +6998,7 @@ msgctxt ""
"par_id7128818\n"
"help.text"
msgid "To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME."
-msgstr "Um den Report Builder-Designer zu nutzen, muss die Report Builder-Komponente installiert sein. Zusätzlich muss eine Java-Laufzeitumgebung (JRE) installiert und in %PRODUCTNAME ausgewählt sein."
+msgstr "Um den Bericht-Designer zu nutzen, muss die Komponente Bericht-Designer installiert sein. Zusätzlich muss eine Java-Laufzeitumgebung (JRE) installiert und in %PRODUCTNAME ausgewählt sein."
#. MUFG8
#: rep_main.xhp
@@ -7880,7 +7880,7 @@ msgctxt ""
"par_id3424481\n"
"help.text"
msgid "<ahelp hid=\".\">You can open the Page Numbers dialog of the <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builder</link> by choosing <item type=\"menuitem\">Insert - Page Numbers</item>.</ahelp>"
-msgstr "<ahelp hid=\".\">Sie können den Dialog Seitenzahlen des <link href=\"text/shared/explorer/database/rep_main.xhp\">Report Builders</link> öffnen, indem Sie <item type=\"menuitem\">Einfügen - Seitenzahlen</item> wählen.</ahelp>"
+msgstr "<ahelp hid=\".\">Sie können den Dialog Seitenzahlen des <link href=\"text/shared/explorer/database/rep_main.xhp\">Bericht-Designers</link> öffnen, indem Sie <item type=\"menuitem\">Einfügen - Seitenzahlen</item> wählen.</ahelp>"
#. ygaGw
#: rep_pagenumbers.xhp
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index c8aa219033b..5cfa13419a1 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:36+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565411466.000000\n"
#. iharT
@@ -347,7 +347,7 @@ msgctxt ""
"par_id3153541\n"
"help.text"
msgid "Press the shortcut keys Shift+F1 to activate extended tips once."
-msgstr "Drücken Sie zum einmaligen Aktivieren der Erweiterten Tipps die Tastenkombination Umschalt+F1."
+msgstr "Drücken Sie zum einmaligen Aktivieren der erweiterten Tipps die Tastenkombination Umschalt+F1."
#. GjoTE
#: active_help_on_off.xhp
@@ -419,7 +419,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "Click the Start button on the Windows taskbar. Choose <emph>Settings</emph>."
-msgstr ""
+msgstr "Klicken Sie in der Windows-Taskleiste auf die Schaltfläche Start. Wählen Sie <emph>Einstellungen</emph>."
#. u7g6Z
#: activex.xhp
@@ -428,7 +428,7 @@ msgctxt ""
"par_idN106E8\n"
"help.text"
msgid "In Settings, click <emph>Apps</emph>."
-msgstr ""
+msgstr "In den Einstellungen klicken Sie auf <emph>Apps</emph>."
#. 3UNE4
#: activex.xhp
@@ -437,7 +437,7 @@ msgctxt ""
"par_id3156155\n"
"help.text"
msgid "In the <emph>Apps & features</emph> list, click %PRODUCTNAME, then click <emph>Change</emph>."
-msgstr ""
+msgstr "Klicken Sie in der Liste <emph>Apps & Funktionen</emph> auf %PRODUCTNAME und dann auf <emph>Ändern</emph>."
#. CaXPY
#: activex.xhp
@@ -446,7 +446,7 @@ msgctxt ""
"par_idN10706\n"
"help.text"
msgid "In the Installation Wizard, select <emph>Modify</emph>."
-msgstr "Wählen Sie im Installations-Assistenten die Option <emph>Ändern</emph>."
+msgstr "Wählen Sie im Installationsassistenten die Option <emph>Ändern</emph>."
#. cuFZi
#: activex.xhp
@@ -1832,7 +1832,7 @@ msgctxt ""
"par_id4439832\n"
"help.text"
msgid "In Calc, a chart is an object on a sheet that can be copied and pasted on another sheet of the same document, the data series will stay linked to the range on the other sheet. If it is pasted on another Calc document, it has its own chart data table and is no more linked to the original range."
-msgstr "In Calc ist ein Diagramm ein Objekt in einer Tabelle, das kopiert und in eine andere Tabelle des gleichen Dokuments eingefügt werden kann, wobei die Datenreihen mit dem Bereich in der ursprünglichen Tabellen verknüpft bleiben. Falls es in ein anderes Calc Dokument eingefügt wird, hat es seine eigene Diagrammdatentabelle und ist nicht mehr mit dem Originalbereich verknüpft."
+msgstr "In Calc ist ein Diagramm ein Objekt in einer Tabelle, das kopiert und in eine andere Tabelle des gleichen Dokuments eingefügt werden kann, wobei die Datenreihen mit dem Bereich in der ursprünglichen Tabellen verknüpft bleiben. Falls es in ein anderes Calc-Dokument eingefügt wird, hat es seine eigene Diagrammdatentabelle und ist nicht mehr mit dem Originalbereich verknüpft."
#. qQLu6
#: chart_insert.xhp
@@ -2327,7 +2327,7 @@ msgctxt ""
"par_id150820161816034394\n"
"help.text"
msgid "Note: the root of the file service is provided by the file service administrator and may consists of scripts files, parameters and paths."
-msgstr "Beachten Sie: Die Wurzel des Dateidienstes wird durch den Administrator des Dateidienstes bereitgestellt und kann Skriptsdateien, Parameter und Pfade enthalten."
+msgstr "Beachten Sie: Die Wurzel des Dateidienstes wird durch den Administrator des Dateidienstes bereitgestellt und kann Skriptdateien, Parameter und Pfade enthalten."
#. 8hLk4
#: cmis-remote-files-setup.xhp
@@ -2408,7 +2408,7 @@ msgctxt ""
"hd_id150820161816049600\n"
"help.text"
msgid "Connecting to a Windows share"
-msgstr "Verbindung zu einer Windows Freigabe"
+msgstr "Verbindung zu einer Windows-Freigabe"
#. Jw5YH
#: cmis-remote-files-setup.xhp
@@ -2417,7 +2417,7 @@ msgctxt ""
"bm_id170820161249395796\n"
"help.text"
msgid "<bookmark_value>remote file service;Windows share</bookmark_value> <bookmark_value>Windows share;remote file service</bookmark_value> <bookmark_value>Windows share;remote file service setup</bookmark_value> <bookmark_value>remote file service setup;Windows share</bookmark_value>"
-msgstr "<bookmark_value>Service für Dateien auf Servern; Windows Freigabe</bookmark_value><bookmark_value>Windows Freigabe; Service für Dateien auf Servern</bookmark_value><bookmark_value>Windows Freigabe; Service für Dateien auf Servern konfigurieren</bookmark_value><bookmark_value>Service für Dateien auf Servern konfigurieren; Windows Freigabe</bookmark_value>"
+msgstr "<bookmark_value>Service für Dateien auf Servern; Windows-Freigabe</bookmark_value><bookmark_value>Windows-Freigabe; Service für Dateien auf Servern</bookmark_value><bookmark_value>Windows-Freigabe; Service für Dateien auf Servern konfigurieren</bookmark_value><bookmark_value>Service für Dateien auf Servern konfigurieren; Windows-Freigabe</bookmark_value>"
#. qH9zL
#: cmis-remote-files-setup.xhp
@@ -2426,7 +2426,7 @@ msgctxt ""
"par_id150820161816041482\n"
"help.text"
msgid "<emph>Type</emph>: Windows Share"
-msgstr "<emph>Typ</emph>: Windows Freigabe"
+msgstr "<emph>Typ</emph>: Windows-Freigabe"
#. 72p76
#: cmis-remote-files-setup.xhp
@@ -2480,7 +2480,7 @@ msgctxt ""
"par_id16082016175916814\n"
"help.text"
msgid "<emph>User, Password</emph>: the username and password of the Google account."
-msgstr "<emph>Benuter, Kennwort</emph>: Der Benutzername und das Kennwort für den Google Account."
+msgstr "<emph>Benutzer, Kennwort</emph>: Der Benutzername und das Kennwort für den Google-Account."
#. NfYmB
#: cmis-remote-files-setup.xhp
@@ -2525,7 +2525,7 @@ msgctxt ""
"par_id150820161816046632\n"
"help.text"
msgid "<emph>User, Password</emph>: the username and password of the CMIS service."
-msgstr "<emph>Beutzer, Kennwort</emph>: Der Benutzername und das Kennwort für den CMIS Service."
+msgstr "<emph>Benutzer, Kennwort</emph>: Der Benutzername und das Kennwort für den CMIS-Service."
#. W4Jaq
#: cmis-remote-files-setup.xhp
@@ -2543,7 +2543,7 @@ msgctxt ""
"par_id150820161816054065\n"
"help.text"
msgid "<emph>Refresh button</emph>: click to refresh the contents of the repository list."
-msgstr "<emph>Schaltfläche Aktualisieren</emph>: Klicken, um den Inhalt der Repositorys-Liste zu aktualisieren."
+msgstr "<emph>Schaltfläche Aktualisieren</emph>: Klicken, um den Inhalt der Repository-Liste zu aktualisieren."
#. JE7Dx
#: cmis-remote-files-setup.xhp
@@ -5891,7 +5891,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Language Settings - Complex Text Layout\">Language Settings - Complex Text Layout</link>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Einstellungen</caseinline><defaultinline>Extras - Optionen...</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Spracheinstellungen - Complex Text Layout\">Spracheinstellungen - Complex Text Layout</link>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Einstellungen</caseinline><defaultinline>Extras - Optionen…</defaultinline></switchinline> - <link href=\"text/shared/optionen/01150300.xhp\" name=\"Language Settings - Complex Text Layout\">Spracheinstellungen - Komplexes Textlayout</link>"
#. E7xSj
#: data_addressbook.xhp
@@ -6917,7 +6917,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "Data from any <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link> can be registered to the installed instance of %PRODUCTNAME. To register means to tell %PRODUCTNAME where the data is located, how it is organized, how to get that data, and more. Once the database is registered, you can use the menu command <emph>View - Data source</emph> to access the data records from your text documents and spreadsheets."
-msgstr ""
+msgstr "Daten aus einer beliebigen <link href=\"text/shared/explorer/database/dabadoc.xhp\">Datenbankdatei</link> können in der installierten Instanz von %PRODUCTNAME registriert werden. Registrieren bedeutet, %PRODUCTNAME mitzuteilen, wo sich die Daten befinden, wie sie organisiert sind, wie diese Daten abgerufen werden und vieles mehr. Sobald die Datenbank registriert ist, können Sie aus Ihren Text- und Tabellendokumenten auf die Datensätze zugreifen, indem Sie <emph>Ansicht – Datenquellen</emph> wählen."
#. ADK4M
#: data_register.xhp
@@ -7052,7 +7052,7 @@ msgctxt ""
"par_idN1077D\n"
"help.text"
msgid "These links are added automatically when you create a new report by the Report Wizard or in the Report Builder window."
-msgstr "Diese Verknüpfungen werden automatisch hinzugefügt, wenn Sie einen neuen Bericht mit dem Berichts-Assistenten oder dem Bericht-Designer erstellen."
+msgstr "Diese Verknüpfungen werden automatisch hinzugefügt, wenn Sie einen neuen Bericht mit dem Berichtsassistenten oder dem Bericht-Designer erstellen."
#. rECmE
#: data_report.xhp
@@ -7106,7 +7106,7 @@ msgctxt ""
"hd_id3153104\n"
"help.text"
msgid "Editing a Report Created by the Report Wizard"
-msgstr "Bearbeiten eines Berichts, der mit dem Berichts-Assistenten erstellt wurde"
+msgstr "Bearbeiten eines Berichts, der mit dem Berichtsassistenten erstellt wurde"
#. PcBjS
#: data_report.xhp
@@ -7115,7 +7115,7 @@ msgctxt ""
"par_id3125863\n"
"help.text"
msgid "On the <link href=\"text/shared/autopi/01100500.xhp\" name=\"last dialog page of the Report AutoPilot\">last dialog page of the Report Wizard</link>, you can choose to edit the report template before you use the report."
-msgstr "Auf der <link href=\"text/shared/autopi/01100500.xhp\" name=\"letzten Seite im Dialog des Assistenten-Berichtes\">letzten Seite im Dialog des Berichts-Assistent</link> können Sie entscheiden, ob die Berichtsvorlage vor der ersten Verwendung weiter bearbeitet werden soll."
+msgstr "Auf der <link href=\"text/shared/autopi/01100500.xhp\" name=\"letzten Seite im Dialog des Assistentenberichts\">letzten Seite im Dialog des Berichtsassistent</link> können Sie entscheiden, ob die Berichtsvorlage vor der ersten Verwendung weiterbearbeitet werden soll."
#. X9jYZ
#: data_report.xhp
@@ -7169,7 +7169,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "A report is a Writer text document that can show your data in an organized order and formatting. In %PRODUCTNAME Base, you have a choice to create a report either manually using drag-and-drop in the Report Builder window, or semi-automatic by following a series of dialogs in the Report Wizard."
-msgstr "Ein Bericht ist ein Writer Textdokument, das Ihre Daten in einer geordneten Reihenfolge und Formatierung anzeigen kann. In %PRODUCTNAME Base haben Sie die Wahl, einen Bericht entweder manuell im Bericht-Designer durch Arbeiten mit der Maus oder halbautomatisch über die Dialogfolge des Berichts-Assistenten zu erstellen."
+msgstr "Ein Bericht ist ein Writer-Textdokument, das Ihre Daten in einer geordneten Reihenfolge und Formatierung anzeigen kann. In %PRODUCTNAME Base haben Sie die Wahl, einen Bericht entweder manuell im Bericht-Designer durch Arbeiten mit der Maus oder halbautomatisch über die Dialogfolge des Berichtsassistenten zu erstellen."
#. G4j7Y
#: data_reports.xhp
@@ -7196,7 +7196,7 @@ msgctxt ""
"par_id9764091\n"
"help.text"
msgid "Report Wizard"
-msgstr "Berichts-Assistent"
+msgstr "Berichtsassistent"
#. GjNKw
#: data_reports.xhp
@@ -7259,7 +7259,7 @@ msgctxt ""
"par_id8611713\n"
"help.text"
msgid "Generates a one-time snapshot of the data. To see an updated report, execute the same report again to create a Writer document with the updated data."
-msgstr "Erzeugt eine einmalige Momentaufnahme der Daten. Um den aktualisierten Bericht zu sehen, führen Sie den gleichen Berichte wieder aus, um ein Writer Dokument mit den aktualisierten Daten zu erstellen."
+msgstr "Erzeugt eine einmalige Momentaufnahme der Daten. Um den aktualisierten Bericht zu sehen, führen Sie den gleichen Berichte wieder aus, um ein Writer-Dokument mit den aktualisierten Daten zu erstellen."
#. mE89k
#: data_reports.xhp
@@ -7376,7 +7376,7 @@ msgctxt ""
"par_idN105C4\n"
"help.text"
msgid "Creating a New Report With the Report Wizard"
-msgstr "Erstellen eines neuen Berichts mit dem Berichts-Assistenten"
+msgstr "Erstellen eines neuen Berichts mit dem Berichtsassistenten"
#. XSaQ9
#: data_reports.xhp
@@ -7412,7 +7412,7 @@ msgctxt ""
"par_id8032166\n"
"help.text"
msgid "Follow the steps of the <link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link> to create the report."
-msgstr "Folgen Sie den Schritten des <link href=\"text/shared/autopi/01100000.xhp\">Berichts-Assistenten</link>, um einen Bericht zu erstellen."
+msgstr "Folgen Sie den Schritten des <link href=\"text/shared/autopi/01100000.xhp\">Berichtsassistenten</link>, um einen Bericht zu erstellen."
#. TKDmA
#: data_search.xhp
@@ -8015,7 +8015,7 @@ msgctxt ""
"par_idN105F1\n"
"help.text"
msgid "<link href=\"text/sdatabase/main.xhp\">Working with databases in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/main.xhp\">Mit Datenbanken in %PRODUCTNAME arbeiten</link>"
#. VPAta
#: database_main.xhp
@@ -8114,7 +8114,7 @@ msgctxt ""
"par_id3151380\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100000.xhp\" name=\"Report AutoPilot\">Report Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01100000.xhp\" name=\"Assistent Bericht\">Berichts-Assistent</link>"
+msgstr "<link href=\"text/shared/autopi/01100000.xhp\" name=\"Report AutoPilot\">Berichtsassistent</link>"
#. tpEVh
#: database_main.xhp
@@ -10481,7 +10481,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "Choose <emph>File - Send - Email Document</emph>."
-msgstr ""
+msgstr "Wählen Sie <emph>Datei – Senden – Dokument als E-Mail…</emph>."
#. EGqDe
#: email.xhp
@@ -10490,7 +10490,7 @@ msgctxt ""
"par_id3153127\n"
"help.text"
msgid "$[officename] opens your default email program.<switchinline select=\"sys\"><caseinline select=\"UNIX\"> If you want to send the current document with another email program, you can select the program to use with <emph>Internet - Email</emph> in the Options dialog box.</caseinline></switchinline>"
-msgstr ""
+msgstr "$[officename] öffnet Ihr Standard-E-Mail-Programm. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Wenn Sie das aktuelle Dokument mit einem anderen E-Mail-Programm senden möchten, können Sie in den Optionen unter <emph>Internet – E-Mail</emph> das Programm festlegen, das verwendet werden soll.</caseinline></switchinline>"
#. maP2B
#: email.xhp
@@ -11723,7 +11723,7 @@ msgctxt ""
"par_idN10731\n"
"help.text"
msgid "You can use the Form Controls toolbar to add checkboxes, buttons, tables showing data records, and other controls to a document."
-msgstr "Sie können mit der Symbolleiste Formular-Steuerlemente in einem Dokument Markierfelder, Schaltflächen, Tabellen mit Datensätzen und andere Steuerelemente anzeigen oder hinzufügen."
+msgstr "Sie können mit der Symbolleiste Formular-Steuerelemente in einem Dokument Markierfelder, Schaltflächen, Tabellen mit Datensätzen und andere Steuerelemente anzeigen oder hinzufügen."
#. YQ56A
#: formfields.xhp
@@ -12866,7 +12866,7 @@ msgctxt ""
"bm_id3153988\n"
"help.text"
msgid "<bookmark_value>Microsoft Office;opening Microsoft documents</bookmark_value> <bookmark_value>documents; importing</bookmark_value> <bookmark_value>importing; documents in other formats</bookmark_value> <bookmark_value>opening; documents from other formats</bookmark_value> <bookmark_value>loading; documents from other formats</bookmark_value> <bookmark_value>converting;Microsoft documents</bookmark_value> <bookmark_value>saving; default file formats</bookmark_value> <bookmark_value>defaults;document formats in file dialogs</bookmark_value> <bookmark_value>file formats; saving always in other formats</bookmark_value> <bookmark_value>Microsoft Office; as default file format</bookmark_value> <bookmark_value>files;importing</bookmark_value> <bookmark_value>XML converters</bookmark_value> <bookmark_value>converters; XML</bookmark_value> <bookmark_value>Document Converter Wizard</bookmark_value> <bookmark_value>wizards; document converter</bookmark_value> <bookmark_value>converters; document converter</bookmark_value> <bookmark_value>files, see also documents</bookmark_value>"
-msgstr "<bookmark_value>Microsoft Office; Microsoft-Dokumente öffnen</bookmark_value><bookmark_value>Dokumente; importieren</bookmark_value><bookmark_value>Importieren; Dokumente in anderen Formaten</bookmark_value><bookmark_value>Öffnen; Dokumente in anderen Formaten</bookmark_value><bookmark_value>Laden; Dokumente aus anderen Formaten</bookmark_value><bookmark_value>Konvertieren; Microsoft Dokumente</bookmark_value><bookmark_value>Speichern; voreingestellte Dateiformate</bookmark_value><bookmark_value>Voreinstellungen; Dokumentenformate in Dateidialogen</bookmark_value><bookmark_value>Dateiformate; immer in anderen Formaten speichern</bookmark_value><bookmark_value>Microsoft Office; als voreingestelltes Dateiformat</bookmark_value><bookmark_value>Dateien; importieren</bookmark_value><bookmark_value>XML-Konverter</bookmark_value><bookmark_value>Konvertieren; XML</bookmark_value><bookmark_value>Dokumenten-Konverter-Assistent</bookmark_value><bookmark_value>Assistenten; Dokumenten-Konverter</bookmark_value><bookmark_value>Konverter; Dokumenten-Konverter</bookmark_value><bookmark_value>Dateien, siehe auch Dokumente</bookmark_value>"
+msgstr "<bookmark_value>Microsoft Office; Microsoft-Dokumente öffnen</bookmark_value><bookmark_value>Dokumente; importieren</bookmark_value><bookmark_value>Importieren; Dokumente in anderen Formaten</bookmark_value><bookmark_value>Öffnen; Dokumente in anderen Formaten</bookmark_value><bookmark_value>Laden; Dokumente aus anderen Formaten</bookmark_value><bookmark_value>Konvertieren; Microsoft Dokumente</bookmark_value><bookmark_value>Speichern; voreingestellte Dateiformate</bookmark_value><bookmark_value>Voreinstellungen; Dokumentenformate in Dateidialogen</bookmark_value><bookmark_value>Dateiformate; immer in anderen Formaten speichern</bookmark_value><bookmark_value>Microsoft Office; als voreingestelltes Dateiformat</bookmark_value><bookmark_value>Dateien; importieren</bookmark_value><bookmark_value>XML-Konverter</bookmark_value><bookmark_value>Konvertieren; XML</bookmark_value><bookmark_value>Dokumentkonverter-Assistent</bookmark_value><bookmark_value>Assistenten; Dokumentkonverter</bookmark_value><bookmark_value>Konverter; Dokumentkonverter</bookmark_value><bookmark_value>Dateien, siehe auch Dokumente</bookmark_value>"
#. 2SFQD
#: import_ms.xhp
@@ -13523,7 +13523,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "In the large selection field double-click on the desired character, which is inserted in the current document."
-msgstr ""
+msgstr "Doppelklicken Sie im großen Auswahlfeld auf das gewünschte Zeichen, das in das aktuelle Dokument eingefügt werden soll."
#. p7XqC
#: insert_specialchar.xhp
@@ -13586,7 +13586,7 @@ msgctxt ""
"par_id3153896\n"
"help.text"
msgid "<link href=\"text/shared/01/06040200.xhp\" name=\"AutoCorrect\">AutoCorrect</link>"
-msgstr "<link href=\"text/shared/01/06040200.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link>"
+msgstr "<link href=\"text/shared/01/06040200.xhp\" name=\"AutoCorrect\">AutoKorrektur</link>"
#. WDGAE
#: integratinguno.xhp
@@ -14189,7 +14189,7 @@ msgctxt ""
"par_id3145619\n"
"help.text"
msgid "Set the grid resolution unit with <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Grid</emph> in the <emph>Resolution</emph> area. If you enter a number greater than 1 in the <emph>Subdivision</emph> area, you must press the arrow key as often as the number states to move the selected object by one grid resolution unit."
-msgstr "Die Gittereinheit stellen Sie unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Gitter</emph> im Bereich <emph>Auflösung</emph> ein. Haben Sie im Bereich <emph>Unterteilung</emph> eine Zahl größer eins eingetragen, müssen Sie die Pfeiltaste genau so oft drücken, um das ausgewählte Objekt um eine Gittereinheit zu verschieben."
+msgstr "Die Gittereinheit stellen Sie unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Gitter</emph> im Bereich <emph>Auflösung</emph> ein. Haben Sie im Bereich <emph>Unterteilung</emph> eine Zahl größer eins eingetragen, müssen Sie die Pfeiltaste genauso oft drücken, um das ausgewählte Objekt um eine Gittereinheit zu verschieben."
#. 6Vt2A
#: keyboard.xhp
@@ -15233,7 +15233,7 @@ msgctxt ""
"par_id0130200903370930\n"
"help.text"
msgid "Continue to select and insert database fields if you want more fields on every label. You can press Enter to insert a new line, and you can type any character to insert fixed text."
-msgstr "Fügen Sie weitere Datenbankfelder ein, um mehr Daten auf den Etiketten anzuzeigen. Sie können die Eingabetaste benutzen, um einen Zeilenumbruch zu erzeugen oder beliebige Zeichen eingeben, um Text hinzuzufügen."
+msgstr "Fügen Sie weitere Datenbankfelder ein, um mehr Daten auf den Etiketten anzuzeigen. Sie können die Eingabetaste benutzen, um einen Zeilenumbruch zu erzeugen, oder beliebige Zeichen eingeben, um Text hinzuzufügen."
#. C4ZRE
#: labels_database.xhp
@@ -15296,7 +15296,7 @@ msgctxt ""
"bm_id3083278\n"
"help.text"
msgid "<bookmark_value>languages; selecting for text</bookmark_value> <bookmark_value>documents; languages</bookmark_value> <bookmark_value>characters; language selection</bookmark_value> <bookmark_value>character styles;language selection</bookmark_value> <bookmark_value>text; language selection</bookmark_value> <bookmark_value>paragraph styles; languages</bookmark_value> <bookmark_value>drawings; languages</bookmark_value> <bookmark_value>defaults;languages</bookmark_value> <bookmark_value>spellcheck; default languages</bookmark_value> <bookmark_value>spelling; default languages</bookmark_value> <bookmark_value>dictionaries, see also languages</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Sprachen; für Text auswählen</bookmark_value><bookmark_value>Dokumente; Sprachen</bookmark_value><bookmark_value>Zeichen; Sprachauswahl</bookmark_value><bookmark_value>Zeichenvorlagen; Sprachauswahl</bookmark_value><bookmark_value>Texte; Sprachauswahl</bookmark_value><bookmark_value>Absatzvorlagen; Sprachen</bookmark_value><bookmark_value>Zeichnungen; Sprachen</bookmark_value><bookmark_value>Vorgaben; Sprachen</bookmark_value><bookmark_value>Rechtschreibprüfung; Standardsprachen</bookmark_value><bookmark_value>Rechtschreibung; Standardsprachen</bookmark_value><bookmark_value>Wörterbücher, siehe auch Sprachen</bookmark_value>"
#. AoAWf
#: language_select.xhp
@@ -15584,7 +15584,7 @@ msgctxt ""
"par_id3906979\n"
"help.text"
msgid "In %PRODUCTNAME, choose <item type=\"menuitem\">Tools - Extension Manager</item> and click <emph>Add</emph> to install the downloaded extensions."
-msgstr "Wählen Sie in %PRODUCTNAME <item type=\"menuitem\">Extras - Extension Manager...</item> und klicken Sie auf <emph>Hinzufügen</emph>, um die heruntergeladene Erweiterung zu installieren."
+msgstr "Wählen Sie in %PRODUCTNAME <item type=\"menuitem\">Extras - Extension-Manager…</item> und klicken Sie auf <emph>Hinzufügen</emph>, um die heruntergeladene Erweiterung zu installieren."
#. YSG3Q
#: language_select.xhp
@@ -16628,7 +16628,7 @@ msgctxt ""
"par_idN10826\n"
"help.text"
msgid "<link href=\"text/sdatabase/main.xhp\">Working with databases in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/main.xhp\">Mit Datenbanken in %PRODUCTNAME arbeiten</link>"
#. CGeKT
#: main.xhp
@@ -16664,7 +16664,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01100000.xhp\">Report Wizard</link>"
-msgstr "<link href=\"text/shared/autopi/01100000.xhp\">Berichts-Assistent</link>"
+msgstr "<link href=\"text/shared/autopi/01100000.xhp\">Berichtsassistent</link>"
#. CZZjV
#: main.xhp
@@ -17429,7 +17429,7 @@ msgctxt ""
"par_id3152962\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010400.xhp\" name=\"AutoCorrect\">AutoCorrect</link>"
-msgstr "<link href=\"text/shared/optionen/01010400.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link>"
+msgstr "<link href=\"text/shared/optionen/01010400.xhp\" name=\"AutoCorrect\">AutoKorrektur</link>"
#. WFVDK
#: microsoft_terms.xhp
@@ -17465,7 +17465,7 @@ msgctxt ""
"par_id3150297\n"
"help.text"
msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Rechtschreibung</link>"
#. RdJY7
#: microsoft_terms.xhp
@@ -18320,7 +18320,7 @@ msgctxt ""
"par_id3150486\n"
"help.text"
msgid "Choose <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>File - Wizards - Document Converter</emph></link> to start the wizard."
-msgstr "Wählen Sie <link href=\"text/shared/autopi/01130000.xhp\" name=\"Datei - Assistenten - Dokumenten-Konverter\"><emph>Datei - Assistenten - Dokument-Konverter</emph></link>, um den Assistenten aufzurufen."
+msgstr "Wählen Sie <link href=\"text/shared/autopi/01130000.xhp\" name=\"File - AutoPilot - Document Converter\"><emph>Datei – Assistenten – Dokumentkonverter…</emph></link>, um den Assistenten aufzurufen."
#. V3ANF
#: ms_user.xhp
@@ -18752,7 +18752,7 @@ msgctxt ""
"hd_id131543693200115\n"
"help.text"
msgid "<variable id=\"openpgph1\"><link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Encrypting Documents with OpenPGP</link></variable>"
-msgstr ""
+msgstr "<variable id=\"openpgph1\"><link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Dokumente mit OpenPGP verschlüsseln</link></variable>"
#. pDG6n
#: openpgp.xhp
@@ -19652,7 +19652,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "Printing Text and Images in Black and White"
-msgstr "Text und Grafik schwarzweiß drucken"
+msgstr "Text und Grafik schwarz-weiß drucken"
#. JEFQG
#: print_blackwhite.xhp
@@ -19697,7 +19697,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "The current document will be printed in black and white."
-msgstr "Das aktuelle Dokument wird in schwarzweiß gedruckt."
+msgstr "Das aktuelle Dokument wird in Schwarz-Weiß gedruckt."
#. GZk5M
#: print_blackwhite.xhp
@@ -19706,7 +19706,7 @@ msgctxt ""
"hd_id3147653\n"
"help.text"
msgid "Printing in Black and White in <item type=\"productname\">%PRODUCTNAME</item> Impress and <item type=\"productname\">%PRODUCTNAME</item> Draw"
-msgstr "In <item type=\"productname\">%PRODUCTNAME</item>-Impress und <item type=\"productname\">%PRODUCTNAME</item>-Draw schwarzweiß drucken"
+msgstr "In <item type=\"productname\">%PRODUCTNAME</item>-Impress und <item type=\"productname\">%PRODUCTNAME</item>-Draw schwarz-weiß drucken"
#. BHUpA
#: print_blackwhite.xhp
@@ -19769,7 +19769,7 @@ msgctxt ""
"hd_id3153896\n"
"help.text"
msgid "Printing Only Text in Black and White"
-msgstr "Nur Text schwarzweiß drucken"
+msgstr "Nur Text schwarz-weiß drucken"
#. SLPHu
#: print_blackwhite.xhp
@@ -19778,7 +19778,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Writer you can choose to print color-formatted text in black and white. You can specify this either for all subsequent text documents to be printed, or only for the current printing process."
-msgstr "In <item type=\"productname\">%PRODUCTNAME</item>-Writer besteht auch die Möglichkeit, farbig formatierten Text schwarzweiß auszudrucken. Diese Option können Sie entweder für alle künftig zu druckenden Textdokumente oder ausschließlich für das aktuelle Dokument festlegen."
+msgstr "In <item type=\"productname\">%PRODUCTNAME</item>-Writer besteht auch die Möglichkeit, farbig formatierten Text schwarz-weiß auszudrucken. Diese Option können Sie entweder für alle künftig zu druckenden Textdokumente oder ausschließlich für das aktuelle Dokument festlegen."
#. jkZek
#: print_blackwhite.xhp
@@ -20345,7 +20345,7 @@ msgctxt ""
"hd_id701566317347416\n"
"help.text"
msgid "Error correction"
-msgstr ""
+msgstr "Fehlerkorrektur"
#. VezeF
#: qrcode.xhp
@@ -20354,7 +20354,7 @@ msgctxt ""
"par_id281566317365617\n"
"help.text"
msgid "The error correction value for the QR Code that is to be created. The error correction of a QR code is a measure that helps a QR code to recover if it is damaged."
-msgstr ""
+msgstr "Der Fehlerkorrekturwert für den zu erstellenden QR-Code. Die Fehlerkorrektur eines QR-Codes ist eine Maßnahme, mit deren Hilfe ein QR-Code wiederhergestellt werden kann, wenn er beschädigt ist."
#. iHFHY
#: qrcode.xhp
@@ -21227,7 +21227,7 @@ msgctxt ""
"par_id3153882\n"
"help.text"
msgid "There are two available commands to navigate changes in a Writer document:"
-msgstr "Es gibt zwei verfügbare Befehle, um durch Änderungen in einem Writer Dokument zu navigieren:"
+msgstr "Es gibt zwei verfügbare Befehle, um durch Änderungen in einem Writer-Dokument zu navigieren:"
#. 7V3vB
#: redlining_navigation.xhp
@@ -22091,7 +22091,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "In order to enter dashes, you can find under <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> the <emph>Replace dashes</emph> option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">AutoCorrect Options</link>)."
-msgstr "Zum Einfügen von Gedankenstrichen steht Ihnen unter <emph>Extras - AutoKorrektur - AutoKorrektur-Optionen... - Register: Optionen</emph> die Option <emph>Gedankenstriche ersetzen</emph> zur Verfügung. Mithilfe dieser Option lassen sich ein oder zwei Minuszeichen unter bestimmten Bedingungen durch einen Halbgeviertstrich oder einen Geviertstrich ersetzen (siehe <link href=\"text/shared/01/06040100.xhp\" name=\"AutoKorrektur-Optionen\">AutoKorrektur-Optionen</link>)."
+msgstr "Zum Einfügen von Gedankenstrichen steht Ihnen unter <emph>Extras - AutoKorrektur - AutoKorrektur-Optionen… - Register: Optionen</emph> die Option <emph>Gedankenstriche ersetzen</emph> zur Verfügung. Mithilfe dieser Option lassen sich ein oder zwei Minuszeichen unter bestimmten Bedingungen durch einen Halbgeviertstrich oder einen Geviertstrich ersetzen (siehe <link href=\"text/shared/01/06040100.xhp\" name=\"AutoCorrect Options\">AutoKorrektur-Optionen…</link>)."
#. XBNDB
#: space_hyphen.xhp
@@ -22100,7 +22100,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "For additional replacements see the replacements table under <emph>Tools - AutoCorrect - AutoCorrect Options</emph><emph>- </emph><link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>Replace</emph></link>. Here you can, among other things, replace a shortcut automatically by a dash, even in another font."
-msgstr "Für weitere Ersetzungen nutzen Sie die Ersetzungstabelle unter <emph>Extras - AutoKorrektur-Optionen...</emph> <emph>-</emph> <link href=\"text/shared/01/06040200.xhp\" name=\"Ersetzung\"><emph>Ersetzung</emph></link>. Hier können Sie unter anderem ein von Ihnen bestimmtes Kürzel bei der Eingabe automatisch durch einen beliebigen Gedankenstrich ersetzen lassen, sogar in einer anderen Schriftart."
+msgstr "Für weitere Ersetzungen nutzen Sie die Ersetzungstabelle unter <emph>Extras - AutoKorrektur-Optionen…</emph> <emph>-</emph> <link href=\"text/shared/01/06040200.xhp\" name=\"Replace\"><emph>Register: Ersetzungen</emph></link>. Hier können Sie unter anderem ein von Ihnen bestimmtes Kürzel bei der Eingabe automatisch durch einen beliebigen Gedankenstrich ersetzen lassen, sogar in einer anderen Schriftart."
#. q9kTq
#: space_hyphen.xhp
@@ -22199,7 +22199,7 @@ msgctxt ""
"par_id3145649\n"
"help.text"
msgid "On the <emph>Device</emph> tab page, you can activate the special options for your printer. If your printer can only print in black and white, choose \"grayscale\" under <emph>Color</emph>, otherwise choose \"color\". If switching to grayscale leads to unfavorable results, you can also select \"color\" under <emph>Color</emph> and see how the printer or PostScript emulator applies it. Furthermore, on this tab page you can set the precision with which colors are described as well as the PostScript level."
-msgstr "Im Register <emph>Gerät</emph> aktivieren Sie spezielle Optionen Ihres Druckers. Wenn Ihr Drucker nur schwarzweiß drucken kann, sollte unter <emph>Farbe</emph> \"Graustufen\" eingestellt werden, ansonsten \"Farbe\". Falls die Umsetzung auf Graustufen zu schlechten Ergebnissen führt, können Sie auch unter <emph>Farbe</emph> \"Farbe\" wählen und die Umsetzung dem Drucker oder dem PostScript-Emulator überlassen. Ferner können Sie in diesem Register die Genauigkeit, mit der Farben beschrieben werden sowie den PostScript Level einstellen."
+msgstr "Im Register <emph>Gerät</emph> aktivieren Sie spezielle Optionen Ihres Druckers. Wenn Ihr Drucker nur schwarz-weiß drucken kann, sollte unter <emph>Farbe</emph> \"Graustufen\" eingestellt werden, ansonsten \"Farbe\". Falls die Umsetzung auf Graustufen zu schlechten Ergebnissen führt, können Sie auch unter <emph>Farbe</emph> \"Farbe\" wählen und die Umsetzung dem Drucker oder dem PostScript-Emulator überlassen. Ferner können Sie in diesem Register die Genauigkeit, mit der Farben beschrieben werden, sowie den PostScript-Level einstellen."
#. XGTgK
#: spadmin.xhp
@@ -23162,7 +23162,7 @@ msgctxt ""
"par_id3147213\n"
"help.text"
msgid "Starts with an empty Writer document."
-msgstr "Startet mit einem leeren Writer Dokument."
+msgstr "Startet mit einem leeren Writer-Dokument."
#. ucgzm
#: start_parameters.xhp
@@ -23171,7 +23171,7 @@ msgctxt ""
"par_id3145261\n"
"help.text"
msgid "Starts with an empty Calc document."
-msgstr "Startet mit einem leeren Calc Dokument."
+msgstr "Startet mit einem leeren Calc-Dokument."
#. 9jSmQ
#: start_parameters.xhp
@@ -23180,7 +23180,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "Starts with an empty Draw document."
-msgstr "Startet mit einem leeren Draw Dokument."
+msgstr "Startet mit einem leeren Draw-Dokument."
#. GRBED
#: start_parameters.xhp
@@ -23189,7 +23189,7 @@ msgctxt ""
"par_id3153222\n"
"help.text"
msgid "Starts with an empty Impress document."
-msgstr "Startet mit einem leeren Impress Dokument."
+msgstr "Startet mit einem leeren Impress-Dokument."
#. caFeB
#: start_parameters.xhp
@@ -23207,7 +23207,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "Starts with an empty Writer master document."
-msgstr "Startet mit einem leeren Writer Globaldokument."
+msgstr "Startet mit einem leeren Writer-Globaldokument."
#. uEgej
#: start_parameters.xhp
@@ -23234,7 +23234,7 @@ msgctxt ""
"par_id20161204125411030\n"
"help.text"
msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates."
-msgstr "Die Argumente geben an, wie die nachfolgend genannten Dateien behandelt werden. Jede Behandlung beginnt nach einem Argument und endet beim nächsten Argument. Die Standardbehandlung ist es, die Dokumente zum Bearbeiten zu öffnen und neue Dokumente aus Dokumentenvorlagen zu erstellen."
+msgstr "Die Argumente geben an, wie die nachfolgend genannten Dateien behandelt werden. Jede Behandlung beginnt nach einem Argument und endet beim nächsten Argument. Die Standardbehandlung ist es, die Dokumente zum Bearbeiten zu öffnen und neue Dokumente aus Dokumentvorlagen zu erstellen."
#. NoRni
#: start_parameters.xhp
@@ -23324,7 +23324,7 @@ msgctxt ""
"par_id3153838\n"
"help.text"
msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode."
-msgstr "Öffnet und startet die nachfolgend genannten Präsentationen sofort. Die Dateien werden nach der Vorführung geschlossen. Andere Dateien als Impress Dokumente werden im Standardmodus geöffnet, unabhängig vom vorhergehenden Modus."
+msgstr "Öffnet und startet die nachfolgend genannten Präsentationen sofort. Die Dateien werden nach der Vorführung geschlossen. Andere Dateien als Impress-Dokumente werden im Standardmodus geöffnet, unabhängig vom vorhergehenden Modus."
#. 7TVQD
#: start_parameters.xhp
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id0820200803105089\n"
"help.text"
msgid "<emph>Base Database</emph> opens %PRODUCTNAME <link href=\"text/sdatabase/main.xhp\">Base</link>"
-msgstr ""
+msgstr "<emph>Base-Datenbank</emph> öffnet %PRODUCTNAME <link href=\"text/sdatabase/main.xhp\">Base</link>"
#. MvEcH
#: startcenter.xhp
@@ -24629,7 +24629,7 @@ msgctxt ""
"par_id041620170723513541\n"
"help.text"
msgid "Browse to the folder where you downloaded the template, select it and press Open"
-msgstr "Öffnen Sie den Ordner, in den Sie die Dokumentvorlage heruntergeladen haben, wählen Sie diese aus und klicken Sie auf Öffnen"
+msgstr "Öffnen Sie den Ordner, in dem Sie die Dokumentvorlage heruntergeladen haben, wählen Sie diese aus und klicken Sie auf Öffnen"
#. Dvx8b
#: template_manager.xhp
diff --git a/source/de/helpcontent2/source/text/shared/menu.po b/source/de/helpcontent2/source/text/shared/menu.po
index f0a3e03f874..cbba10bdcf7 100644
--- a/source/de/helpcontent2/source/text/shared/menu.po
+++ b/source/de/helpcontent2/source/text/shared/menu.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-11-08 19:34+0100\n"
-"PO-Revision-Date: 2020-03-08 23:15+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedmenu/de/>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/de/>\n"
"Language: de\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 3.10.3\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1464855090.000000\n"
#. EEMss
@@ -266,7 +266,7 @@ msgctxt ""
"par_id91566150694760\n"
"help.text"
msgid "Choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Slide</menuitem></caseinline><defaultinline><menuitem>Page</menuitem></defaultinline></switchinline> - <menuitem>Set Background Image</menuitem>."
-msgstr "Wählen Sie <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Folie</menuitem></caseinline><defaultinline><menuitem>Folie</menuitem></defaultinline></switchinline><menuitem> – Hintergundbild festlegen…</menuitem>."
+msgstr "Wählen Sie <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Folie</menuitem></caseinline><defaultinline><menuitem>Folie</menuitem></defaultinline></switchinline><menuitem> – Hintergrundbild festlegen…</menuitem>."
#. DU4B8
#: set_image_background.xhp
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 290b100989c..65ab5deedf5 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.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: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -1085,7 +1085,7 @@ msgctxt ""
"par_id6944182\n"
"help.text"
msgid "LibreOffice 7.0 supports the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument</emph></link> format (ODF) version 1.3. The prior versions of LibreOffice support the file format ODF 1.2. Prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "LibreOffice 7.0 und höher unterstützen das <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument</emph></link>-Format (ODF) Version 1.3. Die früheren Versionen von LibreOffice unterstützen das Dateiformat ODF 1.2. Frühere Dateiformate können nicht alle neuen Funktionen der neuen Software speichern."
#. BZc73
#: 01010200.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduced new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument</emph></link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "OpenOffice.org 3 und StarOffice 9 führten neue Funktionen ein, die mit dem <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\"><emph>OpenDocument</emph></link>-Format (ODF) Version 1.2 gespeichert werden müssen. Die früheren Versionen von OpenOffice.org 2 und StarOffice 8 unterstützen die Dateiformate ODF 1.0/1.1. Diese früheren Dateiformate können nicht alle neuen Funktionen der neuen Software speichern."
#. BoRgh
#: 01010200.xhp
@@ -1103,7 +1103,7 @@ msgctxt ""
"par_id886257\n"
"help.text"
msgid "Current %PRODUCTNAME versions can open documents in ODF formats 1.0/1.1, 1.2, and 1.3."
-msgstr ""
+msgstr "Aktuelle %PRODUCTNAME-Versionen können Dokumente in den ODF-Formaten 1.0/1.1, 1.2 und 1.3 öffnen."
#. PL8e4
#: 01010200.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id8892483\n"
"help.text"
msgid "When you save a document, you can select whether to save the document in the format ODF 1.3, ODF 1.3 Extended, ODF 1.2, ODF 1.2 Extended, ODF 1.2 Extended (compatibility mode), or in the prior format ODF 1.0/1.1."
-msgstr ""
+msgstr "Wenn Sie ein Dokument speichern, können Sie auswählen, ob das Dokument im Format ODF 1.3, ODF 1.3 Extended, ODF 1.2, ODF 1.2 Extended, ODF 1.2 Extended (Kompatibilitätsmodus) oder im vorherigen Format ODF 1.0/1.1 gespeichert werden soll."
#. hadyp
#: 01010200.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id0915200911205367\n"
"help.text"
msgid "Currently, the ODF 1.2 (Extended) or newer formats enable files of Draw and Impress to contain comments. Those comments can be inserted by <item type=\"menuitem\">Insert - Comment</item> in the latest software version. The comments get lost when loading files into prior software versions that were saved by the latest software version."
-msgstr ""
+msgstr "Derzeit ermöglichen die Formate ODF 1.2 (Erweitert) oder neuer, dass Dateien von Draw und Impress Kommentare enthalten. Diese Kommentare können durch <item type=\"menuitem\">Einfügen – Kommentar</item> in der neuesten Softwareversion eingefügt werden. Die Kommentare gehen verloren, wenn Dateien in frühere Softwareversionen geladen werden, die mit der neuesten Softwareversion gespeichert wurden."
#. aLBQC
#: 01010200.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id7198400\n"
"help.text"
msgid "<ahelp hid=\".\">Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Einige Unternehmen oder Organisationen benötigen möglicherweise ODF-Dokumente im Format ODF 1.0/1.1 oder ODF 1.2. Sie können dieses Format im Listenfeld zum Speichern auswählen. Diese älteren Formate können nicht alle neuen Funktionen speichern, daher wird nach Möglichkeit das neue Format ODF 1.3 (Erweitert) empfohlen.</ahelp>"
#. 9iBAX
#: 01010200.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id7198401\n"
"help.text"
msgid "The ODF 1.2 Extended (compatibility mode) is a more backward-compatible ODF 1.2 extended mode. It uses features that are deprecated in ODF 1.2 and/or it is 'bug-compatible' to older OpenOffice.org versions. It may be useful if you need to interchange ODF documents with users who use pre-ODF 1.2 or ODF 1.2-only legacy applications."
-msgstr ""
+msgstr "ODF 1.2 Extended (Kompatibilitätsmodus) ist ein abwärtskompatibler Modus für ODF 1.2 Extended. Es verwendet Funktionen, die in ODF 1.2 veraltet sind und/oder mit älteren OpenOffice.org-Versionen \"fehlerkompatibel\" sind. Dies kann hilfreich sein, wenn Sie ODF-Dokumente mit Benutzern austauschen müssen, die veraltete Anwendungen \"vor\" ODF 1.2 oder \"nur\" ODF 1.2 verwenden."
#. iP4AE
#: 01010200.xhp
@@ -1715,7 +1715,7 @@ msgctxt ""
"bm_id7986388\n"
"help.text"
msgid "<bookmark_value>writing aids options</bookmark_value><bookmark_value>custom dictionaries; editing</bookmark_value><bookmark_value>user-defined dictionaries; editing</bookmark_value><bookmark_value>dictionaries; editing user-defined</bookmark_value><bookmark_value>exceptions; user-defined dictionaries</bookmark_value><bookmark_value>user-defined dictionaries; dictionary of exceptions</bookmark_value><bookmark_value>spellcheck; dictionary of exceptions</bookmark_value><bookmark_value>ignore list for spellcheck</bookmark_value><bookmark_value>spellcheck; ignore list</bookmark_value><bookmark_value>spelling; dictionary of exceptions</bookmark_value><bookmark_value>ignore list for spelling</bookmark_value><bookmark_value>spelling; ignore list</bookmark_value><bookmark_value>hyphenation; minimal number of characters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Optionen in der Linguistik</bookmark_value><bookmark_value>Benutzerwörterbücher; bearbeiten</bookmark_value><bookmark_value>Benutzerdefinierte Wörterbücher; bearbeiten</bookmark_value><bookmark_value>Wörterbücher; benutzerdefinierte Wörterbücher bearbeiten</bookmark_value><bookmark_value>Ausnahmen; Benutzerwörterbücher</bookmark_value><bookmark_value>Benutzerwörterbücher; Ausnahmewörterbuch</bookmark_value><bookmark_value>Rechtschreibprüfung; Ausnahmewörterbuch</bookmark_value><bookmark_value>Ignorieren-Liste für die Rechtschreibprüfung</bookmark_value><bookmark_value>Rechtschreibprüfung; Ignorieren-Liste</bookmark_value><bookmark_value>Rechtschreibung; Ignorieren-Liste</bookmark_value><bookmark_value>Rechtschreibung; Ausnahmewörterbuch</bookmark_value><bookmark_value>Ignorieren-Liste für Rechtschreibung</bookmark_value><bookmark_value>Silbentrennung; Mindestwortlänge</bookmark_value>"
#. BfSt6
#: 01010400.xhp
@@ -1733,7 +1733,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optlingupage/OptLinguPage\">Specifies the properties of the spelling, thesaurus and hyphenation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optlingupage/OptLinguPage\">Legt die Eigenschaften von Rechtschreibung, Thesaurus und Silbentrennung fest.</ahelp>"
#. u8YqG
#: 01010400.xhp
@@ -1760,7 +1760,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "A language module can contain one, two or three submodules: Spelling, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog."
-msgstr ""
+msgstr "Ein Sprachmodul kann ein, zwei oder drei Teilmodule enthalten: Rechtschreibung, Silbentrennung und Thesaurus. Jedes Teilmodul kann in einer oder mehreren Sprachen verfügbar sein. Wenn Sie vor den Namen des Moduls klicken, aktivieren Sie alle verfügbaren Teilmodule gleichzeitig. Wenn Sie eine gesetzte Markierung entfernen, deaktivieren Sie alle verfügbaren Teilmodule gleichzeitig. Wenn Sie einzelne Teilmodule aktivieren oder deaktivieren möchten, klicken Sie auf die Schaltfläche <emph>Bearbeiten…</emph>, um den Dialog <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Module bearbeiten</emph></link> zu öffnen."
#. oeBAY
#: 01010400.xhp
@@ -1805,7 +1805,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available user dictionaries.</ahelp> Mark the user dictionaries that you want to use for spelling and hyphenation."
-msgstr ""
+msgstr "<ahelp hid=\".\">Listet die verfügbaren Benutzerwörterbücher auf.</ahelp> Markieren Sie die Benutzerwörterbücher, die Sie für Rechtschreibung und Silbentrennung verwenden möchten."
#. hFB5J
#: 01010400.xhp
@@ -2012,7 +2012,7 @@ msgctxt ""
"par_id3151253\n"
"help.text"
msgid "You can use a [] block instead of the = sign to specify character changes before the hyphenation break. Possible character changes: (1) Extra characters, for example <emph>tug[g]gumi</emph> results the correct hyphenation “tugg- gummi” of the Swedish word “tuggummi”. (2) Character removing specified by a digit, for example <emph>paral·[1]lel</emph> results correct hyphenation “paral- lel” of the Catalan word “paral·lel”, removing one character before the break point. (3) Both removed and extra characters, for example <emph>cafee[2é]tje</emph> results correct hyphenation “café- tje” of the Dutch word “cafeetje”, removing two characters before the break point, and adding an extra one."
-msgstr "Sie können [] anstatt des Zeichens = zum Festlegen von Zeichenänderungen vor dem Trennzeichen festlegen. Mögliche Zeichenänderungen sind: (1) Einfügen eines zusätzlichen Zeichen; zum Beispiel ergibt <emph>tug[g]gumi</emph> die korrekte Silbentrennung „tugg- gummi“ des schwedischen Worts „tuggummi“. (2) Entfernen eines Zeichens (werden mit einem Punkt gekenzeichnet); zum Beispiel ergibt <emph>paral·[1]lel</emph> in der korrekten Silbentrennung „para- lel“ des katalanischen Worts „paral·lel“, also die Entfernung eines Zeichens vor dem Umbruch. (3) Ersetzen von Zeichen durch andere Zeichen; zum Beispiel ergibt <emph>cafee[2é]tje</emph> die korrekte Silbentrennung „café- tje“ des niederländischen Worts „cafeetje“, also die Ersetzung von zwei Zeichen vor dem Umruch und durch ein anderes Zeichen."
+msgstr "Sie können [] anstatt des Zeichens = zum Festlegen von Zeichenänderungen vor dem Trennzeichen festlegen. Mögliche Zeichenänderungen sind: (1) Einfügen eines zusätzlichen Zeichen; zum Beispiel ergibt <emph>tug[g]gumi</emph> die korrekte Silbentrennung „tugg- gummi“ des schwedischen Worts „tuggummi“. (2) Entfernen eines Zeichens (werden mit einem Punkt gekennzeichnet); zum Beispiel ergibt <emph>paral·[1]lel</emph> in der korrekten Silbentrennung „para- lel“ des katalanischen Worts „paral·lel“, also die Entfernung eines Zeichens vor dem Umbruch. (3) Ersetzen von Zeichen durch andere Zeichen; zum Beispiel ergibt <emph>cafee[2é]tje</emph> die korrekte Silbentrennung „café- tje“ des niederländischen Worts „cafeetje“, also die Ersetzung von zwei Zeichen vor dem Umbruch und durch ein anderes Zeichen."
#. P5pVw
#: 01010400.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "To place the word pair in the <link href=\"text/shared/01/06040200.xhp\" name=\"AutoCorrect replacement table\">AutoCorrect replacement table</link>, open the <link href=\"text/shared/01/06040500.xhp\" name=\"AutoCorrect context menu\">AutoCorrect context menu</link> and choose <emph>AutoCorrect</emph>. Make your selection from the submenu. The word is replaced and at the same time the word pair is placed in the replacement table."
-msgstr "Um das Wortpaar in die <link href=\"text/shared/01/06040200.xhp\" name=\"Ersetzungstabelle der AutoKorrektur\">Ersetzungstabelle der AutoKorrektur</link> zu übernehmen, öffnen Sie das <link href=\"text/shared/01/06040500.xhp\" name=\"Kontextmenü der automatischen Korrektur\">Kontextmenü der automatischen Korrektur</link> und wählen <emph>Immer korrigieren in</emph>. Treffen Sie Ihre Auswahl im Untermenü. Das Wort wird ersetzt und gleichzeitig wird das Wortpaar in die Ersetzungstabelle übernommen."
+msgstr "Um das Wortpaar in die <link href=\"text/shared/01/06040200.xhp\" name=\"AutoCorrect replacement table\">Ersetzungstabelle der AutoKorrektur</link> zu übernehmen, öffnen Sie das <link href=\"text/shared/01/06040500.xhp\" name=\"AutoCorrect context menu\">Kontextmenü der automatischen Korrektur</link> und wählen <emph>Immer korrigieren in</emph>. Treffen Sie Ihre Auswahl im Untermenü. Das Wort wird ersetzt und gleichzeitig wird das Wortpaar in die Ersetzungstabelle übernommen."
#. jX9FE
#: 01010400.xhp
@@ -2300,7 +2300,7 @@ msgctxt ""
"bm_id3154230\n"
"help.text"
msgid "<bookmark_value>spellcheck; activating for a language</bookmark_value><bookmark_value>spelling; activating for a language</bookmark_value><bookmark_value>hyphenation; activating for a language</bookmark_value><bookmark_value>thesaurus; activating for a language</bookmark_value><bookmark_value>languages; activating modules</bookmark_value><bookmark_value>dictionaries;creating</bookmark_value><bookmark_value>user-defined dictionaries;creating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Rechtschreibprüfung; aktivieren für eine Sprache</bookmark_value><bookmark_value>Rechtschreibung; aktivieren für eine Sprache</bookmark_value><bookmark_value>Silbentrennung; aktivieren für eine Sprache</bookmark_value><bookmark_value>Thesaurus; aktivieren für eine Sprache</bookmark_value><bookmark_value>Sprachen; aktivieren der Module</bookmark_value><bookmark_value>Wörterbücher; erstellen</bookmark_value><bookmark_value>Benutzerwörterbücher; erstellen</bookmark_value>"
#. LFHnZ
#: 01010401.xhp
@@ -2471,7 +2471,7 @@ msgctxt ""
"bm_id3150771\n"
"help.text"
msgid "<bookmark_value>pick color</bookmark_value><bookmark_value>color selector</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Farbe wählen</bookmark_value><bookmark_value>Farbauswahl</bookmark_value>"
#. yHj82
#: 01010501.xhp
@@ -2480,7 +2480,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "<variable id=\"colorpickerh1\"><link href=\"text/shared/optionen/01010501.xhp\" name=\"Selecting a new color\">Selecting a new color</link></variable>"
-msgstr ""
+msgstr "<variable id=\"colorpickerh1\"><link href=\"text/shared/optionen/01010501.xhp\" name=\"Selecting a new color\">Eine neue Farbe auswählen</link></variable>"
#. 2DKci
#: 01010501.xhp
@@ -2507,7 +2507,7 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "The Pick a Color dialog consists of four main areas."
-msgstr ""
+msgstr "Der Dialog »Farbe auswählen« besteht aus vier Hauptbereichen."
#. JA9HB
#: 01010501.xhp
@@ -2606,7 +2606,7 @@ msgctxt ""
"par_id3153727\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die rote Komponente im vertikalen Farbregler fest und die grüne und blaue Komponente im zweidimensionalen Farbauswahlfeld. Zulässige Werte sind 0 bis 255.</ahelp>"
#. G5BRr
#: 01010501.xhp
@@ -2633,7 +2633,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die grüne Komponente im vertikalen Farbregler fest und die rote und blaue Komponente im zweidimensionalen Farbauswahlfeld. Zulässige Werte sind 0 bis 255.</ahelp>"
#. NauiA
#: 01010501.xhp
@@ -2660,7 +2660,7 @@ msgctxt ""
"par_id3153729\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die blaue Komponente im vertikalen Farbregler fest und die grüne und rote Komponenten im zweidimensionalen Farbauswahlfeld. Zulässige Werte sind 0 bis 255.</ahelp>"
#. EHQDG
#: 01010501.xhp
@@ -2714,7 +2714,7 @@ msgctxt ""
"par_id3153730\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die Farbtonkomponente im vertikalen Farbregler fest und die Sättigungs- und Helligkeitskomponente im zweidimensionalen Farbauswahlfeld. Die Werte werden in Grad von 0 bis 359 angegeben.</ahelp>"
#. fGAJ5
#: 01010501.xhp
@@ -2741,7 +2741,7 @@ msgctxt ""
"par_id3153731\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die Sättigungskomponente im vertikalen Farbregler fest und die Farbton- und Helligkeitskomponente im zweidimensionalen Farbauswahlfeld. Die Werte werden in Prozent (0 bis 100) angegeben.</ahelp>"
#. cuCGT
#: 01010501.xhp
@@ -2768,7 +2768,7 @@ msgctxt ""
"par_id3153732\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die Helligkeitskomponente im vertikalen Farbregler fest und die Farbton- und Sättigungskomponenten im zweidimensionalen Farbauswahlfeld. Die Werte werden in Prozent (0 bis 100) angegeben.</ahelp>"
#. uDLZu
#: 01010501.xhp
@@ -3020,7 +3020,7 @@ msgctxt ""
"hd_id111581845580821\n"
"help.text"
msgid "%PRODUCTNAME Quickstarter"
-msgstr ""
+msgstr "%PRODUCTNAME Schnellstarter"
#. BrALY
#: 01010600.xhp
@@ -3029,7 +3029,7 @@ msgctxt ""
"hd_id731581845724606\n"
"help.text"
msgid "Load %PRODUCTNAME during system start-up"
-msgstr ""
+msgstr "Lädt %PRODUCTNAME während des Systemstarts"
#. J7FUd
#: 01010600.xhp
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_id971581845639198\n"
"help.text"
msgid "If enabled, loads %PRODUCTNAME into memory when the computer is booted, or when %PRODUCTNAME is restarted. When loaded, it reduces the time for opening %PRODUCTNAME. An icon is also added to the system tray. Right-click on the icon to show a menu for opening new or existing documents, and for stopping the quickstarter."
-msgstr ""
+msgstr "Wenn diese Option aktiviert ist, wird %PRODUCTNAME beim Starten des Computers oder beim Neustart von %PRODUCTNAME in den Speicher geladen. Nach dem Laden wird die Zeit zum Öffnen von %PRODUCTNAME verkürzt. Ein Symbol wird auch zur Taskleiste hinzugefügt. Klicken Sie mit der rechten Maustaste auf das Symbol, um ein Menü zum Öffnen neuer oder vorhandener Dokumente und zum Stoppen des Schnellstarters anzuzeigen."
#. MGRtz
#: 01010600.xhp
@@ -3047,7 +3047,7 @@ msgctxt ""
"hd_id411581548563601\n"
"help.text"
msgid "%PRODUCTNAME File Associations"
-msgstr ""
+msgstr "%PRODUCTNAME Dateizuordnungen"
#. sAAWp
#: 01010600.xhp
@@ -3056,7 +3056,7 @@ msgctxt ""
"hd_id81581845691263\n"
"help.text"
msgid "Windows Default Apps"
-msgstr ""
+msgstr "Windows-Standard-Apps"
#. BnQGA
#: 01010600.xhp
@@ -3065,7 +3065,7 @@ msgctxt ""
"par_id481581548792359\n"
"help.text"
msgid "Call Windows file associations management. This button behaves according to Microsoft file association management policy, which is to open \"Default apps\" on Windows 7, 8, and 8.1; and to show a message telling user how to open that applet manually in Windows 10."
-msgstr ""
+msgstr "Rufen Sie die Verwaltung der Windows-Dateizuordnungen auf. Diese Schaltfläche verhält sich gemäß der Microsoft-Richtlinie zur Verwaltung von Dateizuordnungen, mit der \"Standard-Apps\" unter Windows 7, 8 und 8.1 geöffnet werden, und um eine Meldung anzuzeigen, die den Benutzer darüber informiert, wie das Applet in Windows 10 manuell geöffnet werden kann."
#. 9MQ7V
#: 01010700.xhp
@@ -3506,7 +3506,7 @@ msgctxt ""
"par_id3155630\n"
"help.text"
msgid "Specifies view options."
-msgstr "Legt die Ansichts-Optionen fest."
+msgstr "Legt die Ansichtsoptionen fest."
#. M4iFj
#: 01010800.xhp
@@ -4217,7 +4217,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the maximum number of gradient stripes for printing.</ahelp>"
-msgstr "<ahelp hid=\".\">Hier legen Sie die maximale Anzahl an Farbverlaufssteifen fürs Drucken fest.</ahelp>"
+msgstr "<ahelp hid=\".\">Hier legen Sie die maximale Anzahl an Farbverlaufsstreifen fürs Drucken fest.</ahelp>"
#. r6pvq
#: 01010900.xhp
@@ -4460,7 +4460,7 @@ msgctxt ""
"hd_id3148672\n"
"help.text"
msgid "Custom Colors"
-msgstr ""
+msgstr "Benutzerdefinierte Farben"
#. 7JQfD
#: 01012000.xhp
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id3150769\n"
"help.text"
msgid "To apply a color to a <emph>user interface element</emph>, ensure that the box in front of the name is checked. To hide a user interface element, clear the check box."
-msgstr ""
+msgstr "Um eine Farbe auf ein <emph>Element der Benutzeroberfläche</emph> anzuwenden, stellen Sie sicher, dass das Kontrollkästchen vor dem Namen aktiviert ist. Deaktivieren Sie das Kontrollkästchen, um ein Element der Benutzeroberfläche auszublenden."
#. LRXwH
#: 01012000.xhp
@@ -4487,7 +4487,7 @@ msgctxt ""
"par_id3155430\n"
"help.text"
msgid "Some <emph>user interface elements</emph> cannot be hidden."
-msgstr ""
+msgstr "Einige <emph>Elemente der Benutzeroberfläche</emph> können nicht ausgeblendet werden."
#. ebKkM
#: 01012000.xhp
@@ -4496,7 +4496,7 @@ msgctxt ""
"par_id3145365\n"
"help.text"
msgid "To enhance cursor visibility, set the application background color between 40% and 60% gray, it is automatically changed to 40% gray."
-msgstr ""
+msgstr "Um die Sichtbarkeit des Cursors zu verbessern, stellen Sie die Hintergrundfarbe der Anwendung zwischen 40% und 60% Grau ein. Sie wird automatisch in 40% Grau geändert."
#. 7xJHG
#: 01012000.xhp
@@ -5666,7 +5666,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "Specifies the settings for basic fonts for complex text layout languages if their support has been activated under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr "Legt die Einstellungen zu Basisschriften für \"Complex Text Layout\"-Sprachen fest, wenn die Unterstützung unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen</emph> aktiviert wurde."
+msgstr "Legt die Einstellungen zu Basisschriften für Sprachen mit komplexem Textlayout fest, wenn die Unterstützung unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen</emph> aktiviert wurde."
#. DrtAF
#: 01040200.xhp
@@ -5684,7 +5684,7 @@ msgctxt ""
"bm_id3156346\n"
"help.text"
msgid "<bookmark_value>snap lines; showing when moving frames (Writer)</bookmark_value><bookmark_value>scrollbars; horizontal and vertical (Writer)</bookmark_value><bookmark_value>horizontal scrollbars (Writer)</bookmark_value><bookmark_value>vertical scrollbars (Writer)</bookmark_value><bookmark_value>smooth scrolling (Writer)</bookmark_value><bookmark_value>displaying; pictures and objects (Writer)</bookmark_value><bookmark_value>pictures; displaying in Writer (Writer)</bookmark_value><bookmark_value>objects; displaying in text documents</bookmark_value><bookmark_value>displaying; tables (Writer)</bookmark_value><bookmark_value>tables in text; displaying</bookmark_value><bookmark_value>limits of tables (Writer)</bookmark_value><bookmark_value>borders;table boundaries (Writer)</bookmark_value><bookmark_value>boundaries of tables (Writer)</bookmark_value><bookmark_value>showing; drawings and controls (Writer)</bookmark_value><bookmark_value>drawings; showing (Writer)</bookmark_value><bookmark_value>controls; showing (Writer)</bookmark_value><bookmark_value>displaying; comments in text documents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Fanglinien; beim Bewegen von Rahmen anzeigen (Writer)</bookmark_value><bookmark_value>Bildlaufleisten; horizontal und vertikal (Writer)</bookmark_value><bookmark_value>Horizontale Bildlaufleisten (Writer)</bookmark_value><bookmark_value>Vertikale Bildlaufleisten (Writer)</bookmark_value><bookmark_value>Sanfter Bildlauf (Writer)</bookmark_value><bookmark_value>Anzeigen; Bilder und Objekte (Writer)</bookmark_value><bookmark_value>Bilder; anzeigen (Writer)</bookmark_value><bookmark_value>Objekte; in Textdokumenten anzeigen</bookmark_value><bookmark_value>Anzeigen; Tabellen (Writer)</bookmark_value><bookmark_value>Tabellen im Text; anzeigen</bookmark_value><bookmark_value>Tabellenbegrenzungen (Writer)</bookmark_value><bookmark_value>Rahmen; Tabellenbegrenzung (Writer)</bookmark_value><bookmark_value>Tabellenbegrenzungen (Writer)</bookmark_value><bookmark_value>Anzeigen; Zeichnungen und Steuerelemente (Writer)</bookmark_value><bookmark_value>Zeichnungen; anzeigen (Writer)</bookmark_value><bookmark_value>Steuerelemente; anzeigen (Writer)</bookmark_value><bookmark_value>Anzeigen; Kommentare in Textdokumenten</bookmark_value>"
#. Bc7jh
#: 01040200.xhp
@@ -6062,7 +6062,7 @@ msgctxt ""
"par_id3152349\n"
"help.text"
msgid "You can also change the basic fonts for Asian and complex text layout languages if their support is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr "Sie können die Grundschriften für asiatische und Complex Text Layout Sprachen ändern, wenn Sie die entsprechnde Unterstützung unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen</emph> aktiviert haben."
+msgstr "Sie können die Grundschriften für asiatische Sprachen und Sprachen mit komplexem Textlayout ändern, wenn Sie die entsprechende Unterstützung unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - Spracheinstellungen - Sprachen</emph> aktiviert haben."
#. DeGFa
#: 01040300.xhp
@@ -11489,7 +11489,7 @@ msgctxt ""
"par_id4155419\n"
"help.text"
msgid "In %PRODUCTNAME Calc function names can be localized. By default, the check box is off, which means the localized function names are used. Checking this check box will swap localized function names with the English ones. This change takes effect in all of the following areas: formula input and display, function wizard, and formula tips. You can of course uncheck it to go back to the localized function names."
-msgstr "In %PRODUCTNAME Calc können Funktionsnamen übersetzt werden. Standardmäßig ist das Markierfeld dektiviert, sodass übersetzte Funktionsnamen verwendet werden. Wird das Markierfeld aktiviert, werden stattdessen die englischen Funktionsnamen verwendet. Diese Änderung betrifft folgende Bereiche: Eingabe und Anzeige von Formeln, den Funktions-Assistenten und Formeltipps. Wenn das Markierfeld wieder aktiviert wird, werden erneut übersetzte Funktionsnamen verwendet."
+msgstr "In %PRODUCTNAME Calc können Funktionsnamen übersetzt werden. Standardmäßig ist das Markierfeld deaktiviert, sodass übersetzte Funktionsnamen verwendet werden. Wird das Markierfeld aktiviert, werden stattdessen die englischen Funktionsnamen verwendet. Diese Änderung betrifft folgende Bereiche: Eingabe und Anzeige von Formeln, den Funktionsassistenten und Formeltipps. Wenn das Markierfeld wieder deaktiviert wird, werden erneut übersetzte Funktionsnamen verwendet."
#. DtrRf
#: 01060900.xhp
@@ -12371,7 +12371,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/prntopts/blackwhiterb\">Specifies that you want to print the document in black and white.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/prntopts/blackwhiterb\">Hier legen Sie fest, dass Sie das Dokument in schwarzweiß drucken möchten.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/prntopts/blackwhiterb\">Hier legen Sie fest, dass Sie das Dokument in Schwarz-Weiß drucken möchten.</ahelp>"
#. H4Cod
#: 01070400.xhp
@@ -14117,7 +14117,7 @@ msgctxt ""
"hd_id3158407\n"
"help.text"
msgid "Complex text layout"
-msgstr ""
+msgstr "Komplexes Textlayout (CTL)"
#. wbSKU
#: 01140000.xhp
@@ -14126,7 +14126,7 @@ msgctxt ""
"par_id3156212\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optlanguagespage/complexlanguage\">Specifies the language for the complex text layout spellcheck.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optlanguagespage/complexlanguage\">Legt die Sprache für die Complex Text Layout-Rechtschreibprüfung fest.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optlanguagespage/complexlanguage\">Legt die Sprache für die Rechtschreibprüfung des komplexen Textlayouts fest.</ahelp>"
#. wtRSR
#: 01140000.xhp
@@ -14216,7 +14216,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "The <emph>Searching in Japanese</emph> and <emph>Asian Layout</emph> tab pages are only visible if the <emph>Asian language support</emph> option in the <emph>Languages</emph> tab page is activated and the <emph>Options</emph> dialog is re-opened. The <emph>Complex Text Layout</emph> tab page is only visible if the <emph>CTL support</emph> is enabled."
-msgstr "Die Register <emph>Suchoptionen für Japanisch</emph> und <emph>Asiatisches Layout</emph> werden erst sichtbar, wenn Sie die Option <emph>Steuerelemente für ostasiatische Schreibweisen anzeigen</emph> im Register <emph>Sprachen</emph> aktivieren und den Dialog <emph>Optionen</emph> erneut öffnen. Das Register <emph>Complex Text Layout</emph> ist nur bei aktiviertem <emph>Steuerelemente für bidirektionales Schreiben anzeigen</emph> sichtbar."
+msgstr "Die Register <emph>Suchoptionen für Japanisch</emph> und <emph>Asiatisches Layout</emph> werden erst sichtbar, wenn Sie die Option <emph>Steuerelemente für ostasiatische Schreibweisen anzeigen</emph> im Register <emph>Sprachen</emph> aktivieren und den Dialog <emph>Optionen</emph> erneut öffnen. Das Register <emph>Komplexes Textlayout</emph> ist nur bei aktiviertem <emph>Steuerelemente für bidirektionales Schreiben anzeigen</emph> sichtbar."
#. sUiBd
#: 01150100.xhp
@@ -15521,7 +15521,7 @@ msgctxt ""
"par_id402233\n"
"help.text"
msgid "Formula syntax to use when parsing references given in string parameters. This affects built-in functions such as INDIRECT that takes a reference as a string value."
-msgstr "Formelsyntax für die Analye von Bezügen, die in Zeichenkettenparametern enthalten sind. Dies hat Auswirkungen auf eingebaute Funktionen wie INDIRECT, welche einen Bezug wie eine Zeichenkette behandeln."
+msgstr "Formelsyntax für die Analyse von Bezügen, die in Zeichenkettenparametern enthalten sind. Dies hat Auswirkungen auf eingebaute Funktionen wie INDIRECT, welche einen Bezug wie eine Zeichenkette behandeln."
#. rCAEG
#: detailedcalculation.xhp
@@ -16052,7 +16052,7 @@ msgctxt ""
"par_idN105AD\n"
"help.text"
msgid "Class Path"
-msgstr "Class Path"
+msgstr "Klassenpfad"
#. S2Bhi
#: java.xhp
@@ -16061,7 +16061,7 @@ msgctxt ""
"par_idN10686\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optadvancedpage/classpath\">Opens the <link href=\"text/shared/optionen/javaclasspath.xhp\">Class Path</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optadvancedpage/classpath\">Öffnet den Dialog <link href=\"text/shared/optionen/javaclasspath.xhp\">Class Path</link>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optadvancedpage/classpath\">Öffnet den Dialog <link href=\"text/shared/optionen/javaclasspath.xhp\">Klassenpfad</link>.</ahelp>"
#. BDpS5
#: java.xhp
@@ -16133,7 +16133,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Class Path"
-msgstr "Class Path"
+msgstr "Klassenpfad"
#. FAdA3
#: javaclasspath.xhp
@@ -16142,7 +16142,7 @@ msgctxt ""
"par_idN10566\n"
"help.text"
msgid "Class Path"
-msgstr "Class Path"
+msgstr "Klassenpfad"
#. 4aPLC
#: javaclasspath.xhp
@@ -16151,7 +16151,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "You use this dialog to add folders and archives to the Java class path. These paths are valid for any JRE that you start."
-msgstr "Mit diesem Dialog können Sie Ordner und Archive zum Java-Umgebungsungsvariable CLASSPATH hinzufügen. Diese Pfade gelten für alle Java-Laufzeitumgebungen, die Sie aufrufen."
+msgstr "Mit diesem Dialog können Sie Ordner und Archive zur Java-Umgebungsvariable CLASSPATH hinzufügen. Diese Pfade gelten für alle Java-Laufzeitumgebungen, die Sie aufrufen."
#. GDxbt
#: javaclasspath.xhp
@@ -17222,7 +17222,7 @@ msgctxt ""
"par_id8266853\n"
"help.text"
msgid "OpenCL™ is the first open, royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices. OpenCL (Open Computing Language) greatly improves speed and responsiveness for a wide spectrum of applications in numerous market categories from gaming and entertainment to scientific and medical software"
-msgstr "OpenCL™ ist der erste offene, lizenzfreie Standard plattformübergreifender, paralleler Programmierung für moderne Prozessoren, wie sie in PCs, Servern, Hand- und eingebetteten Geräten vorhanden sind. OpenCL (Open Computing Language) verbessert die Geschwindigkeit und Reaktionsfähigkeit für eine Vielzahl von Anwendungen in zahlreichen Bereichen von der Spiele- und Unterhaltungs- bis hin zur Wissenschafts und Medizinsoftware"
+msgstr "OpenCL™ ist der erste offene, lizenzfreie Standard plattformübergreifender, paralleler Programmierung für moderne Prozessoren, wie sie in PCs, Servern, Hand- und eingebetteten Geräten vorhanden sind. OpenCL (Open Computing Language) verbessert die Geschwindigkeit und Reaktionsfähigkeit für eine Vielzahl von Anwendungen in zahlreichen Bereichen von der Spiele- und Unterhaltungs- bis hin zur Wissenschafts- und Medizinsoftware"
#. CAiPr
#: opencl.xhp
diff --git a/source/de/helpcontent2/source/text/simpress.po b/source/de/helpcontent2/source/text/simpress.po
index 27ebea6eea8..4c568a8da75 100644
--- a/source/de/helpcontent2/source/text/simpress.po
+++ b/source/de/helpcontent2/source/text/simpress.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-07 18:15+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1557892528.000000\n"
#. 2Va4w
@@ -140,7 +140,7 @@ msgctxt ""
"hd_id110120150549176280\n"
"help.text"
msgid "<link href=\"text/simpress/01/03120000.xhp\">Handout</link>"
-msgstr "<link href=\"text/simpress/01/03120000.xhp\">Handzettelmaster</link>"
+msgstr "<link href=\"text/simpress/01/03120000.xhp\">Handzettel</link>"
#. wa6UF
#: main0103.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"par_id102720150112257941\n"
"help.text"
msgid "Toggle the visibility of a master slide's background to be used as the background of the current slide."
-msgstr "Schaltet die Sichtbarkeit eines Hintergrundbildes eines Folienmasters, die als Hintergrund der aktuellen Folie benutzt wird, um."
+msgstr "Schaltet die Sichtbarkeit eines Hintergrundbildes einer Masterfolie, die als Hintergrund der aktuellen Folie benutzt wird, um."
#. zrUk5
#: main0103.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"par_id102720150112256473\n"
"help.text"
msgid "Toggle the visibility of a master slide's objects to appear on the current slide."
-msgstr "Schaltet die Sichtbarkeit von Objekten eines Folienmasters, die auf der aktuellen Folie erscheinen, um."
+msgstr "Schaltet die Sichtbarkeit von Objekten einer Masterfolie, die auf der aktuellen Folie erscheinen, um."
#. cizmi
#: main0103.xhp
@@ -914,7 +914,7 @@ msgctxt ""
"par_id3148699\n"
"help.text"
msgid "To select an object that is behind another object, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click the object. To select the next underlying object in the stacking, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click again. To return the selection to the previously selected object, hold down Shift + <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then click."
-msgstr "Um ein Objekt auszuwählen, das sich hinter einem anderen Objekt befindet, halten Sie die Taste <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> gedrückt und klicken dann auf das Objekt. Das in der Stapelreihenfolge nächsttiefere Objekt wählen Sie aus, indem Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> gedrückt halten und erneut klicken. Zu dem zuvor ausgewählten Objekt kehren Sie zurück, wenn Sie Umschaltt+<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> gedrückt halten und dann klicken."
+msgstr "Um ein Objekt auszuwählen, das sich hinter einem anderen Objekt befindet, halten Sie die Taste <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> gedrückt und klicken dann auf das Objekt. Das in der Stapelreihenfolge nächsttiefere Objekt wählen Sie aus, indem Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> gedrückt halten und erneut klicken. Zu dem zuvor ausgewählten Objekt kehren Sie zurück, wenn Sie Umschalt+<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> gedrückt halten und dann klicken."
#. 4aToU
#: main0210.xhp
@@ -950,7 +950,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag."
-msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dorthin, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt."
+msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dort, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt."
#. 8q8av
#: main0210.xhp
@@ -2093,7 +2093,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur-Optionen...\">AutoKorrektur-Optionen...</link>"
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoKorrektur-Optionen…</link>"
#. b8grv
#: main_tools.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/00.po b/source/de/helpcontent2/source/text/simpress/00.po
index 07c7d688134..2137cfc324b 100644
--- a/source/de/helpcontent2/source/text/simpress/00.po
+++ b/source/de/helpcontent2/source/text/simpress/00.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2020-10-22 11:35+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress00/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress00/de/>\n"
"Language: de\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: 1557892670.000000\n"
#. sqmGT
@@ -347,7 +347,7 @@ msgctxt ""
"par_id3155255\n"
"help.text"
msgid "Choose <emph>View - Master Handout</emph>"
-msgstr "Wählen Sie <emph>Ansicht - Handzettelmaster</emph>"
+msgstr "Wählen Sie <emph>Ansicht - Masterhandzettel</emph>"
#. jBGUy
#: 00000403.xhp
@@ -419,7 +419,7 @@ msgctxt ""
"par_idN10AF7\n"
"help.text"
msgid "<variable id=\"masterlayouts\">Choose <emph>View - Master Slide </emph></variable>"
-msgstr "<variable id=\"masterlayouts\">Wählen Sie <emph>Ansicht - Folienmaster</emph></variable>"
+msgstr "<variable id=\"masterlayouts\">Wählen Sie <emph>Ansicht - Masterfolie</emph></variable>"
#. QetBX
#: 00000403.xhp
@@ -428,7 +428,7 @@ msgctxt ""
"par_idN10B19\n"
"help.text"
msgid "<variable id=\"notesmaster\">Choose <emph>View - Master Notes</emph> </variable>"
-msgstr "<variable id=\"notesmaster\">Wählen Sie <emph>Ansicht - Notizenmaster</emph></variable>"
+msgstr "<variable id=\"notesmaster\">Wählen Sie <emph>Ansicht - Masternotiz</emph></variable>"
#. SL63x
#: 00000403.xhp
@@ -482,7 +482,7 @@ msgctxt ""
"par_id3153480\n"
"help.text"
msgid "<variable id=\"master_drawing\">Choose <emph>View - Master Slide</emph> </variable>"
-msgstr "<variable id=\"master_drawing\">Wählen Sie <emph>Ansicht - Folienmaster</emph></variable>"
+msgstr "<variable id=\"master_drawing\">Wählen Sie <emph>Ansicht – Masterfolie</emph></variable>"
#. LG3aP
#: 00000403.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index cbd68bf0273..7dcb105246d 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -1580,7 +1580,7 @@ msgctxt ""
"par_id9628894\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the background of the master slide.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild des Folienmasters an.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild der Masterfolie an.</ahelp>"
#. EFGy7
#: 03080000.xhp
@@ -1589,7 +1589,7 @@ msgctxt ""
"par_id7587206\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">When enabled, the current slide shows the objects of the master slide.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild des Folienmasters an.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild der Masterfolie an.</ahelp>"
#. z7z7h
#: 03080000.xhp
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3257545\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current master slide.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Öffnet einen Dateidialog zum Auswählen eines Bildes. Das Bild wird skaliert und in den Hintergrund des aktuellen Folienmasters eingefügt.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Öffnet einen Dateidialog zum Auswählen eines Bildes. Das Bild wird skaliert und in den Hintergrund der aktuellen Masterfolie eingefügt.</ahelp>"
#. RhRBB
#: 03090000.xhp
@@ -1886,7 +1886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Slide"
-msgstr "Folienmaster"
+msgstr "Masterfolie"
#. bbaVv
#: 03150100.xhp
@@ -1895,7 +1895,7 @@ msgctxt ""
"bm_id3154013\n"
"help.text"
msgid "<bookmark_value>normal view; backgrounds</bookmark_value> <bookmark_value>backgrounds; normal view</bookmark_value> <bookmark_value>views;master slide view</bookmark_value> <bookmark_value>master slide view</bookmark_value>"
-msgstr "<bookmark_value>Normalansicht; Hintergründe</bookmark_value><bookmark_value>Hintergründe; Normalansicht</bookmark_value><bookmark_value>Ansicht; Folienmaster</bookmark_value><bookmark_value>Folienmaster</bookmark_value>"
+msgstr "<bookmark_value>Normalansicht; Hintergründe</bookmark_value><bookmark_value>Hintergründe; Normalansicht</bookmark_value><bookmark_value>Ansicht; Masterfolie</bookmark_value><bookmark_value>Masterfolie</bookmark_value>"
#. D8RE5
#: 03150100.xhp
@@ -1904,7 +1904,7 @@ msgctxt ""
"hd_id3154013\n"
"help.text"
msgid "<link href=\"text/simpress/01/03150100.xhp\" name=\"Master Slide\">Master Slide</link>"
-msgstr "<link href=\"text/simpress/01/03150100.xhp\" name=\"Folienmaster\">Folienmaster</link>"
+msgstr "<link href=\"text/simpress/01/03150100.xhp\" name=\"Master Slide\">Masterfolie</link>"
#. yuN3X
#: 03150100.xhp
@@ -1913,7 +1913,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to master slide view, where you can add elements that you want to appear on all of the slides that use the same master slide.</ahelp>"
-msgstr "<ahelp hid=\".\">Wechselt in die Ansicht Folienmaster, in der Sie Elemente erstellen und bearbeiten können, welche auf allen Folien erscheinen, die denselben Folienmaster verwenden.</ahelp>"
+msgstr "<ahelp hid=\".\">Wechselt in die Ansicht Masterfolie, in der Sie Elemente erstellen und bearbeiten können, welche auf allen Folien erscheinen, die dieselbe Masterfolie verwenden.</ahelp>"
#. 9gFTW
#: 03150100.xhp
@@ -1922,7 +1922,7 @@ msgctxt ""
"par_id4941557\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new master slide into the document. Double-click the new master slide on the Slides pane to apply it to all slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fügt einen neuen Folienmaster in das Dokument ein. Klicken Sie doppelt auf den neuen Folienmaster im Bereich Folien, um ihm auf alle Folien anzuwenden.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fügt eine neue Masterfolie in das Dokument ein. Klicken Sie doppelt auf die neue Masterfolie im Bereich Folien, um sie auf alle Folien anzuwenden.</ahelp>"
#. QwNyk
#: 03150100.xhp
@@ -1931,7 +1931,7 @@ msgctxt ""
"par_id9961851\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a master slide and click this icon to remove the master slide from the document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wählen Sie einen Folienmaster aus und klicken Sie auf dieses Symbol, um den Folienmaster aus dem Dokument zu entfernen.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wählen Sie eine Masterfolie aus und klicken Sie auf dieses Symbol, um die Masterfolie aus dem Dokument zu entfernen.</ahelp>"
#. erQ56
#: 03150100.xhp
@@ -1940,7 +1940,7 @@ msgctxt ""
"par_id4526200\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a master slide and click this icon to rename the master slide.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wählen Sie einen Folienmaster aus und klicken Sie auf dieses Symbol, um den Folienmaster umzubenennen.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wählen Sie eine Masterfolie aus und klicken Sie auf dieses Symbol, um die Masterfolie umzubenennen.</ahelp>"
#. rUYFb
#: 03150100.xhp
@@ -1949,7 +1949,7 @@ msgctxt ""
"par_id8036133\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Closes the master slide view.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Schließt die Ansicht Folienmaster.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Schließt die Ansicht Masterfolie.</ahelp>"
#. gEyC8
#: 03150300.xhp
@@ -1958,7 +1958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Notes"
-msgstr "Notizenmaster"
+msgstr "Masternotizen"
#. M5hFB
#: 03150300.xhp
@@ -1976,7 +1976,7 @@ msgctxt ""
"hd_id3153144\n"
"help.text"
msgid "<link href=\"text/simpress/01/03150300.xhp\" name=\"Master Notes\">Master Notes</link>"
-msgstr "<link href=\"text/simpress/01/03150300.xhp\" name=\"Notizenmaster\">Notizenmaster</link>"
+msgstr "<link href=\"text/simpress/01/03150300.xhp\" name=\"Master Notes\">Masternotizen</link>"
#. QUxqM
#: 03150300.xhp
@@ -1985,7 +1985,7 @@ msgctxt ""
"par_id3154491\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the master notes, where you can set the default formatting for notes.</ahelp>"
-msgstr "<ahelp hid=\".\">Wechselt in den Notizenmaster, in dem Sie Formate für Notizen definieren können.</ahelp>"
+msgstr "<ahelp hid=\".\">Wechselt in die Masternotiz, in dem Sie Formate für Notizen definieren können.</ahelp>"
#. FjtAU
#: 03151000.xhp
@@ -2003,7 +2003,7 @@ msgctxt ""
"bm_id4083986\n"
"help.text"
msgid "<bookmark_value>headers and footers;master slides layouts</bookmark_value> <bookmark_value>master slides layouts with headers and footers</bookmark_value>"
-msgstr "<bookmark_value>Kopf- und Fußzeilen; Folienmaster-Layouts</bookmark_value><bookmark_value>Folienmaster-Layouts mit Kopf- und Fußzeilen</bookmark_value>"
+msgstr "<bookmark_value>Kopf- und Fußzeilen; Masterfolienlayouts</bookmark_value><bookmark_value>Masterfolienlayouts mit Kopf- und Fußzeilen</bookmark_value>"
#. W4r4L
#: 03151000.xhp
@@ -2021,7 +2021,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Add header, footer, date, and slide number placeholders to the master slide.</ahelp>"
-msgstr "<ahelp hid=\".\">Fügt dem Folienmaster Platzhalter für Kopfzeile, Fußzeile, Datum und Foliennummer hinzu.</ahelp>"
+msgstr "<ahelp hid=\".\">Fügt der Masterfolie Platzhalter für Kopfzeile, Fußzeile, Datum und Foliennummer hinzu.</ahelp>"
#. 9sGbo
#: 03151100.xhp
@@ -2030,7 +2030,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Slide Layout"
-msgstr "Folienmaster-Layout"
+msgstr "Masterfolienlayout"
#. 9DE2m
#: 03151100.xhp
@@ -2039,7 +2039,7 @@ msgctxt ""
"par_idN10537\n"
"help.text"
msgid "<link href=\"text/simpress/01/03151100.xhp\">Master Slide Layout</link>"
-msgstr "<link href=\"text/simpress/01/03151100.xhp\">Folienmaster-Layout</link>"
+msgstr "<link href=\"text/simpress/01/03151100.xhp\">Masterfolienlayout</link>"
#. BFiHw
#: 03151100.xhp
@@ -2048,7 +2048,7 @@ msgctxt ""
"par_idN1053B\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Fügt dem Folienmaster Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/MasterLayoutDialog\">Fügt der Masterfolie Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese.</ahelp>"
#. hzr7L
#: 03151100.xhp
@@ -2075,7 +2075,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Adds a header placeholder to the master slide for notes.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Fügt dem Notizenmaster einen Platzhalter für Kopfzeilen hinzu, um Notizen hinzuzufügen.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/header\">Fügt der Masternotiz einen Platzhalter für Kopfzeilen hinzu, um Notizen hinzuzufügen.</ahelp>"
#. PmBBD
#: 03151100.xhp
@@ -2093,7 +2093,7 @@ msgctxt ""
"par_idN10575\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Adds a date/time placeholder to the master slide.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Fügt dem Folienmaster einen Platzhalter für Datum und Uhrzeit hinzu.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/datetime\">Fügt der Masterfolie einen Platzhalter für Datum und Uhrzeit hinzu.</ahelp>"
#. UTCgn
#: 03151100.xhp
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Adds a footer placeholder to the master slide.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Fügt dem Folienmaster einen Platzhalter für eine Fußzeile hinzu.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/footer\">Fügt der Masterfolie einen Platzhalter für eine Fußzeile hinzu.</ahelp>"
#. BEzcG
#: 03151100.xhp
@@ -2138,7 +2138,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Notes Layout"
-msgstr "Folienmaster-Layout"
+msgstr "Masterfolienlayout"
#. CZPoq
#: 03151200.xhp
@@ -2147,7 +2147,7 @@ msgctxt ""
"par_idN10527\n"
"help.text"
msgid "<link href=\"text/simpress/01/03151200.xhp\">Master Notes Layout</link>"
-msgstr "<link href=\"text/simpress/01/03151200.xhp\">Notizenmaster-Layout</link>"
+msgstr "<link href=\"text/simpress/01/03151200.xhp\">Masternotizlayout</link>"
#. 5xuE5
#: 03151200.xhp
@@ -2156,7 +2156,7 @@ msgctxt ""
"par_idN1052B\n"
"help.text"
msgid "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Add header, footer, date, and slide number to the master notes.</ahelp>"
-msgstr "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Fügt dem Notizenmaster Platzhalter für Kopfzeile, Fußzeile, Datum und Seitennummer hinzu.</ahelp>"
+msgstr "<ahelp hid=\"SID_MASTER_LAYOUTS_NOTES\">Fügt der Masternotiz Platzhalter für Kopfzeile, Fußzeile, Datum und Seitennummer hinzu.</ahelp>"
#. 86iBU
#: 03152000.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Adds or changes text in placeholders at the top and the bottom of slides and master slides.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Fügt den Text in den Platzhaltern oben und unten auf den Folien und dem Folienmaster hinzu beziehungsweise ändert diesen.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/HeaderFooterDialog\">Fügt den Text in den Platzhaltern oben und unten auf den Folien und der Masterfolie hinzu beziehungsweise ändert diese.</ahelp>"
#. DZHmF
#: 03152000.xhp
@@ -2435,7 +2435,7 @@ msgctxt ""
"par_idN107DC\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Applies the settings to all the slides in your presentation, including the corresponding master slides.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich dem entsprechenden Folienmaster.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfooterdialog/apply_all\">Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich der entsprechenden Masterfolie.</ahelp>"
#. wQmSk
#: 03152000.xhp
@@ -2489,7 +2489,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Shows slides in color, grayscale, or black and white."
-msgstr "Zeigt die Folien in Farbe, in Graustufen, in Schwarzweiß oder mit hohem Kontrast."
+msgstr "Zeigt die Folien in Farbe, in Graustufen, in Schwarz-Weiß oder mit hohem Kontrast."
#. FZMsi
#: 03180000.xhp
@@ -3893,7 +3893,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Change Slide Master"
-msgstr "Folienmaster ändern"
+msgstr "Masterfolie ändern"
#. Jg7LJ
#: 05120000.xhp
@@ -3902,7 +3902,7 @@ msgctxt ""
"hd_id3154253\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Change Slide Master</link>"
-msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Folienmaster ändern</link>"
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Masterfolie ändern</link>"
#. Bi55Y
#: 05120000.xhp
@@ -3983,7 +3983,7 @@ msgctxt ""
"par_id3156020\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Deigt den Dialog <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Master Slide\"><emph>Folienmaster laden</emph></link> an, in dem Sie weitere Folienvorlagen auswählen können.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Deigt den Dialog <link href=\"text/simpress/01/05120100.xhp\" name=\"Load Master Slide\"><emph>Masterfolie laden</emph></link> an, in dem Sie weitere Folienvorlagen auswählen können.</ahelp>"
#. sQnAB
#: 05120100.xhp
@@ -3992,7 +3992,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Load Master Slide"
-msgstr "Folienmaster laden"
+msgstr "Masterfolie laden"
#. cVSPz
#: 05120100.xhp
@@ -4001,7 +4001,7 @@ msgctxt ""
"hd_id3153728\n"
"help.text"
msgid "Load Master Slide"
-msgstr "Folienmaster laden"
+msgstr "Masterfolie laden"
#. DB49E
#: 05120100.xhp
@@ -4028,7 +4028,7 @@ msgctxt ""
"hd_id3150327\n"
"help.text"
msgid "Categories"
-msgstr "Bereiche"
+msgstr "Kategorien"
#. Qjzs5
#: 05120100.xhp
@@ -4037,7 +4037,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Zeigt die vorhandenen Folienvorlagenbereiche.</ahelp>"
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Zeigt die vorhandenen Folienvorlagenkategorien.</ahelp>"
#. SFJp7
#: 05120100.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/02.po b/source/de/helpcontent2/source/text/simpress/02.po
index 57c9529372b..1605cfa3ccb 100644
--- a/source/de/helpcontent2/source/text/simpress/02.po
+++ b/source/de/helpcontent2/source/text/simpress/02.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-11-20 15:34+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress02/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -5261,7 +5261,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<ahelp hid=\".uno:ColorView\">Shows your slides in black and white only.</ahelp>"
-msgstr "<ahelp hid=\".uno:ColorView\">Zeigt Text in der Gliederungsansicht in Schwarzweiß oder in Farbe.</ahelp>"
+msgstr "<ahelp hid=\".uno:ColorView\">Zeigt Text in der Gliederungsansicht in Schwarz-Weiß oder in Farbe.</ahelp>"
#. EbyNY
#: 11110000.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/04.po b/source/de/helpcontent2/source/text/simpress/04.po
index ed87a3a4cce..7eb246d7fd2 100644
--- a/source/de/helpcontent2/source/text/simpress/04.po
+++ b/source/de/helpcontent2/source/text/simpress/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: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress04/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -1832,7 +1832,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Presenter Console Keyboard Shortcuts"
-msgstr "Presenter Console Tastenkombinationen"
+msgstr "Presenter Console-Tastenkombinationen"
#. 7nDJu
#: presenter.xhp
@@ -1841,7 +1841,7 @@ msgctxt ""
"bm_id0921200912285678\n"
"help.text"
msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr "<bookmark_value>Presenter Console Tastenkombinationen</bookmark_value>"
+msgstr "<bookmark_value>Presenter Console-Tastenkombinationen</bookmark_value>"
#. wYw58
#: presenter.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/guide.po b/source/de/helpcontent2/source/text/simpress/guide.po
index 91efc345319..46dcb608436 100644
--- a/source/de/helpcontent2/source/text/simpress/guide.po
+++ b/source/de/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1561609713.000000\n"
#. S83CC
@@ -1364,7 +1364,7 @@ msgctxt ""
"par_id1356547\n"
"help.text"
msgid "Every slide is based on a master slide. The text, pictures, tables, fields or other objects that you place on the master slide are visible as a background on all slides that are based on that master slide."
-msgstr "Jede Folie basiert auf einem Folienmaster. Der Text, die Bilder, Tabellen, Felder oder andere Objekte, die Sie auf dem Folienmaster platzieren, sind als Hintergrund auf allen Folien sichtbar, die auf diesem Folienmaster basieren."
+msgstr "Jede Folie basiert auf einer Masterfolie. Der Text, die Bilder, Tabellen, Felder oder andere Objekte, die Sie auf der Masterfolie platzieren, sind als Hintergrund auf allen Folien sichtbar, die auf dieser Masterfolie basieren."
#. sZgV6
#: footer.xhp
@@ -1373,7 +1373,7 @@ msgctxt ""
"par_id704672\n"
"help.text"
msgid "Masters exist for slides, notes, and handouts."
-msgstr "Master existieren für Folien, Notizen und Handouts."
+msgstr "Master existieren für Folien, Notizen und Handzettel."
#. D55w2
#: footer.xhp
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id8403576\n"
"help.text"
msgid "To edit a master slide, choose <emph>View - Master Slide</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the master slide."
-msgstr "Um einen Folienmaster zu bearbeiten, wählen Sie <emph>Ansicht - Folienmaster</emph>. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie <emph>Ansicht - Normal</emph>, um den Folienmaster zu verlassen."
+msgstr "Um eine Masterfolie zu bearbeiten, wählen Sie <emph>Ansicht - Masterfolie</emph>. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie <emph>Ansicht - Normal</emph>, um die Masterfolie zu verlassen."
#. GPe9V
#: footer.xhp
@@ -1391,7 +1391,7 @@ msgctxt ""
"par_id5641651\n"
"help.text"
msgid "To edit a master notes, choose <emph>View - Master Notes</emph>. Click the Close Master View icon on the Master View toolbar, or choose <emph>View - Normal</emph>, to leave the master notes."
-msgstr "Um einen Notizenmaster zu bearbeiten, wählen Sie <emph>Ansicht - Notizenmaster</emph>. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie <emph>Ansicht - Normal</emph>, um den Notizenmaster zu verlassen."
+msgstr "Um eine Masternotiz zu bearbeiten, wählen Sie <emph>Ansicht - Masternotiz</emph>. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie <emph>Ansicht - Normal</emph>, um die Masternotiz zu verlassen."
#. aGtFB
#: footer.xhp
@@ -1400,7 +1400,7 @@ msgctxt ""
"par_id1583300\n"
"help.text"
msgid "To edit a master handout, click the Handout tab above the slide. Click the Normal tab to leave the master handout."
-msgstr "Um einen Handoutmaster zu bearbeiten, klicken Sie auf das Register Handout oberhalb der aktuellen Folie. Klicken Sie auf das Register Normal, um den Handoutmaster zu verlassen."
+msgstr "Um einen Masterhandzettel zu bearbeiten, klicken Sie auf das Register Handzettel oberhalb der aktuellen Folie. Klicken Sie auf das Register Normal, um den Masterhandzettel zu verlassen."
#. KqnDQ
#: footer.xhp
@@ -1436,7 +1436,7 @@ msgctxt ""
"par_id7549668\n"
"help.text"
msgid "A predefined Header Area is available only for notes and handouts. If you want a header on all slides, you can move the Footer Area on the master slide to the top."
-msgstr "Ein vordefinierter Kopfzeilenbereich ist nur für Notizen und Handouts verfügbar. Um auf allen Folien eine Kopfzeile zu erhalten, können Sie den Fußzeilenbereich zur Oberseite des Folienmasters verschieben."
+msgstr "Ein vordefinierter Kopfzeilenbereich ist nur für Notizen und Handzettel verfügbar. Um auf allen Folien eine Kopfzeile zu erhalten, können Sie den Fußzeilenbereich zur Oberseite der Masterfolie verschieben."
#. VCDtb
#: footer.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id1829889\n"
"help.text"
msgid "Objects that you insert on a master slide are visible on all slides that are based on that master slide."
-msgstr "Objekte, die Sie auf einen Folienmaster einfügen, sind auf allen Folien sichtbar, die auf diesem Folienmaster basieren."
+msgstr "Objekte, die Sie auf einer Masterfolie einfügen, sind auf allen Folien sichtbar, die auf dieser Masterfolie basieren."
#. Avxqn
#: footer.xhp
@@ -1463,7 +1463,7 @@ msgctxt ""
"par_id1876583\n"
"help.text"
msgid "You see a dialog with two tab pages: <emph>Slides</emph> and <emph>Notes and Handouts</emph> where you can enter contents to the predefined areas."
-msgstr "Sie sehen einen Dialog mit zwei Registern: <emph>Folie</emph> und <emph>Notizblätter und Handzettel</emph>, in denen Sie Inhalte zu den vordefinierten Bereichen hinzufügen können."
+msgstr "Sie sehen einen Dialog mit zwei Registern: <emph>Folie</emph> sowie <emph>Notizblätter und Handzettel</emph>, in denen Sie Inhalte zu den vordefinierten Bereichen hinzufügen können."
#. Rw82K
#: footer.xhp
@@ -1508,7 +1508,7 @@ msgctxt ""
"par_id1956236\n"
"help.text"
msgid "If you want to change the position and formatting of the master objects, choose <emph>View - Master</emph>."
-msgstr "Um die Position und Formatierung der Masterobjekte zu ändern, wählen Sie <emph>Ansicht - Folienmaster</emph>."
+msgstr "Um die Position und Formatierung der Masterobjekte zu ändern, wählen Sie <emph>Ansicht – Masterfolie</emph>."
#. M7H3u
#: footer.xhp
@@ -1517,7 +1517,7 @@ msgctxt ""
"par_id5259559\n"
"help.text"
msgid "You see the master slide with areas near the bottom. You can move the areas , and you can select the fields and apply some formatting. You can also enter some text here which will be shown next to the fields."
-msgstr "Sie sehen den Folienmaster mit Bereichen nahe des unteren Endes. Sie können die Bereiche verschieben und Sie können die Felder auswählen und einige Formatierungen darauf anwenden. Sie können hier auch Text eingeben, welcher nahe der Felder angezeigt werden wird."
+msgstr "Sie sehen die Masterfolie mit Bereichen nahe des unteren Endes. Sie können die Bereiche verschieben und Sie können die Felder auswählen und einige Formatierungen darauf anwenden. Sie können hier auch Text eingeben, welcher nahe der Felder angezeigt werden wird."
#. 4rmFa
#: footer.xhp
@@ -1553,7 +1553,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "You can add a text object anywhere on the master slide."
-msgstr "Sie haben die Möglichkeit, Textobjekte überall auf dem Folienmaster einzufügen."
+msgstr "Sie haben die Möglichkeit, Textobjekte überall auf der Masterfolie einzufügen."
#. DWS8F
#: footer.xhp
@@ -1562,7 +1562,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "Choose <emph>View - Master Slide</emph>."
-msgstr "Wählen Sie <emph>Ansicht - Folienmaster</emph>."
+msgstr "Wählen Sie <emph>Ansicht - Masterfolie</emph>."
#. ABnCF
#: footer.xhp
@@ -1580,7 +1580,7 @@ msgctxt ""
"par_id3149947\n"
"help.text"
msgid "Drag in the master slide to draw a text object, and then type or paste your text."
-msgstr "Ziehen Sie im Folienmaster ein Textobjekt auf, dann geben Sie Text ein oder fügen Sie ihn aus der Zwischenablage ein."
+msgstr "Ziehen Sie in der Masterfolie ein Textobjekt auf, dann geben Sie Text ein oder fügen Sie ihn aus der Zwischenablage ein."
#. b5czM
#: footer.xhp
@@ -3866,7 +3866,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Left-click to apply the master slide to all slides. Right-click for a context menu.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klicken Sie mit der linken Maustaste, um den Folienmaster auf alle Folien anzuwenden. Klicken Sie mit der rechten Maustaste, um ein Kontextmenü aufzurufen.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klicken Sie mit der linken Maustaste, um die Masterfolie auf alle Folien anzuwenden. Klicken Sie mit der rechten Maustaste, um ein Kontextmenü aufzurufen.</ahelp>"
#. ngDy7
#: masterpage.xhp
@@ -3875,7 +3875,7 @@ msgctxt ""
"par_idN10747\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master slide to all slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wendet den Folienmaster auf alle Folien an.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wendet die Masterfolie auf alle Folien an.</ahelp>"
#. sCVSn
#: masterpage.xhp
@@ -3884,7 +3884,7 @@ msgctxt ""
"par_idN10762\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies the master slide or the slide design to the selected slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wendet den Folienmaster oder die Folienvorlage auf die ausgewählten Folien an.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wendet die Masterfolie oder die Folienvorlage auf die ausgewählten Folien an.</ahelp>"
#. yYGFf
#: masterpage.xhp
@@ -3893,7 +3893,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the preview of the master slides.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Verändert die Größe der Vorschau des Folienmasters.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Verändert die Größe der Vorschau der Masterfolie.</ahelp>"
#. YyBf8
#: masterpage.xhp
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_id190820172252291668\n"
"help.text"
msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
-msgstr "Die Presenter Comsole stellt eine zusätzliche Kontrolle für die Präsentation zur Verfügung, indem verschiedene Ansichten auf dem Computerbildschirm und dem vorführenden Bildschirm dargestellt werden. Die Ansicht am Computerbildschirm zeigt die aktuelle und die folgende Folie sowie optional die Foliennotizen und eine Stoppuhr."
+msgstr "Die Presenter Console stellt eine zusätzliche Kontrolle für die Präsentation zur Verfügung, indem verschiedene Ansichten auf dem Computerbildschirm und dem vorführenden Bildschirm dargestellt werden. Die Ansicht am Computerbildschirm zeigt die aktuelle und die folgende Folie sowie optional die Foliennotizen und eine Stoppuhr."
#. wz2dB
#: presenter_console.xhp
@@ -4937,7 +4937,7 @@ msgctxt ""
"hd_id281512836182615\n"
"help.text"
msgid "Presenter Console Keyboard Shortcuts"
-msgstr "Presenter Console Tastenkombinationen"
+msgstr "Presenter Console-Tastenkombinationen"
#. a38t5
#: presenter_console.xhp
@@ -4946,7 +4946,7 @@ msgctxt ""
"hd_id791512827206666\n"
"help.text"
msgid "Presenter Console modes"
-msgstr "Presenter Console Modi"
+msgstr "Presenter Console-Modi"
#. yVhhn
#: presenter_console.xhp
@@ -5252,7 +5252,7 @@ msgctxt ""
"par_id6744285\n"
"help.text"
msgid "Click the Handout tab."
-msgstr "Klicken Sie auf das Register \"Handout\"."
+msgstr "Klicken Sie auf das Register \"Handzettel\"."
#. UQvRq
#: printing.xhp
@@ -5279,7 +5279,7 @@ msgctxt ""
"par_id5703909\n"
"help.text"
msgid "You see four areas on this dialog with check boxes for Header, Date and time, Footer, and Page number. These four areas correspond to the four areas in the corners of the master handout view."
-msgstr "Auf diesem Register befinden sich vier Bereiche mit Markierfeldern für \"Kopfzeile\", \"Datum und Uhrzeit\", \"Fußzeile\" und \"Seitenzahl\". Diese vier Bereiche entsprechen den vier Bereichen in den Ecken der Ansicht Handzettelmaster."
+msgstr "Auf diesem Register befinden sich vier Bereiche mit Markierfeldern für \"Kopfzeile\", \"Datum und Uhrzeit\", \"Fußzeile\" und \"Seitenzahl\". Diese vier Bereiche entsprechen den vier Bereichen in den Ecken der Ansicht Masterhandzettel."
#. VaD3B
#: printing.xhp
@@ -5306,7 +5306,7 @@ msgctxt ""
"par_id863063\n"
"help.text"
msgid "The fields in the master handout view on screen are not updated, but the text that you entered will be printed."
-msgstr "Die Felder in der Ansicht Handzettelmaster auf dem Bildschirm werden nicht aktualisiert, aber der von Ihnen eingegebene Text wird gedruckt."
+msgstr "Die Felder in der Ansicht Masterhandzettel auf dem Bildschirm werden nicht aktualisiert, aber der von Ihnen eingegebene Text wird gedruckt."
#. YHUmc
#: printing.xhp
diff --git a/source/de/helpcontent2/source/text/smath/00.po b/source/de/helpcontent2/source/text/smath/00.po
index 3df7bafd079..3c4d0ab041c 100644
--- a/source/de/helpcontent2/source/text/smath/00.po
+++ b/source/de/helpcontent2/source/text/smath/00.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-05-25 18:07+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath00/de/>\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsmath00/de/>\n"
"Language: de\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 3.10.3\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1552452987.000000\n"
#. E9tti
@@ -104,7 +104,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "Shift+F3"
-msgstr "Umschalttaste+F3"
+msgstr "Umschalt+F3"
#. A2tmE
#: 00000004.xhp
diff --git a/source/de/helpcontent2/source/text/smath/01.po b/source/de/helpcontent2/source/text/smath/01.po
index 5161cc006e3..00fafc571d5 100644
--- a/source/de/helpcontent2/source/text/smath/01.po
+++ b/source/de/helpcontent2/source/text/smath/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -7169,7 +7169,7 @@ msgctxt ""
"par_id3903317\n"
"help.text"
msgid "No symbol."
-msgstr "Kein Symol"
+msgstr "Kein Symbol"
#. psyQg
#: 03091501.xhp
@@ -10616,7 +10616,7 @@ msgctxt ""
"par_id3182210\n"
"help.text"
msgid "<image id=\"img_id3182216\" src=\"media/helpimg/starmath/al21810.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182216\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182216\" src=\"media/helpimg/starmath/al21810.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182216\">Symbol für skalierbare eckige Klammern</alt></image>"
#. Ed5xr
#: 03091508.xhp
@@ -10634,7 +10634,7 @@ msgctxt ""
"par_id3182332\n"
"help.text"
msgid "<image id=\"img_id3182339\" src=\"media/helpimg/starmath/al21824.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182339\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182339\" src=\"media/helpimg/starmath/al21824.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182339\">Symbol für skalierbare doppelte eckige Klammern</alt></image>"
#. x9DpW
#: 03091508.xhp
@@ -10652,7 +10652,7 @@ msgctxt ""
"par_id3182456\n"
"help.text"
msgid "<image id=\"img_id3182463\" src=\"media/helpimg/starmath/al21812.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182463\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182463\" src=\"media/helpimg/starmath/al21812.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182463\">Symbol für skalierbare geschweifte Klammern</alt></image>"
#. QXXDx
#: 03091508.xhp
@@ -10670,7 +10670,7 @@ msgctxt ""
"par_id3182579\n"
"help.text"
msgid "<image id=\"img_id3182586\" src=\"media/helpimg/starmath/al21813.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182586\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182586\" src=\"media/helpimg/starmath/al21813.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182586\">Symbol für skalierbare senkrechte Linien</alt></image>"
#. m2ghA
#: 03091508.xhp
@@ -10688,7 +10688,7 @@ msgctxt ""
"par_id3182702\n"
"help.text"
msgid "<image id=\"img_id3182709\" src=\"media/helpimg/starmath/al21814.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182709\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182709\" src=\"media/helpimg/starmath/al21814.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182709\">Symbol für skalierbare doppelte senkrechte Linien</alt></image>"
#. CJD5Q
#: 03091508.xhp
@@ -10706,7 +10706,7 @@ msgctxt ""
"par_id3182825\n"
"help.text"
msgid "<image id=\"img_id3182832\" src=\"media/helpimg/starmath/al21811.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182832\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182832\" src=\"media/helpimg/starmath/al21811.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182832\">Symbol für skalierbare spitze Klammern</alt></image>"
#. BLH52
#: 03091508.xhp
@@ -10724,7 +10724,7 @@ msgctxt ""
"par_id3182948\n"
"help.text"
msgid "<image id=\"img_id3182955\" src=\"media/helpimg/starmath/al21822.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182955\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3182955\" src=\"media/helpimg/starmath/al21822.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3182955\">Symbol für skalierbare Operatorklammern</alt></image>"
#. aaku8
#: 03091508.xhp
@@ -10742,7 +10742,7 @@ msgctxt ""
"par_id3183072\n"
"help.text"
msgid "<image id=\"img_id3183078\" src=\"media/helpimg/starmath/al21825.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183078\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183078\" src=\"media/helpimg/starmath/al21825.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183078\">Symbol für skalierbare geschweifte Klammer oberhalb</alt></image>"
#. F2Ydk
#: 03091508.xhp
@@ -10760,7 +10760,7 @@ msgctxt ""
"par_id3183223\n"
"help.text"
msgid "<image id=\"img_id3183230\" src=\"media/helpimg/starmath/al21826.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183230\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183230\" src=\"media/helpimg/starmath/al21826.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3183230\">Symbol für skalierbare geschweifte Klammer unterhalb</alt></image>"
#. LfbHS
#: 03091508.xhp
@@ -10796,7 +10796,7 @@ msgctxt ""
"par_idN12F9F\n"
"help.text"
msgid "<literal>\\lbrace \\rbrace</literal> or <literal>\\{ \\}</literal>"
-msgstr ""
+msgstr "<literal>\\lbrace \\rbrace</literal> oder <literal>\\{ \\}</literal>"
#. CWCoh
#: 03091508.xhp
@@ -10877,7 +10877,7 @@ msgctxt ""
"par_id3985717\n"
"help.text"
msgid "<literal>none</literal>"
-msgstr ""
+msgstr "<literal>none</literal>"
#. AcuvC
#: 03091508.xhp
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id1778008\n"
"help.text"
msgid "Qualifier to suppress one bracket, as in <literal>right none </literal>"
-msgstr ""
+msgstr "Ausdruck zum Unterdrücken einer Klammer, wie in <literal>right none </literal>"
#. BvLcE
#: 03091509.xhp
@@ -10949,7 +10949,7 @@ msgctxt ""
"par_id3184418\n"
"help.text"
msgid "<image id=\"img_id3184425\" src=\"media/helpimg/starmath/co21916.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184425\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184425\" src=\"media/helpimg/starmath/co21916.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184425\">Symbol für linken Exponent</alt></image>"
#. TUwug
#: 03091509.xhp
@@ -10967,7 +10967,7 @@ msgctxt ""
"par_id3184566\n"
"help.text"
msgid "<image id=\"img_id3184572\" src=\"media/helpimg/starmath/co21918.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184572\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184572\" src=\"media/helpimg/starmath/co21918.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184572\">Symbol für Exponent direkt über einem Zeichen</alt></image>"
#. gDQSk
#: 03091509.xhp
@@ -10985,7 +10985,7 @@ msgctxt ""
"par_idN13117\n"
"help.text"
msgid "<literal>^</literal> or <literal>sup</literal> or <literal>rsup</literal>"
-msgstr ""
+msgstr "<literal>^</literal>, <literal>sup</literal> oder <literal>rsup</literal>"
#. v7vQv
#: 03091509.xhp
@@ -10994,7 +10994,7 @@ msgctxt ""
"par_id3184717\n"
"help.text"
msgid "<image id=\"img_id3184724\" src=\"media/helpimg/starmath/co21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184724\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184724\" src=\"media/helpimg/starmath/co21908.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184724\">Symbol für rechten Exponent</alt></image>"
#. EpL9g
#: 03091509.xhp
@@ -11012,7 +11012,7 @@ msgctxt ""
"par_id3184864\n"
"help.text"
msgid "<image id=\"img_id3184871\" src=\"media/helpimg/starmath/co21905.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184871\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3184871\" src=\"media/helpimg/starmath/co21905.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3184871\">Symbol für Binom</alt></image>"
#. CADG7
#: 03091509.xhp
@@ -11030,7 +11030,7 @@ msgctxt ""
"par_id3185011\n"
"help.text"
msgid "<image id=\"img_id3185018\" src=\"media/helpimg/starmath/co21901.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185018\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185018\" src=\"media/helpimg/starmath/co21901.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185018\">Symbol für neue Zeile</alt></image>"
#. HVyHD
#: 03091509.xhp
@@ -11048,7 +11048,7 @@ msgctxt ""
"par_id3185119\n"
"help.text"
msgid "<image id=\"img_id3185126\" src=\"media/helpimg/starmath/co21912.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185126\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185126\" src=\"media/helpimg/starmath/co21912.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185126\">Symbol für linken Index</alt></image>"
#. tTC3y
#: 03091509.xhp
@@ -11066,7 +11066,7 @@ msgctxt ""
"par_id3185267\n"
"help.text"
msgid "<image id=\"img_id3185274\" src=\"media/helpimg/starmath/co21917.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185274\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185274\" src=\"media/helpimg/starmath/co21917.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185274\">Symbol für Index direkt unter einem Zeichen</alt></image>"
#. BD3nT
#: 03091509.xhp
@@ -11084,7 +11084,7 @@ msgctxt ""
"par_idN1322D\n"
"help.text"
msgid "<literal>_</literal> or <literal>sub</literal> or <literal>rsub</literal>"
-msgstr ""
+msgstr "<literal>_</literal>, <literal>sub</literal> oder <literal>rsub</literal>"
#. DNiot
#: 03091509.xhp
@@ -11093,7 +11093,7 @@ msgctxt ""
"par_id3185418\n"
"help.text"
msgid "<image id=\"img_id3185425\" src=\"media/helpimg/starmath/co21904.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185425\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185425\" src=\"media/helpimg/starmath/co21904.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185425\">Symbol für rechten Index</alt></image>"
#. CBuyC
#: 03091509.xhp
@@ -11111,7 +11111,7 @@ msgctxt ""
"par_id3185566\n"
"help.text"
msgid "<image id=\"img_id3185573\" src=\"media/helpimg/starmath/co21906.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185573\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185573\" src=\"media/helpimg/starmath/co21906.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185573\">Symbol für Stapel</alt></image>"
#. Gteev
#: 03091509.xhp
@@ -11129,7 +11129,7 @@ msgctxt ""
"par_id3185714\n"
"help.text"
msgid "<image id=\"img_id3185721\" src=\"media/helpimg/starmath/co21902.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185721\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185721\" src=\"media/helpimg/starmath/co21902.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185721\">Symbol für kleinen Zwischenraum</alt></image>"
#. GMFhD
#: 03091509.xhp
@@ -11147,7 +11147,7 @@ msgctxt ""
"par_id3185823\n"
"help.text"
msgid "<image id=\"img_id3185829\" src=\"media/helpimg/starmath/co21909.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185829\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185829\" src=\"media/helpimg/starmath/co21909.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185829\">Symbol für linke Ausrichtung</alt></image>"
#. z4vsC
#: 03091509.xhp
@@ -11165,7 +11165,7 @@ msgctxt ""
"par_id3185931\n"
"help.text"
msgid "<image id=\"img_id3185937\" src=\"media/helpimg/starmath/co21910.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185937\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3185937\" src=\"media/helpimg/starmath/co21910.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3185937\">Symbol für zentrierte Ausrichtung</alt></image>"
#. tTBJA
#: 03091509.xhp
@@ -11183,7 +11183,7 @@ msgctxt ""
"par_id3186039\n"
"help.text"
msgid "<image id=\"img_id3186046\" src=\"media/helpimg/starmath/co21911.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3186046\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3186046\" src=\"media/helpimg/starmath/co21911.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3186046\">Symbol für rechte Ausrichtung</alt></image>"
#. vxXXF
#: 03091509.xhp
@@ -11201,7 +11201,7 @@ msgctxt ""
"par_id3186147\n"
"help.text"
msgid "<image id=\"img_id3186154\" src=\"media/helpimg/starmath/co21907.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3186154\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3186154\" src=\"media/helpimg/starmath/co21907.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3186154\">Symbol für Matrix</alt></image>"
#. FsB3E
#: 03091509.xhp
@@ -11219,7 +11219,7 @@ msgctxt ""
"par_id3186295\n"
"help.text"
msgid "<image id=\"img_id3186302\" src=\"media/helpimg/starmath/co21903.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3186302\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3186302\" src=\"media/helpimg/starmath/co21903.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3186302\">Symbol für großen Zwischenraum</alt></image>"
#. CEanK
#: 03091509.xhp
@@ -13577,7 +13577,7 @@ msgctxt ""
"par_id3145295\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/symdefinedialog/fontsSubsetLB\">If you selected a non-symbol font in the <emph>Font</emph> list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/fontsSubsetLB\">Wenn die Schriftart, die Sie im Listenfeld <emph>Schriftart</emph> gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in den das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/fontsSubsetLB\">Wenn die Schriftart, die Sie im Listenfeld <emph>Schriftart</emph> gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in die das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt.</ahelp>"
#. kdGeM
#: 06010100.xhp
@@ -13802,7 +13802,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Chemical Formulas"
-msgstr ""
+msgstr "Chemische Formeln"
#. j2CrZ
#: chemical.xhp
@@ -13811,7 +13811,7 @@ msgctxt ""
"bm_id241584201850390\n"
"help.text"
msgid "<bookmark_value>chemical formula</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Chemische Formel</bookmark_value>"
#. cmCqg
#: chemical.xhp
@@ -13820,7 +13820,7 @@ msgctxt ""
"hd_id951584200892379\n"
"help.text"
msgid "<variable id=\"chemicalh1\"><link href=\"text/smath/01/chemical.xhp\" name=\"Chemical Formulas\">Chemical Formulas Examples</link></variable>"
-msgstr ""
+msgstr "<variable id=\"chemicalh1\"><link href=\"text/smath/01/chemical.xhp\" name=\"Chemical Formulas\">Beispiele für chemische Formeln</link></variable>"
#. Uo7jh
#: chemical.xhp
@@ -13829,7 +13829,7 @@ msgctxt ""
"par_id111584200892379\n"
"help.text"
msgid "The primary purpose of %PRODUCTNAME Math is to create mathematical formulas, but it can also be used to write chemical formulas. However, in chemical formulas, the chemical symbols are normally written in uppercase using upright, rather than italic, characters."
-msgstr ""
+msgstr "Das Haupteinsatzgebiet von %PRODUCTNAME Math ist das Erstellen mathematischer Formeln, es kann jedoch auch zum Schreiben chemischer Formeln verwendet werden. In chemischen Formeln werden die chemischen Symbole jedoch normalerweise in Großbuchstaben mit aufrechten statt kursiven Zeichen geschrieben."
#. CLnAG
#: chemical.xhp
@@ -13838,7 +13838,7 @@ msgctxt ""
"par_id61584210063479\n"
"help.text"
msgid "To create chemical formulas using Math, you may want to change the font used for variables to a non-italic font, or use the <literal>nitalic</literal> modifier."
-msgstr ""
+msgstr "Um chemische Formeln mit Math zu erstellen, können Sie die für Variablen verwendete Schriftart in eine nicht kursive Schriftart ändern oder den Modifikator <literal>nitalic</literal> verwenden."
#. LHaDo
#: chemical.xhp
@@ -13847,7 +13847,7 @@ msgctxt ""
"hd_id681584201309050\n"
"help.text"
msgid "Molecules"
-msgstr ""
+msgstr "Moleküle"
#. Fhyg6
#: chemical.xhp
@@ -13856,7 +13856,7 @@ msgctxt ""
"hd_id801584201314869\n"
"help.text"
msgid "Isotopes"
-msgstr ""
+msgstr "Isotopen"
#. 5Jmw8
#: chemical.xhp
@@ -13865,7 +13865,7 @@ msgctxt ""
"par_id981584282254171\n"
"help.text"
msgid "<input>nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma} ~~binom{{size 6{{%beta}-{}}}} {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size 6{{%beta}-{}}}}{toward}~~ Pu lsup 239 lsub 94}</input>"
-msgstr ""
+msgstr "<input>nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma} ~~binom{{size 6{{%beta}-{}}}} {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size 6{{%beta}-{}}}}{toward}~~ Pu lsup 239 lsub 94}</input>"
#. f9BiV
#: chemical.xhp
@@ -13874,7 +13874,7 @@ msgctxt ""
"hd_id921584201320412\n"
"help.text"
msgid "Ions"
-msgstr ""
+msgstr "Ionen"
#. CfSpa
#: chemical.xhp
@@ -13883,4 +13883,4 @@ msgctxt ""
"par_id921584201737219\n"
"help.text"
msgid "<input>SO_4^{2-{}}</input> or <input>SO_4^{2\"-\"}</input>"
-msgstr ""
+msgstr "<input>SO_4^{2-{}}</input> oder <input>SO_4^{2\"-\"}</input>"
diff --git a/source/de/helpcontent2/source/text/smath/guide.po b/source/de/helpcontent2/source/text/smath/guide.po
index 3bce69fb194..54f0dd29b41 100644
--- a/source/de/helpcontent2/source/text/smath/guide.po
+++ b/source/de/helpcontent2/source/text/smath/guide.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-07-25 05:43+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsmathguide/de/>\n"
"Language: de\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.2\n"
"X-POOTLE-MTIME: 1532497407.000000\n"
+#. P9FEQ
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -24,6 +25,7 @@ msgctxt ""
msgid "Manually Aligning Formula Parts"
msgstr "Formelteile manuell ausrichten"
+#. Dc94G
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -32,6 +34,7 @@ msgctxt ""
msgid "<bookmark_value>aligning; characters in %PRODUCTNAME Math</bookmark_value><bookmark_value>formula parts; manually aligning</bookmark_value>"
msgstr "<bookmark_value>Ausrichten; Zeichen in %PRODUCTNAME Math</bookmark_value><bookmark_value>Formelteile; manuell ausrichten</bookmark_value>"
+#. 5ENLq
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -40,6 +43,7 @@ msgctxt ""
msgid "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Manually Aligning Formula Parts\">Manually Aligning Formula Parts</link></variable>"
msgstr "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Formelteile manuell ausrichten\">Formelteile manuell ausrichten</link></variable>"
+#. eUZmq
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -48,6 +52,7 @@ msgctxt ""
msgid "How do you align characters in $[officename] Math quickly and easily?"
msgstr "Wie können Zeichen in $[officename] Math ausgerichtet werden?"
+#. EJ2GY
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -56,6 +61,7 @@ msgctxt ""
msgid "To accomplish this, you must define empty groups and character strings. They do not require any space, but carry information that helps in the alignment process."
msgstr "Nutzen Sie dazu die Möglichkeit, leere Gruppen und Zeichenketten zu definieren. Sie benötigen keinen Raum, tragen aber Informationen, die bei der Ausrichtung helfen."
+#. BLcvk
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -64,6 +70,7 @@ msgctxt ""
msgid "To create empty groups, enter curly brackets <emph>{}</emph> in the Commands window. In the following example, the goal is to achieve a line break so that the plus signs are beneath one another, even though one less character is entered in the upper line:"
msgstr "Um leere Gruppen zu erzeugen, geben Sie im Kommandofenster geschweifte Klammern <emph>{}</emph> ein. Im folgenden Beispiel soll ein Zeilenumbruch erreicht werden, bei dem die Pluszeichen untereinander stehen, obwohl in der oberen Zeile ein Zeichen weniger eingegeben wird:"
+#. wDfhJ
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -72,6 +79,7 @@ msgctxt ""
msgid "Empty character strings are a simple way to ensure that texts and formulas are left-aligned. They are defined using double inverted commas \"\" . Make sure you do not use any typographic inverted commas. Example:"
msgstr "Leere Zeichenketten sind ein einfaches Mittel, Texte und Formeln linksbündig beginnen zu lassen. Sie werden durch doppelte Anführungszeichen \"\" festgelegt. Verwenden Sie keine typografischen Anführungszeichen. Beispiel:"
+#. C6Ky9
#: align.xhp
msgctxt ""
"align.xhp\n"
@@ -80,6 +88,7 @@ msgctxt ""
msgid "\"A further example.\" newline a+b newline \"\"c-d"
msgstr "\"Ein weiteres Beispiel.\" newline a+b newline \"\" c-d"
+#. WA2Pc
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -88,6 +97,7 @@ msgctxt ""
msgid "Changing Default Attributes"
msgstr "Standardattribute ändern"
+#. 4DrY6
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -96,6 +106,7 @@ msgctxt ""
msgid "<bookmark_value>attributes; changing in $[officename] Math</bookmark_value><bookmark_value>font attributes;changing defaults</bookmark_value><bookmark_value>formatting;changing default attributes</bookmark_value><bookmark_value>defaults;changing default formatting</bookmark_value><bookmark_value>changing;default formatting</bookmark_value>"
msgstr "<bookmark_value>Attribute; in $[officename] Math ändern</bookmark_value><bookmark_value>Schriftattribute; Vorgaben ändern</bookmark_value><bookmark_value>Formatierung; Vorgabeattribute ändern</bookmark_value><bookmark_value>Vorgaben; Vorgabeformatierung ändern</bookmark_value><bookmark_value>Ändern; Vorgabeformatierung</bookmark_value>"
+#. WndEQ
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -104,6 +115,7 @@ msgctxt ""
msgid "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Changing Default Attributes\">Changing Default Attributes</link></variable>"
msgstr "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Standardattribute ändern\">Standardattribute ändern</link></variable>"
+#. gAHnh
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -112,6 +124,7 @@ msgctxt ""
msgid "Can default formats in $[officename] Math be modified?"
msgstr "Können standardmäßige Formatierungen in $[officename] Math geändert werden?"
+#. k9ADA
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -120,6 +133,7 @@ msgctxt ""
msgid "Some parts of formulas are always formatted bold or italic by default."
msgstr "Einige Formelbestandteile sind immer fett oder kursiv formatiert."
+#. 7A7Vi
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -128,6 +142,7 @@ msgctxt ""
msgid "You can remove these attributes using \"nbold\" and \"nitalic\". Example:"
msgstr "Sie können diese Attribute mit den Befehlen \"nbold\" und \"nitalic\" entfernen. Beispiel:"
+#. MCJxc
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
@@ -136,6 +151,7 @@ msgctxt ""
msgid "In the second formula, the a is not italic. The b is bold. You cannot change the plus sign by this method."
msgstr "In der zweiten Formel wird das a nicht kursiv dargestellt. Das b erhält das Attribut fett. Das Pluszeichen ist auf diese Weise nicht veränderbar."
+#. oPuAE
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -144,6 +160,7 @@ msgctxt ""
msgid "Merging Formula Parts in Brackets"
msgstr "Formelteile in Klammern zusammenfassen"
+#. bDPkX
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -152,6 +169,7 @@ msgctxt ""
msgid "<bookmark_value>brackets; merging formula parts</bookmark_value><bookmark_value>formula parts; merging</bookmark_value><bookmark_value>fractions in formulas</bookmark_value><bookmark_value>merging;formula parts</bookmark_value>"
msgstr "<bookmark_value>Klammern; Formelteile zusammenfassen</bookmark_value><bookmark_value>Formelteile; zusammenfassen</bookmark_value><bookmark_value>Brüche in Formeln</bookmark_value><bookmark_value>Zusammenfassen; Formelteile</bookmark_value>"
+#. J7BeM
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -160,6 +178,7 @@ msgctxt ""
msgid "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Merging Formula Parts in Brackets\">Merging Formula Parts in Brackets</link></variable>"
msgstr "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Formelteile in Klammern zusammenfassen\">Formelteile in Klammern zusammenfassen</link></variable>"
+#. z6zop
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -168,6 +187,7 @@ msgctxt ""
msgid "Inserting fractions into formulas"
msgstr "So können Brüche in eine Formel eingegeben werden"
+#. jPtfJ
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -176,6 +196,7 @@ msgctxt ""
msgid "In the case of a fraction whose numerator and denominator consist of a product, a sum, and so on, the values that belong together must be bracketed together."
msgstr "Für einen Bruch, dessen Zähler oder Nenner aus einem Produkt, einer Summe oder ähnlichem besteht, müssen die zusammengehörigen Werte mit einer Klammer zusammengefasst werden."
+#. 4bWFt
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -184,6 +205,7 @@ msgctxt ""
msgid "Use the following syntax:"
msgstr "Verwenden Sie folgende Schreibweise:"
+#. FX6mw
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
@@ -192,6 +214,7 @@ msgctxt ""
msgid "or"
msgstr "oder"
+#. 3UYoM
#: comment.xhp
msgctxt ""
"comment.xhp\n"
@@ -200,6 +223,7 @@ msgctxt ""
msgid "Entering Comments"
msgstr "Kommentar eingeben"
+#. EpAyX
#: comment.xhp
msgctxt ""
"comment.xhp\n"
@@ -208,6 +232,7 @@ msgctxt ""
msgid "<bookmark_value>comments; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;comments in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>Kommentare; in $[officename] Math eingeben</bookmark_value><bookmark_value>Einfügen; Kommentare in $[officename] Math</bookmark_value>"
+#. RB5xU
#: comment.xhp
msgctxt ""
"comment.xhp\n"
@@ -216,6 +241,7 @@ msgctxt ""
msgid "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Entering Comments\">Entering Comments</link></variable>"
msgstr "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Kommentar eingeben\">Kommentar eingeben</link></variable>"
+#. CA8hE
#: comment.xhp
msgctxt ""
"comment.xhp\n"
@@ -224,14 +250,16 @@ msgctxt ""
msgid "How does one attach comments that don't appear in the document to a formula?"
msgstr "Wie lässt sich eine Formel mit nicht im Dokument erscheinenden Kommentaren versehen?"
+#. sj3Gt
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"par_id3149499\n"
"help.text"
msgid "A comment begins with a double percent sign <emph>%%</emph>, and extends to the next line-end character (Enter key). Everything that lies in between is ignored and is not printed out. If there are percent signs in the text, they are treated as part of the text."
-msgstr "Ein Kommentar beginnt mit doppelten Prozentzeichen <emph>%%</emph> und geht bis zum nächsten Zeilenendzeichen (Eingabetaste). Alles, was dazwischen steht, wird ignoriert und führt zu keiner Ausgabe. Befinden sich Prozentzeichen im Text, werden diese als Textbestandteil behandelt."
+msgstr "Ein Kommentar beginnt mit doppelten Prozentzeichen <emph>%%</emph> und geht bis zum nächsten Zeilenendezeichen (Eingabetaste). Alles, was dazwischen steht, wird ignoriert und führt zu keiner Ausgabe. Befinden sich Prozentzeichen im Text, werden diese als Textbestandteil behandelt."
+#. 27yBP
#: comment.xhp
msgctxt ""
"comment.xhp\n"
@@ -240,6 +268,7 @@ msgctxt ""
msgid "Example:"
msgstr "Beispiel:"
+#. CMAYs
#: comment.xhp
msgctxt ""
"comment.xhp\n"
@@ -248,6 +277,7 @@ msgctxt ""
msgid "a^2+b^2=c^2 %% Pythagorean theorem."
msgstr "a^2+b^2=c^2 %% Der Satz des Pythagoras."
+#. PZSB7
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -256,6 +286,7 @@ msgctxt ""
msgid "Shortcuts ($[officename] Math Accessibility)"
msgstr "Tastatursteuerung ($[officename] Math Barrierefreiheit)"
+#. rsGdv
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -264,6 +295,7 @@ msgctxt ""
msgid "<bookmark_value>accessibility; $[officename] Math shortcuts</bookmark_value>"
msgstr "<bookmark_value>Barrierefreiheit; Tastenkombinationen in $[officename] Math</bookmark_value>"
+#. 4zHFd
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -272,6 +304,7 @@ msgctxt ""
msgid "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Shortcuts ($[officename] Math Accessibility)\">Shortcuts ($[officename] Math Accessibility)</link></variable>"
msgstr "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Tastatursteuerung ($[officename] Math Barrierefreiheit)\">Tastatursteuerung ($[officename] Math Barrierefreiheit)</link></variable>"
+#. ZkpGA
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -280,6 +313,7 @@ msgctxt ""
msgid "You can control $[officename] Math without a mouse."
msgstr "Auch ohne Maus können Sie $[officename] Math steuern."
+#. dNEFC
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -288,6 +322,7 @@ msgctxt ""
msgid "Inserting a Formula Directly"
msgstr "Direktes Einfügen der Formel"
+#. 3ztDF
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -296,6 +331,7 @@ msgctxt ""
msgid "If you want to insert a formula into a text document, and you already know the correct writing, you can proceed as follows:"
msgstr "Um in ein Textdokument eine Formel einzufügen, deren Syntax Sie bereits kennen, ist dies auch folgendermaßen möglich:"
+#. qoVM4
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -304,6 +340,7 @@ msgctxt ""
msgid "Write the formula into your text"
msgstr "Schreiben Sie die Formel in den Text"
+#. dmJc9
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -312,6 +349,7 @@ msgctxt ""
msgid "Select the formula"
msgstr "Markieren Sie die Formel"
+#. bN6uQ
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -320,6 +358,7 @@ msgctxt ""
msgid "Choose the command <emph>Insert - Object - Formula</emph>."
msgstr "Rufen Sie den Befehl <emph>Einfügen - Objekt - Formel</emph> auf."
+#. aowxC
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -328,6 +367,7 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "Einfügen mit Fenster-Steuerung"
+#. Tqx4F
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -336,6 +376,7 @@ msgctxt ""
msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
msgstr "Um die Oberfläche von $[officename] Math zum Zusammenstellen der Formel zu nutzen, rufen Sie den Befehl <emph>Einfügen - Objekt - Formel...</emph> auf, ohne dass Text markiert ist."
+#. sEBBM
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -344,6 +385,7 @@ msgctxt ""
msgid "The cursor waits in the Commands window and you can type the formula."
msgstr "Der Cursor steht im Kommandofenster und Sie können mit der Eingabe beginnen."
+#. rvzhp
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -352,6 +394,7 @@ msgctxt ""
msgid "You can compose formulas using the Elements pane. Open it with the menu <emph>View - Elements</emph> if it is not already open."
msgstr "Viele Formeln können Sie über die Seitenleiste zusammenstellen. Öffnen Sie sie gegebenenfalls über <emph>Ansicht - Seitenleiste</emph>."
+#. tfpCC
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -360,6 +403,7 @@ msgctxt ""
msgid "If the Elements pane is open, use F6 to switch from the Commands window to the Elements pane and back."
msgstr "Wenn die Seitenleiste geöffnet ist, wechseln Sie mit der Taste F6 zwischen dieser und dem Fenster Kommandos."
+#. PxwLi
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
@@ -368,6 +412,7 @@ msgctxt ""
msgid "Elements pane"
msgstr "Seitenleiste"
+#. iKfcF
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -376,6 +421,7 @@ msgctxt ""
msgid "Working with Limits"
msgstr "Arbeiten mit Grenzen"
+#. 6WSEC
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -384,6 +430,7 @@ msgctxt ""
msgid "<bookmark_value>limits;in sums/integrals</bookmark_value><bookmark_value>integral limits</bookmark_value>"
msgstr "<bookmark_value>Grenzen; in Summen/Integralen</bookmark_value><bookmark_value>Integralgrenzen</bookmark_value>"
+#. jCWYY
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -392,6 +439,7 @@ msgctxt ""
msgid "<variable id=\"limits\"><link href=\"text/smath/guide/limits.xhp\">Working with Limits</link></variable>"
msgstr "<variable id=\"limits\"><link href=\"text/smath/guide/limits.xhp\">Mit Grenzen arbeiten</link></variable>"
+#. Gtt8e
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -400,6 +448,7 @@ msgctxt ""
msgid "How can I define the limits in a Sum or Integral formula?"
msgstr "Wie kann ich Grenzen in einer Summen- oder Integralformel definieren?"
+#. kFrLC
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -408,6 +457,7 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "Sie möchten eine Summierungsformel wie \"Summieren von s^k für k = 0 bis n\" an der Cursorposition in einem Writer Textdokument einfügen."
+#. 5oKcr
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -416,6 +466,7 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
msgstr "Wählen Sie <item type=\"menuitem\">Einfügen - Objekt - Formel</item>."
+#. qAFch
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -424,6 +475,7 @@ msgctxt ""
msgid "You see the Math input window and the Elements pane on the left."
msgstr "Sie sehen das Eingabefenster von Math und die Seitenleiste links."
+#. DZW2c
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -432,6 +484,7 @@ msgctxt ""
msgid "From the list on the upper part of the Elements pane, select the <emph>Operators</emph> item."
msgstr "Wählen Sie aus der Liste im oberen Teil der Seitenleiste den Eintrag <emph>Operatoren</emph>."
+#. r8sVG
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -440,6 +493,7 @@ msgctxt ""
msgid "In the lower part of the Elements pane, click the <emph>Sum</emph> icon."
msgstr "Klicken Sie im unteren Teil der Seitenleiste auf das Symbol <emph>Summe</emph>."
+#. erGA9
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -448,6 +502,7 @@ msgctxt ""
msgid "To enable lower and upper limits, click additionally the <emph>Upper and Lower Limits</emph> icon."
msgstr "Um untere und obere Grenzen zu ermöglichen, klicken Sie zusätzlich auf das Symbol<emph>obere und untere Grenze</emph>."
+#. YxM8C
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -456,6 +511,7 @@ msgctxt ""
msgid "In the input window, the first placeholder or marker is selected, and you can start to enter the lower limit:"
msgstr "Im Eingabefenster wird der erste Platzhalter beziehungsweise die erste Markierung ausgewählt und Sie können mit der Eingabe der unteren Grenze beginnen:"
+#. szLNG
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -464,6 +520,7 @@ msgctxt ""
msgid "Press F4 to advance to the next marker, and enter the upper limit:"
msgstr "Drücken Sie F4, um zur nächsten Markierung zu gelangen und geben Sie die obere Grenze ein:"
+#. Wh4vB
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -472,6 +529,7 @@ msgctxt ""
msgid "Press F4 to advance to the next marker, and enter the summand:"
msgstr "Drücken Sie F4, um zur nächsten Markierung zu gelangen und geben den Summanden ein:"
+#. dJvvn
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -480,6 +538,7 @@ msgctxt ""
msgid "Now the formula is complete. Click into your text document outside the formula to leave the formula editor."
msgstr "Jetzt ist die Formel komplett. Klicken Sie in Ihrem Textdokument außerhalb der Formel, um den Formeleditor zu verlassen."
+#. bFFkA
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -488,6 +547,7 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr "Auf die gleiche Art können Sie eine Integralformel mit Grenzen eingeben. Wenn Sie auf das Zeichen der Seitenleiste klicken, wird der zugeordnete Textbefehl in das Fenster Kommandos eingefügt. Falls Sie die Textbefehle kennen, können Sie sie direkt in das Fenster Kommandos eingeben."
+#. q8yAH
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -496,6 +556,7 @@ msgctxt ""
msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
msgstr "Wählen Sie <item type=\"menuitem\">Einfügen - Objekt - Formel</item>."
+#. VAoyi
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -504,6 +565,7 @@ msgctxt ""
msgid "Click in the input window and enter the following line:"
msgstr "Klicken Sie in das Eingabefenster und geben die folgende Zeile ein:"
+#. 7rRJW
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -512,6 +574,7 @@ msgctxt ""
msgid "A small gap exists between f(x) and dx, which you can also enter using the Elements pane: select the <emph>Formats</emph> item from the list on the top, then the <emph>Small Gap</emph> icon."
msgstr "Es existiert eine schmale Lücke zwischen f(x) und dx, welche Sie auch über die Seitenleiste eingeben können: Wählen Sie den Eintrag <emph>Formatierungen</emph> aus der Liste oben, dann das Symbol für <emph>Schmaler Freiraum</emph>."
+#. FSWqq
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -520,6 +583,7 @@ msgctxt ""
msgid "If you don't like the font of the letters f and x, choose <item type=\"menuitem\">Format - Fonts</item> and select other fonts. Click the <emph>Default</emph> button to use the new fonts as default from now on."
msgstr "Falls Sie die Schriftart der Buchstaben f und x nicht mögen, wählen Sie <item type=\"menuitem\">Format - Schriftarten...</item> und wählen andere Schriftarten. Klicken Sie auf die Schaltfläche <emph>Standard</emph>, um die neuen Schriftarten als Standard zu benutzen."
+#. KBUXj
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -528,6 +592,7 @@ msgctxt ""
msgid "If you need the formula within a line of text, the limits increase the line height. You can choose <item type=\"menuitem\">Format - Text Mode</item> to place the limits besides the Sum or Integral symbol, which reduces the line height."
msgstr "Falls Sie die Formel innerhalb einer Textzeile benötigen, erhöhen die Grenzen die Zeilenhöhe. Sie können <item type=\"menuitem\">Format - Textmodus</item> wählen, um die Grenzen neben dem Summen- oder Integralsymbol zu platzieren, was die Zeilenhöhe reduziert."
+#. FMfHG
#: limits.xhp
msgctxt ""
"limits.xhp\n"
@@ -536,6 +601,7 @@ msgctxt ""
msgid "<link href=\"text/smath/01/03090909.xhp\">Example of Integral and Sum ranges</link>"
msgstr "<link href=\"text/smath/01/03090909.xhp\">Beispiel für Integral- und Summenbereiche</link>"
+#. tfPe4
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -544,6 +610,7 @@ msgctxt ""
msgid "Instructions for Using $[officename] Math"
msgstr "Anleitungen für $[officename] Math"
+#. FfhxL
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -552,6 +619,7 @@ msgctxt ""
msgid "<bookmark_value>$[officename] Math;general instructions</bookmark_value><bookmark_value>instructions; $[officename] Math</bookmark_value><bookmark_value>Equation Editor, see $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>$[officename] Math; allgemeine Hinweise</bookmark_value><bookmark_value>Anleitungen; $[officename] Math</bookmark_value><bookmark_value>Formel Editor, siehe $[officename] Math</bookmark_value>"
+#. DyNdG
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -560,6 +628,7 @@ msgctxt ""
msgid "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Instructions for Using $[officename] Math\">Instructions for Using $[officename] Math</link></variable>"
msgstr "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Anleitungen für $[officename] Math\">Anleitungen für $[officename] Math</link></variable>"
+#. ArDuV
#: main.xhp
msgctxt ""
"main.xhp\n"
@@ -568,6 +637,7 @@ msgctxt ""
msgid "Entering and Editing Formulas"
msgstr "Formeln eingeben und bearbeiten"
+#. 74qEh
#: newline.xhp
msgctxt ""
"newline.xhp\n"
@@ -576,6 +646,7 @@ msgctxt ""
msgid "Entering Line Breaks"
msgstr "Zeilenumbruch eingeben"
+#. S8pTx
#: newline.xhp
msgctxt ""
"newline.xhp\n"
@@ -584,6 +655,7 @@ msgctxt ""
msgid "<bookmark_value>line breaks; in formulas</bookmark_value><bookmark_value>formulas;line breaks</bookmark_value><bookmark_value>wrapping text;in formulas</bookmark_value>"
msgstr "<bookmark_value>Zeilenumbrüche; in Formeln</bookmark_value><bookmark_value>Formeln; Zeilenumbrüche</bookmark_value><bookmark_value>Umbruch von Text; in Formeln</bookmark_value>"
+#. Uaq5F
#: newline.xhp
msgctxt ""
"newline.xhp\n"
@@ -592,6 +664,7 @@ msgctxt ""
msgid "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Entering Line Breaks\">Entering Line Breaks</link></variable>"
msgstr "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Zeilenumbruch eingeben\">Zeilenumbruch eingeben</link></variable>"
+#. gLLUF
#: newline.xhp
msgctxt ""
"newline.xhp\n"
@@ -600,6 +673,7 @@ msgctxt ""
msgid "How to write formulas in $[officename] Math over two lines (with manual line break):"
msgstr "So schreiben Sie eine Formel im $[officename] Math zweizeilig (mit manuellem Zeilenumbruch):"
+#. hYDBe
#: newline.xhp
msgctxt ""
"newline.xhp\n"
@@ -608,6 +682,7 @@ msgctxt ""
msgid "Create a line break by using the \"newline\" command. Everything coming after the line break is placed on the next line."
msgstr "Ein Zeilenumbruch kann mit dem Befehl \"newline\" erzeugt werden. Alles, was dahinter steht, befindet sich in einer neuen Zeile."
+#. fhtKa
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
@@ -616,6 +691,7 @@ msgctxt ""
msgid "Inserting Brackets"
msgstr "Klammern eingeben"
+#. CeDFE
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
@@ -624,6 +700,7 @@ msgctxt ""
msgid "<bookmark_value>brackets; inserting in %PRODUCTNAME Math</bookmark_value><bookmark_value>inserting;brackets</bookmark_value><bookmark_value>distances between brackets</bookmark_value>"
msgstr "<bookmark_value>Klammern; in %PRODUCTNAME Math eingeben</bookmark_value><bookmark_value>Einfügen; Klammern</bookmark_value><bookmark_value>Abstände zwischen Klammern</bookmark_value>"
+#. XkEUk
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
@@ -632,6 +709,7 @@ msgctxt ""
msgid "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Inserting Brackets\">Inserting Brackets</link></variable>"
msgstr "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Klammern eingeben\">Klammern eingeben</link></variable>"
+#. cAGdF
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
@@ -640,6 +718,7 @@ msgctxt ""
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Math, can brackets be shown separately so that the distance between them is freely definable?"
msgstr "Sind in <item type=\"productname\">%PRODUCTNAME</item> Math Klammern auch einzeln und in frei definierbarer Größe darstellbar?"
+#. L2fFP
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
@@ -648,6 +727,7 @@ msgctxt ""
msgid "You can set individual brackets using \"left\" and \"right\", but the distance between the brackets will not be fixed, as they adapt to the argument. Nevertheless, there is a way to display brackets so that the distance between them is fixed. To accomplish this, place a \"\\\" (backslash) before the normal brackets. These brackets now behave like any other symbol and the alignment is the same as with other symbols:"
msgstr "Mit \"left\" und \"right\" gesetzte Klammern haben keine feste Größe, da sie sich dem Argument anpassen. Um einzelne Klammern mit fester Größe darzustellen, stellen Sie den Klammern einen Rückstrich \"\\\" (Backslash) voran. Die Klammern verhalten sich dann wie andere Symbole und haben nicht mehr die besondere Funktionalität von Klammern, das heißt sie wirken nicht gruppierend:"
+#. AECF4
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -656,6 +736,7 @@ msgctxt ""
msgid "Entering Text"
msgstr "Text eingeben"
+#. FGbj6
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -664,6 +745,7 @@ msgctxt ""
msgid "<bookmark_value>text strings; entering in $[officename] Math</bookmark_value><bookmark_value>direct text; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;text in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>Zeichenketten; eingeben in $[officename] Math</bookmark_value><bookmark_value>Direkter Text; eingeben in $[officename] Math</bookmark_value><bookmark_value>Einfügen; Text in $[officename] Math</bookmark_value>"
+#. XRDUC
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -672,6 +754,7 @@ msgctxt ""
msgid "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\"Entering Text\">Entering Text</link></variable>"
msgstr "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\" Text eingeben\">Text eingeben</link></variable>"
+#. FGjG4
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -680,6 +763,7 @@ msgctxt ""
msgid "How to enter direct text strings that do not get interpreted?"
msgstr "So geben Sie direkt Zeichenketten ein, die nicht interpretiert werden."
+#. 8AWkB
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -688,6 +772,7 @@ msgctxt ""
msgid "Some text strings get interpreted as operators automatically. Sometimes this is not what you want. If you want to write W<emph>*</emph> (a letter with a superscripted asterisk), the asterisk will be interpreted as a multiplication operator. Enclose the direct text within double quotes or add spaceholders."
msgstr "Einige Zeichenketten werden automatisch als Operatoren interpretiert. Manchmal ist dies nicht erwünscht. Wenn Sie W<emph>*</emph> (ein Buchstabe mit einem hochgestellten Stern) schreiben, wird der Stern als ein Multiplikationsoperator interpretiert werden. Schließen Sie direkten Text innerhalb doppelter Anführungszeichen ein oder fügen Sie leere Gruppierungsklammen hinzu."
+#. HCpMB
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -696,6 +781,7 @@ msgctxt ""
msgid "Examples:"
msgstr "Beispiele:"
+#. aKbTy
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -704,6 +790,7 @@ msgctxt ""
msgid "An imported MathType formula contains the following string"
msgstr "Eine importierte MathType-Formel enthält die folgende Zeichenkette"
+#. pgDrE
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -712,6 +799,7 @@ msgctxt ""
msgid "If you have set up Math to convert imported MathType formulas (in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - Microsoft Office), you see the formula with a placeholder instead of the asterisk."
msgstr "Wenn Sie (unter <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Einstellungen</caseinline><defaultinline>Extras - Optionen...</defaultinline></switchinline> - Laden/Speichern - Microsoft Office), eingestellt haben, dass Math importierte MathType Formeln umwandelt, sehen Sie die Formel mit einem Platzhalter anstatt eines Sterns."
+#. VXaga
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -720,6 +808,7 @@ msgctxt ""
msgid "Change {*} to {} * {} as in the following formula:"
msgstr "Ändern Sie {*} in {} * {} wie in der folgenden Formel:"
+#. HGq8j
#: text.xhp
msgctxt ""
"text.xhp\n"
@@ -728,6 +817,7 @@ msgctxt ""
msgid "You can also use W^\"*\" to enter the character as direct text."
msgstr "Sie können auch W^\"*\" zur Eingabe der Zeichen als direkten Text benutzen."
+#. qELLZ
#: text.xhp
msgctxt ""
"text.xhp\n"
diff --git a/source/de/helpcontent2/source/text/swriter.po b/source/de/helpcontent2/source/text/swriter.po
index d3ccae98306..a1fcc6fd396 100644
--- a/source/de/helpcontent2/source/text/swriter.po
+++ b/source/de/helpcontent2/source/text/swriter.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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2020-10-22 11:35+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/de/>\n"
"Language: de\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: 1548481633.000000\n"
#. P7iNX
@@ -77,7 +77,7 @@ msgctxt ""
"par_id030820161744121143\n"
"help.text"
msgid "While this standard has been developed with the intent that it would be applicable in any domain of activity, %PRODUCTNAME retained the aerospace and defense industry nomenclature and categories, where sensitivity marking results from national security, export control and intellectual property policies."
-msgstr "Während dieser Standard mit der Absicht entwickelt wurde, dass er in jedem Aktivitätsbereich anwendbar ist, behält %PRODUCTNAME die Nomenklatur und Kategorien der Luft- und Raumfahrt und der Verteidungsindustrie bei, wo Vertraulichkeitskennzeichungen aus der nationalen Sicherheit, Ausfuhrkontrollen und den Prinzipien des geistigen Eigentums resultieren."
+msgstr "Während dieser Standard mit der Absicht entwickelt wurde, dass er in jedem Aktivitätsbereich anwendbar ist, behält %PRODUCTNAME die Nomenklatur und Kategorien der Luft- und Raumfahrt sowie der Verteidigungsindustrie bei, wo Vertraulichkeitskennzeichungen aus der nationalen Sicherheit, den Ausfuhrkontrollen und den Prinzipien des geistigen Eigentums resultieren."
#. mEAHm
#: classificationbar.xhp
@@ -104,7 +104,7 @@ msgctxt ""
"par_id030820161744126871\n"
"help.text"
msgid "Business Authorization Identification and Labeling Scheme (<item type=\"acronym\">BAILS</item>) specifies how to refer to such a <item type=\"acronym\">BAF</item> policy in a document. The concepts in <item type=\"acronym\">BAILS</item> are so generic that they can be applied to any format that supports document-level user-defined properties."
-msgstr "Business Authorization Identification and Labeling Scheme (<item type=\"acronym\">BAILS</item>) legt fest, wie solch eine <item type=\"acronym\">BAF</item>-Regel in einem Dokument zu übergeben ist. Die Konzepte in <item type=\"acronym\">BAILS</item> sind so allgemein, dass sie in jedem Format eingesetzt werden können, welches benutzerdefinierte Regeln auf Dokumentebene unterstützt."
+msgstr "Business Authorization Identification and Labeling Scheme (<item type=\"acronym\">BAILS</item>) legt fest, wie solch eine <item type=\"acronym\">BAF</item>-Regel in einem Dokument zu übergeben ist. Die Konzepte in <item type=\"acronym\">BAILS</item> sind so allgemein, dass sie in jedem Format eingesetzt werden können, das benutzerdefinierte Regeln auf Dokumentenebene unterstützt."
#. 6mz7n
#: classificationbar.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_idN106FA\n"
"help.text"
msgid "Selects the category of this document for the export control policy type. The selected category is saved together with the document as BAILS metadata in the file properties and no modifications is carried in the document layout or the user interface."
-msgstr "Wählt als Kategorie für dieses Dokument den Typ Ausfuhrkontrollregeln. Die ausgewählte Kategorie wird zusammen mit dem Dokument als BAILS-Metadaten in den Dateieigenschaften gespeichert und es sind keine Veränderungen am Dokumentenlayout oder an der Bedienoberfläche zugelassen."
+msgstr "Wählt als Kategorie für dieses Dokument den Typ Ausfuhrkontrollregeln. Die ausgewählte Kategorie wird zusammen mit dem Dokument als BAILS-Metadaten in den Dateieigenschaften gespeichert. Es sind keine Veränderungen am Dokumentlayout oder an der Bedienoberfläche zugelassen."
#. iVEDx
#: classificationbar.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"par_id030820161747133280\n"
"help.text"
msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file <item type=\"literal\">example.xml</item> located in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
-msgstr "%PRODUCTNAME erlaubt es Ihnen, die Klassifierungstufen für Ihr Geschäft anzupassen. Um die Zahl und den Namen der Stufen anzupassen, kopieren Sie die Datei <item type=\"literal\">example.xml</item>, die sich im Pfad unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – Pfade – Klassifikation</menuitem> befindet, in ein lokales Verzeichnis und bearbeiten den Inhalt."
+msgstr "%PRODUCTNAME erlaubt es Ihnen, die Klassifizierungstufen für Ihr Geschäft anzupassen. Um die Zahl und den Namen der Stufen anzupassen, kopieren Sie die Datei <item type=\"literal\">example.xml</item>, die sich im Pfad unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – Pfade – Klassifikation</menuitem> befindet, in ein lokales Verzeichnis und bearbeiten den Inhalt."
#. F3njz
#: classificationbar.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index 0e2fd4be3e2..e0722954953 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-29 10:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -2597,7 +2597,7 @@ msgctxt ""
"hd_id3156038\n"
"help.text"
msgid "Categories"
-msgstr "Bereiche..."
+msgstr "Kategorien…"
#. dgAGC
#: 02120000.xhp
@@ -2615,7 +2615,7 @@ msgctxt ""
"hd_id3159217\n"
"help.text"
msgid "Edit Categories"
-msgstr "Bereiche bearbeiten"
+msgstr "Kategorien bearbeiten"
#. DeMH7
#: 02120000.xhp
@@ -12020,7 +12020,7 @@ msgctxt ""
"par_id3143270\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/level\">Enter the number of heading levels to include in the index.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/level\">Geben Sie an, wie viele Überschriftebenen in das Verzeichnis aufgenommen werden sollen.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/level\">Geben Sie an, wie viele Überschriftenebenen in das Verzeichnis aufgenommen werden sollen.</ahelp>"
#. BAXZH
#: 04120211.xhp
@@ -12110,7 +12110,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Opens the <emph>Assign Styles</emph> dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Öffnet den Dialog <emph>Vorlagen zuweisen</emph>, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Öffnet den Dialog <emph>Vorlagen zuweisen</emph>, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftenebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll.</ahelp>"
#. oGe7C
#: 04120211.xhp
@@ -15953,7 +15953,7 @@ msgctxt ""
"hd_id3147295\n"
"help.text"
msgid "Display drop caps"
-msgstr "Initialien anzeigen"
+msgstr "Initialen anzeigen"
#. QTU6Z
#: 05030400.xhp
@@ -23180,7 +23180,7 @@ msgctxt ""
"hd_id3147167\n"
"help.text"
msgid "How to apply a Character style to a selected text"
-msgstr "Um eine Zeichenvorlage auf einen ausgewählten Text anwenden:"
+msgstr "Um eine Zeichenvorlage auf einen ausgewählten Text anzuwenden:"
#. mCzuE
#: 05140000.xhp
@@ -23279,7 +23279,7 @@ msgctxt ""
"hd_id3153925\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
-msgstr "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoKorrektur\">AutoKorrektur</link>"
+msgstr "<link href=\"text/swriter/01/05150000.xhp\" name=\"AutoFormat\">AutoKorrektur</link>"
#. bLXgC
#: 05150000.xhp
@@ -23360,7 +23360,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "You can use AutoCorrect to format text documents and plain ASCII text files, but not characters that you have manually formatted. Automatic <link href=\"text/shared/01/06040100.xhp\" name=\"word completion\">word completion</link> only occurs after you type a word for the second time in a document."
-msgstr "Sie können AutoKorrektur verwenden, um Textdokumente und reine ASCII-Textdateien zu formatieren, nicht jedoch für Zeichen, die Sie manuell formatiert haben. Die automatische <link href=\"text/shared/01/06040100.xhp\" name=\"Wortergänzung\">Wortergänzung</link> findet erst statt, wenn Sie ein Wort zweimal in einem Dokument eingegeben haben."
+msgstr "Sie können AutoKorrektur verwenden, um Textdokumente und reine ASCII-Textdateien zu formatieren, nicht jedoch für Zeichen, die Sie manuell formatiert haben. Die automatische <link href=\"text/shared/01/06040100.xhp\" name=\"word completion\">Wortergänzung</link> findet erst statt, wenn Sie ein Wort zweimal in einem Dokument eingegeben haben."
#. aZA7m
#: 05150100.xhp
@@ -23369,7 +23369,7 @@ msgctxt ""
"par_id3147407\n"
"help.text"
msgid "To reverse the last AutoCorrect action, choose <emph>Edit - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>Undo</emph></link>."
-msgstr "Um die letzte AutoKorrektur-Aktion rückgängig zu machen, wählen Sie <emph>Bearbeiten - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Rückgängig\"><emph>Rückgängig</emph></link>."
+msgstr "Um die letzte AutoKorrektur-Aktion rückgängig zu machen, wählen Sie <emph>Bearbeiten - </emph><link href=\"text/shared/01/02010000.xhp\" name=\"Undo\"><emph>Rückgängig</emph></link>."
#. c9yUj
#: 05150100.xhp
@@ -23477,7 +23477,7 @@ msgctxt ""
"par_id3150536\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"Other AutoFormat rules\">Other AutoCorrect rules</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Weitere Regeln zur AutoKorrektur\">Weitere Regeln zur AutoKorrektur</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Other AutoFormat rules\">Weitere Regeln zur AutoKorrektur</link>"
#. CjDuT
#: 05150101.xhp
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Wählen Sie ein Element in der Liste und klicken Sie auf eine Pfeilschaltfläche, um es zu verschieben.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail-Nachricht"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail-Nachricht"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr "Eigenschaften"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
@@ -31064,7 +31064,7 @@ msgctxt ""
"par_id831516906589936\n"
"help.text"
msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
-msgstr "Falls das verwendete Wasserzeichen ein Text ist, der über <item type=\"menuitem\">Format - Wasserzeichen</item> oder über die <link href=\"text/swriter/classificationbar.xhp\" name=\"TSCP-Klassifikation\">Dokumentklassifizierungs-Einstellungen</link> eingefügt wurde, können Sie den Inhalt und die Einstellungen über das Öffnen des Dialogs Wasserzeichendialogs bearbeiten."
+msgstr "Wenn das verwendete Wasserzeichen ein Text ist, der über <item type=\"menuitem\">Format – Wasserzeichen…</item> oder über die <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">Dokumentenklassifizierungs-Einstellungen</link> eingefügt wurde, können Sie den Inhalt und die Einstellungen über das Öffnen des Dialogs Wasserzeichen bearbeiten."
#. FF8p2
#: watermark.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/04.po b/source/de/helpcontent2/source/text/swriter/04.po
index d52ba184b24..4a73f23b219 100644
--- a/source/de/helpcontent2/source/text/swriter/04.po
+++ b/source/de/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-08 14:40+0100\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriter04/de/>\n"
"Language: de\n"
@@ -968,7 +968,7 @@ msgctxt ""
"hd_id3148414\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+multiplication sign * (only on number pad)"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Sternchen (*) (nur auf dem Nummernblock)"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Multiplikationszeichen (*) (nur auf dem Nummernblock)"
#. Pjfzz
#: 01020000.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index 47862ff850c..03cbe89b38a 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/de/>\n"
"Language: de\n"
@@ -500,7 +500,7 @@ msgctxt ""
"hd_id3147812\n"
"help.text"
msgid "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\" name=\"Turning Off AutoFormat and AutoCorrect\">Turning Off AutoCorrect</link></variable>"
-msgstr "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\" name=\"AutoKorrektur abschalten\">AutoKorrektur abschalten</link></variable>"
+msgstr "<variable id=\"auto_off\"><link href=\"text/swriter/guide/auto_off.xhp\" name=\"Turning Off AutoFormat and AutoCorrect\">AutoKorrektur abschalten</link></variable>"
#. ojUKt
#: auto_off.xhp
@@ -619,14 +619,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "So unterbinden Sie die automatische Großschreibung am Satzanfang:"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Wählen Sie <menuitem>Extras – AutoKorrektur-Optionen…</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
@@ -842,7 +842,7 @@ msgctxt ""
"hd_id3152887\n"
"help.text"
msgid "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\" name=\"Adding Exceptions to the AutoCorrect List\">Adding Exceptions to the AutoCorrect List</link></variable>"
-msgstr "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\" name=\"Hinzufügen von Ausnahmen zur AutoKorrektur-Liste\">Hinzufügen von Ausnahmen zur AutoKorrektur-Liste</link></variable>"
+msgstr "<variable id=\"autocorr_except\"><link href=\"text/swriter/guide/autocorr_except.xhp\" name=\"Adding Exceptions to the AutoCorrect List\">Hinzufügen von Ausnahmen zur AutoKorrektur-Liste</link></variable>"
#. C8LFD
#: autocorr_except.xhp
@@ -6116,7 +6116,7 @@ msgctxt ""
"par_idN106C6\n"
"help.text"
msgid "If you want to place mail merge fields anywhere else in the document select the corresponding column in your address data source and then drag and drop the column header into the document where you would like the field to be. Be sure to select the entire column."
-msgstr "Um Seriendruckfelder in einem Dokument zu platzieren, wählen Sie die korrespondierende Spalte in Ihrer Addressdatenquelle aus und fügen die Kopfzeile der Spalte per \"drag and drop\" an dder gewünschte Stelle des Dokumentes ein. Wählen Sie dabei die gesamte Spalte aus."
+msgstr "Um Seriendruckfelder in einem Dokument zu platzieren, wählen Sie die korrespondierende Spalte in Ihrer Addressdatenquelle aus und fügen die Kopfzeile der Spalte per Ziehen-und-Ablegen an der gewünschte Stelle des Dokumentes ein. Wählen Sie dabei die gesamte Spalte aus."
#. xbE3K
#: form_letters_main.xhp
@@ -6152,7 +6152,7 @@ msgctxt ""
"hd_id3145246\n"
"help.text"
msgid "<variable id=\"globaldoc\"><link href=\"text/swriter/guide/globaldoc.xhp\">Master Documents and Subdocuments</link></variable>"
-msgstr "<variable id=\"globaldoc\"><link href=\"text/swriter/guide/globaldoc.xhp\">Globaldokumente und Teildokumente</link></variable>"
+msgstr "<variable id=\"globaldoc\"><link href=\"text/swriter/guide/globaldoc.xhp\">Global- und Teildokumente</link></variable>"
#. uwqGi
#: globaldoc.xhp
@@ -7349,7 +7349,7 @@ msgctxt ""
"par_id3154853\n"
"help.text"
msgid "Click in the paragraph where you want to add the text."
-msgstr "Klicken Sie in den Absatz, in den Sie den Text einfügen möchten."
+msgstr "Klicken Sie in den Absatz, in dem Sie den Text einfügen möchten."
#. snFHJ
#: hidden_text.xhp
@@ -7772,7 +7772,7 @@ msgctxt ""
"par_id0302200910262850\n"
"help.text"
msgid "Enable the special features of complex text layout (CTL) languages: Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - Language Settings - Languages</item> and check <emph>Enabled for complex text layout (CTL)</emph>. Click OK."
-msgstr "Aktivieren Sie die besondere Funktion Complex Text Layout (CTL) für Sprachen: Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen...</item></defaultinline></switchinline><item type=\"menuitem\"> - Spracheinstellungen - Sprachen</item> und markieren Sie <emph>Complex Text Layout (CTL)</emph>. Klicken Sie auf OK."
+msgstr "Aktivieren Sie die besondere Funktion Komplexes Textlayout (CTL) für Sprachen: Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras - Optionen…</item></defaultinline></switchinline><item type=\"menuitem\"> - Spracheinstellungen - Sprachen</item> und markieren Sie <emph>Komplexes Textlayout (CTL)</emph>. Klicken Sie auf OK."
#. CiY92
#: hyphen_prevent.xhp
@@ -10031,7 +10031,7 @@ msgctxt ""
"par_id3156240\n"
"help.text"
msgid "Click an entry in the <emph>Categories</emph> list, then click the template containing the styles that you want to use in the <emph>Templates</emph> list, and then click <emph>OK</emph>."
-msgstr "Wählen Sie einen Eintrag aus der Liste <emph>Bereiche</emph> aus, klicken Sie anschließend die Vorlage an, welche die in der Liste <emph>Vorlagen</emph> zu verwendenden Formatvorlagen enthält, und klicken Sie dann auf <emph>OK</emph>."
+msgstr "Wählen Sie einen Eintrag aus der Liste <emph>Kategorien</emph> aus, klicken Sie anschließend die Vorlage an, welche die in der Liste <emph>Vorlagen</emph> zu verwendenden Formatvorlagen enthält, und klicken Sie dann auf <emph>OK</emph>."
#. rc6un
#: load_styles.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id2632831\n"
"help.text"
msgid "Choose <menuitem>Format - Paragraph - Text flow</menuitem> tab."
-msgstr "Wählrn Sie <menuitem>Format – Absatz… – Register: Textfluss</menuitem>."
+msgstr "Wählen Sie <menuitem>Format – Absatz… – Register: Textfluss</menuitem>."
#. LLNW3
#: pagenumbers.xhp
@@ -15170,7 +15170,7 @@ msgctxt ""
"par_id3856013\n"
"help.text"
msgid "Save the *.oxt extension file to your harddrive, then double-click the *.oxt file in your file manager. Alternatively, in %PRODUCTNAME choose <item type=\"menuitem\">Tools - Extension Manager</item> to open the Extension Manager, click Add and browse to the file."
-msgstr "Speichern Sie die Datei mit der Erweiterung *.oxt auf Ihrer Festplatte ab. Doppelklicken Sie dann im Dateimanager auf die *.oxt Datei. Sie können auch in %PRODUCTNAME den Extension Manager öffnen, indem Sie <item type=\"menuitem\">Extras - Extension Manager...</item> wählen, dann Hinzufügen klicken und die Datei auswählen."
+msgstr "Speichern Sie die Datei mit der Erweiterung *.oxt auf Ihrer Festplatte ab. Doppelklicken Sie dann im Dateimanager auf die *.oxt-Datei. Sie können auch in %PRODUCTNAME den Extension-Manager öffnen, indem Sie <item type=\"menuitem\">Extras - Extension-Manager…</item> wählen, dann Hinzufügen klicken und die Datei auswählen."
#. hAPoK
#: smarttags.xhp
@@ -15791,7 +15791,7 @@ msgctxt ""
"par_id3154705\n"
"help.text"
msgid "<link href=\"text/shared/01/06040200.xhp\" name=\"Tools - AutoCorrect - Replace\">Tools - AutoCorrect - Replace</link>"
-msgstr "<link href=\"text/shared/01/06040200.xhp\" name=\"Extras - AutoKorrektur - Ersetzen\">Extras - AutoKorrektur-Optionen - Ersetzen</link>"
+msgstr "<link href=\"text/shared/01/06040200.xhp\" name=\"Tools - AutoCorrect - Replace\">Extras - AutoKorrektur - AutoKorrektur-Optionen… - Register: Ersetzungen</link>"
#. 6YCYG
#: table_cellmerge.xhp
@@ -17294,7 +17294,7 @@ msgctxt ""
"par_id6924649\n"
"help.text"
msgid "Use the Text tool on the Drawing toolbar."
-msgstr "Verwenden Sie das Textwerkzeug in der Symbolleiste Zeichnennung."
+msgstr "Verwenden Sie das Textwerkzeug in der Symbolleiste Zeichnung."
#. K8DGN
#: text_emphasize.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/librelogo.po b/source/de/helpcontent2/source/text/swriter/librelogo.po
index 5b5d4d997a0..78c57a3e688 100644
--- a/source/de/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/de/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-03-07 18:15+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriterlibrelogo/de/>\n"
"Language: de\n"
@@ -167,7 +167,7 @@ msgctxt ""
"par_345\n"
"help.text"
msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (<switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - Language Settings - Languages - Western</menuitem>) and click on this icon to translate the Logo program to the selected language."
-msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Begehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – Spracheinstellungen – Sprache – Westlich</menuitem>) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzen."
+msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Befehle und konvertiert Logo-Befehle innerhalb eines Writer-Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – Spracheinstellungen – Sprache – Westlich</menuitem>) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzen."
#. UXKqW
#: LibreLogo.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"par_430\n"
"help.text"
msgid "LibreLogo drawings and programs use the same Writer document. The LibreLogo canvas is on the first page of the Writer document. You can insert a page break before the LibreLogo programs and set page zoom using the “magic wand” icon of the Logo toolbar, also change the font size for a comfortable 2-page layout for LibreLogo programming: left (first) page is the canvas, right (second) page is the LibreLogo program editor."
-msgstr "LibreLogo-Zeichnungen und -Programmcode benutzen dasselbe Writer Dokument. Die LibreLogo-Zeichenfläche befindet sich auf der ersten Seite des Writer Dokuments. Sie können einen Seitenumbruch vor dem LibreLogo-Programmcode einfügen und mittels des Icons mit dem Zauberstab aus der Symbolleiste Logo die Ansicht so optimieren, dass ein komfortables doppelseitiges Layout für die Ansicht der LibreLogo-Programmierung zur Verfügung steht: Links (erste Seite) die Zeichenfläche, rechts (zweite Seite) der LibreLogo-Programmcode."
+msgstr "LibreLogo-Zeichnungen und -Programmcode benutzen dasselbe Writer-Dokument. Die LibreLogo-Zeichenfläche befindet sich auf der ersten Seite des Writer-Dokuments. Sie können einen Seitenumbruch vor dem LibreLogo-Programmcode einfügen und mittels des Icons mit dem Zauberstab aus der Symbolleiste Logo die Ansicht so optimieren, dass ein komfortables doppelseitiges Layout für die Ansicht der LibreLogo-Programmierung zur Verfügung steht: Links (erste Seite) die Zeichenfläche, rechts (zweite Seite) der LibreLogo-Programmcode."
#. SSNHJ
#: LibreLogo.xhp
diff --git a/source/de/officecfg/registry/data/org/openoffice.po b/source/de/officecfg/registry/data/org/openoffice.po
index dd1b045e35c..b79080b93da 100644
--- a/source/de/officecfg/registry/data/org/openoffice.po
+++ b/source/de/officecfg/registry/data/org/openoffice.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-02-28 09:30+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenoffice/de/>\n"
"Language: de\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: Pootle 2.8\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1519810220.000000\n"
+#. foAxC
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -25,6 +26,7 @@ msgctxt ""
msgid "Base: Database Form"
msgstr "Base: Datenbankformulare"
+#. YAxMS
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -32,8 +34,9 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Report Design"
-msgstr "Base: Berichts-Assistent"
+msgstr "Base: Berichtsassistent"
+#. GwFDf
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -43,6 +46,7 @@ msgctxt ""
msgid "Base: Relation Design"
msgstr "Base: Relationenentwurf"
+#. uEmjY
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -52,6 +56,7 @@ msgctxt ""
msgid "Base: Query Design"
msgstr "Base: Abfrageentwurf"
+#. X5S6E
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -61,6 +66,7 @@ msgctxt ""
msgid "Base: View Design"
msgstr "Base: Ansichtsentwurf"
+#. Lsw4Y
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -70,6 +76,7 @@ msgctxt ""
msgid "Base: Table Design"
msgstr "Base: Tabellenentwurf"
+#. s3Ecc
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -79,6 +86,7 @@ msgctxt ""
msgid "Base: Data View"
msgstr "Base: Datenansicht"
+#. LC2DZ
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -88,6 +96,7 @@ msgctxt ""
msgid "Base: Table Data View"
msgstr "Base: Tabellendatenansicht"
+#. aienR
#: Setup.xcu
msgctxt ""
"Setup.xcu\n"
@@ -95,4 +104,4 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Report Builder"
-msgstr "Base: Report Builder"
+msgstr "Base: Bericht-Designer"
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office.po b/source/de/officecfg/registry/data/org/openoffice/Office.po
index 9d4b0508832..085a28c67a8 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office.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: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-03-08 13:45+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -274,7 +274,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Document ~Converter..."
-msgstr "~Dokument-Konverter…"
+msgstr "~Dokumentkonverter…"
#. Fcxxv
#: Common.xcu
@@ -784,7 +784,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Report Builder"
-msgstr "Report Builder"
+msgstr "Bericht-Designer"
#. iE8oL
#: ExtendedColorScheme.xcu
@@ -1334,7 +1334,7 @@ msgctxt ""
"STR_DELETE_MASTER_PAGES\n"
"value.text"
msgid "Delete unused ~master slides"
-msgstr "Nicht verwendete Folien~master löschen"
+msgstr "Nicht verwendete ~Masterfolien löschen"
#. nyEoz
#: PresentationMinimizer.xcu
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index a604db6939e..074ac50dacc 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-28 12:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/de/>\n"
"Language: de\n"
@@ -3194,7 +3194,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Page Style..."
-msgstr ""
+msgstr "~Seitenvorlage…"
#. C83UC
#: CalcCommands.xcu
@@ -7404,7 +7404,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report Wizard..."
-msgstr "Be~richts-Assistent…"
+msgstr "Be~richtsassistent…"
#. cpEvD
#: DbuCommands.xcu
@@ -8524,7 +8524,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master Slide"
-msgstr "Folien~master"
+msgstr "~Masterfolie"
#. ffjrk
#: DrawImpressCommands.xcu
@@ -8534,7 +8534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "M~aster Notes"
-msgstr "Notizenmaster"
+msgstr "Masternotizen"
#. 5jAWW
#: DrawImpressCommands.xcu
@@ -9404,7 +9404,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Hando~ut"
-msgstr "~Handzettelmaster"
+msgstr "Master~handzettel"
#. 53ogX
#: DrawImpressCommands.xcu
@@ -9474,7 +9474,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scale"
-msgstr ""
+msgstr "Skalierung"
#. sdUMB
#: DrawImpressCommands.xcu
@@ -9484,7 +9484,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Scaling at the current document"
-msgstr ""
+msgstr "Skalierung am aktuellen Dokument"
#. hTkgv
#: DrawImpressCommands.xcu
@@ -10394,7 +10394,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Notes Layout..."
-msgstr "Notizenmasterlayout…"
+msgstr "Masternotizenlayout…"
#. FzmHt
#: DrawImpressCommands.xcu
@@ -10404,7 +10404,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Handout Layout..."
-msgstr "Handzettelmasterlayout…"
+msgstr "Masterhandzettellayout…"
#. n3pZ9
#: DrawImpressCommands.xcu
@@ -23416,7 +23416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export as PDF"
-msgstr ""
+msgstr "Als PDF exportieren"
#. YsFV2
#: GenericCommands.xcu
@@ -23446,7 +23446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export Directly as PDF"
-msgstr ""
+msgstr "Direkt als PDF exportieren"
#. 8eSWp
#: GenericCommands.xcu
@@ -23456,7 +23456,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Export Directly as PDF"
-msgstr "~Direktes Exportieren als PDF"
+msgstr "~Direkt als PDF exportieren"
#. JCirv
#: GenericCommands.xcu
@@ -23466,7 +23466,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export Directly as PDF"
-msgstr "Direktes Exportieren als PDF"
+msgstr "Direkt als PDF exportieren"
#. LrSFu
#: GenericCommands.xcu
@@ -25196,7 +25196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Extension Manager..."
-msgstr "Extension~ Manager…"
+msgstr "E~xtension-Manager…"
#. JwAqG
#: GenericCommands.xcu
@@ -25536,7 +25536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Development Tools"
-msgstr ""
+msgstr "Entwicklungstools"
#. jLF5j
#: GenericCommands.xcu
@@ -26966,7 +26966,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Master Slide Sorter/Pane"
-msgstr "Folienmaster-Sortierung/-Bereich"
+msgstr "Masterfolien-Sortierung/-Bereich"
#. FzNvJ
#: ImpressWindowState.xcu
@@ -26976,7 +26976,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Master Slide Sorter/Pane (no selection)"
-msgstr "Folienmaster-Sortierung/-Bereich (keine Auswahl)"
+msgstr "Masterfolien-Sortierung/-Bereich (keine Auswahl)"
#. D3FGq
#: ImpressWindowState.xcu
@@ -28496,7 +28496,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Master Slides"
-msgstr "Folienmaster"
+msgstr "Masterfolien"
#. AfH6t
#: Sidebar.xcu
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Position und Größe"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30056,7 +30066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Schaltflächen zur Gliederungsfaltung anzeigen"
#. 4hvcy
#: WriterCommands.xcu
@@ -30066,7 +30076,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Zeigt eine Schaltfläche neben Überschriften und Zwischenüberschriften an, die beim Falten der Gliederung hilft. Auch ohne die Schaltfläche können Sie mit dem Navigator eine Gliederung falten."
#. C5mHk
#: WriterCommands.xcu
@@ -32556,7 +32566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Unnumbered Entry"
-msgstr "Eintrag ohne Nummer ein~fügen"
+msgstr "Eintrag ohne Nummerierung ein~fügen"
#. iDerQ
#: WriterCommands.xcu
@@ -33646,7 +33656,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Cycle"
-msgstr ""
+msgstr "Zyklus auswählen"
#. GzD2B
#: WriterCommands.xcu
@@ -34386,7 +34396,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Add to List"
-msgstr ""
+msgstr "Zur Liste hinzufügen"
#. rbB7v
#: WriterCommands.xcu
@@ -34396,7 +34406,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
-msgstr ""
+msgstr "\"Zur Liste hinzufügen\" fügt ausgewählte Absätze zu einer unmittelbar vorhergehenden Liste hinzu."
#. oCEjg
#: WriterCommands.xcu
@@ -35426,7 +35436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Gliederungsfaltung umschalten"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index 80c9db33435..6fe42bec270 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 05:36+0000\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565592942.000000\n"
#. kBovX
@@ -17363,7 +17363,7 @@ msgstr "Eingabezeile"
#: sc/inc/strings.hrc:169
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
-msgstr "Funktions-Assistent"
+msgstr "Funktionsassistent"
#. rU6xA
#: sc/inc/strings.hrc:170
diff --git a/source/de/scp2/source/graphicfilter.po b/source/de/scp2/source/graphicfilter.po
index 32e932d3699..5dccf086195 100644
--- a/source/de/scp2/source/graphicfilter.po
+++ b/source/de/scp2/source/graphicfilter.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-04-27 15:55+0200\n"
-"PO-Revision-Date: 2019-11-05 12:26+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
-"Language-Team: German <https://vm137.documentfoundation.org/projects/libo_ui-master/scp2sourcegraphicfilter/de/>\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcegraphicfilter/de/>\n"
"Language: de\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: 1513490314.000000\n"
#. yNDcH
@@ -41,7 +41,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_ADOBE\n"
"LngText.text"
msgid "Adobe Photoshop Import Filter"
-msgstr "Adobe Photoshop Importfilter"
+msgstr "Adobe Photoshop-Importfilter"
#. 7g8wn
#: module_graphicfilter.ulf
@@ -50,7 +50,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_ADOBE\n"
"LngText.text"
msgid "Adobe Photoshop Import Filter"
-msgstr "Adobe Photoshop Importfilter"
+msgstr "Adobe Photoshop-Importfilter"
#. BuJNs
#: module_graphicfilter.ulf
@@ -59,7 +59,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_TGA\n"
"LngText.text"
msgid "TGA Import"
-msgstr "TGA Import"
+msgstr "TGA-Import"
#. sGasR
#: module_graphicfilter.ulf
@@ -68,7 +68,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_TGA\n"
"LngText.text"
msgid "TGA TrueVision TARGA Import Filter"
-msgstr "TGA TrueVision TARGA Importfilter"
+msgstr "TGA TrueVision TARGA-Importfilter"
#. 2eKBa
#: module_graphicfilter.ulf
@@ -86,7 +86,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_EPS\n"
"LngText.text"
msgid "Encapsulated Postscript Import/Export Filter"
-msgstr "Encapsulated Postscript-Im- und Exportfilter"
+msgstr "Encapsulated PostScript-Im- und Exportfilter"
#. MjpxH
#: module_graphicfilter.ulf
@@ -149,7 +149,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_ACAD\n"
"LngText.text"
msgid "AutoCAD Import"
-msgstr "AutoCAD Import"
+msgstr "AutoCAD-Import"
#. BaBAs
#: module_graphicfilter.ulf
@@ -158,7 +158,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_ACAD\n"
"LngText.text"
msgid "AutoCAD Import Filter"
-msgstr "AutoCAD Importfilter"
+msgstr "AutoCAD-Importfilter"
#. Ce6Le
#: module_graphicfilter.ulf
@@ -221,7 +221,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_PCX\n"
"LngText.text"
msgid "PCX Import"
-msgstr "PCX Import"
+msgstr "PCX-Import"
#. NmYRD
#: module_graphicfilter.ulf
@@ -239,7 +239,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_TIFF\n"
"LngText.text"
msgid "TIFF Import/Export"
-msgstr "TIFF Import/Export"
+msgstr "TIFF-Im- und Export"
#. oUH68
#: module_graphicfilter.ulf
diff --git a/source/de/scp2/source/ooo.po b/source/de/scp2/source/ooo.po
index bc02692c4d2..ba517eba772 100644
--- a/source/de/scp2/source/ooo.po
+++ b/source/de/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-12-17 15:06+0100\n"
-"PO-Revision-Date: 2021-03-28 12:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/de/>\n"
"Language: de\n"
@@ -5297,7 +5297,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_REPORTDESIGN\n"
"LngText.text"
msgid "Report Builder"
-msgstr "Report Builder"
+msgstr "Bericht-Designer"
#. uzCcq
#: module_reportbuilder.ulf
@@ -5306,7 +5306,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_REPORTDESIGN\n"
"LngText.text"
msgid "Report Builder helps to design database reports. It requires Java."
-msgstr "Der Report Builder ermöglicht eine Gestaltung von Datenbankberichten. Dafür wird Java benötigt."
+msgstr "Der Bericht-Designer ermöglicht eine Gestaltung von Datenbankberichten. Dafür wird Java benötigt."
#. 9vjxt
#: module_systemint.ulf
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index fa39d6b4b6b..a64da3d1b43 100644
--- a/source/de/sd/messages.po
+++ b/source/de/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 05:36+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562386789.000000\n"
#. WDjkB
@@ -423,7 +423,7 @@ msgstr "Ebene ändern"
#: sd/inc/strings.hrc:29
msgctxt "STR_UNDO_SLIDE_PARAMS"
msgid "Slide parameter"
-msgstr "Folien Parameter"
+msgstr "Folienparameter"
#. 6ZECs
#: sd/inc/strings.hrc:30
@@ -477,7 +477,7 @@ msgstr "Normal"
#: sd/inc/strings.hrc:38
msgctxt "STR_SLIDE_MASTER_MODE"
msgid "Master Slide"
-msgstr "Folienmaster"
+msgstr "Masterfolie"
#. qBuHh
#: sd/inc/strings.hrc:39
@@ -495,13 +495,13 @@ msgstr "Notizen"
#: sd/inc/strings.hrc:41
msgctxt "STR_NOTES_MASTER_MODE"
msgid "Master Notes"
-msgstr "Notizenmaster"
+msgstr "Masternotizen"
#. tGt9g
#: sd/inc/strings.hrc:42
msgctxt "STR_HANDOUT_MASTER_MODE"
msgid "Master Handout"
-msgstr "Handzettelmaster"
+msgstr "Masterhandzettel"
#. GtVe6
#: sd/inc/strings.hrc:43
@@ -903,7 +903,7 @@ msgstr ""
#: sd/inc/strings.hrc:106
msgctxt "STR_SCALE_TOOLTIP"
msgid "Scaling factor of the document; right-click to change."
-msgstr ""
+msgstr "Skalierungsfaktor des Dokuments; Rechtsklick zum Ändern."
#. NzFb7
#: sd/inc/strings.hrc:107
@@ -1205,7 +1205,7 @@ msgstr "Text einfügen"
#: sd/inc/strings.hrc:159
msgctxt "STR_LOAD_PRESENTATION_LAYOUT"
msgid "Load Master Slide"
-msgstr "Folienmaster laden"
+msgstr "Masterfolie laden"
#. HxEp8
#: sd/inc/strings.hrc:160
@@ -1676,7 +1676,7 @@ msgstr "Name"
#: sd/inc/strings.hrc:238
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
-msgstr "Folienmaster umbenennen"
+msgstr "Masterfolie umbenennen"
#. rWiXQ
#: sd/inc/strings.hrc:239
@@ -1952,13 +1952,13 @@ msgstr "Folie"
#: sd/inc/strings.hrc:285
msgctxt "STR_MASTERSLIDE_NAME"
msgid "Master Slide"
-msgstr "Folienmaster"
+msgstr "Masterfolie"
#. 8WvYc
#: sd/inc/strings.hrc:286
msgctxt "STR_MASTERSLIDE_LABEL"
msgid "Master Slide:"
-msgstr "Folienmaster:"
+msgstr "Masterfolie:"
#. C3zZM
#: sd/inc/strings.hrc:287
@@ -5929,7 +5929,7 @@ msgstr "Auf alle an_wenden"
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:33
msgctxt "headerfooterdialog|extended_tip|apply_all"
msgid "Applies the settings to all the slides in your presentation, including the corresponding master slides."
-msgstr "Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich dem entsprechenden Folienmaster."
+msgstr "Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich der entsprechenden Masterfolien."
#. eaqgU
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:52
@@ -5953,7 +5953,7 @@ msgstr "Notizblätter und Handzettel"
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:219
msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog"
msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides."
-msgstr "Fügt den Text in den Platzhaltern oben und unten auf den Folien und dem Folienmaster hinzu beziehungsweise ändert diesen."
+msgstr "Fügt den Text in den Platzhaltern oben und unten auf den Folien und Masterfolien hinzu beziehungsweise ändert diesen."
#. BgFsS
#: sd/uiconfig/simpress/ui/headerfootertab.ui:35
@@ -6385,7 +6385,7 @@ msgstr "_Kopfzeile"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100
msgctxt "masterlayoutdlg|extended_tip|header"
msgid "Adds a header placeholder to the master slide for notes."
-msgstr "Fügt dem Notizenmaster einen Platzhalter für Kopfzeilen hinzu, um Notizen hinzuzufügen."
+msgstr "Fügt der Masterfolie einen Kopfzeilen-Platzhalter für Notizen hinzu."
#. iccus
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112
@@ -6397,7 +6397,7 @@ msgstr "_Datum/Uhrzeit"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:120
msgctxt "masterlayoutdlg|extended_tip|datetime"
msgid "Adds a date/time placeholder to the master slide."
-msgstr "Fügt dem Folienmaster einen Platzhalter für Datum und Uhrzeit hinzu."
+msgstr "Fügt der Masterfolie einen Platzhalter für Datum und Uhrzeit hinzu."
#. SFrZg
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:132
@@ -6409,7 +6409,7 @@ msgstr "F_ußzeile"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:140
msgctxt "masterlayoutdlg|extended_tip|footer"
msgid "Adds a footer placeholder to the master slide."
-msgstr "Fügt dem Folienmaster einen Platzhalter für eine Fußzeile hinzu."
+msgstr "Fügt der Masterfolie einen Platzhalter für eine Fußzeile hinzu."
#. AyWZh
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152
@@ -6439,7 +6439,7 @@ msgstr "Platzhalter"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:216
msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog"
msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide."
-msgstr "Fügt dem Folienmaster Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese."
+msgstr "Fügt der Masterfolie Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese."
#. 69Akr
#: sd/uiconfig/simpress/ui/mastermenu.ui:12
@@ -8936,13 +8936,13 @@ msgstr "Wählen Sie die hohe Auflösung für eine Darstellung in hoher Qualität
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1186
msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
-msgstr ""
+msgstr "Full HD (1_920 × 1080 Pixel)"
#. GuDqe
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1197
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
msgid "Select a full hd resolution for a very high quality slide display."
-msgstr ""
+msgstr "Wählen Sie eine Full-HD-Auflösung für eine sehr hochwertige Folienanzeige."
#. zsvW6
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1213
@@ -9068,7 +9068,7 @@ msgstr "Farbschema aus Dokument ü_bernehmen"
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1627
msgctxt "publishingdialog|defaultRadiobutton"
msgid "Use _browser colors"
-msgstr "_Browser Farben verwenden"
+msgstr "_Browserfarben verwenden"
#. FtkC2
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1643
@@ -9302,7 +9302,7 @@ msgstr "Hochformat"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:108
msgctxt "sidebarslidebackground|displaymasterobjects"
msgid "Master Objects"
-msgstr "Master-Objekte"
+msgstr "Masterobjekte"
#. iFFSD
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:146
@@ -9314,7 +9314,7 @@ msgstr "Bild einfügen…"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:223
msgctxt "sidebarslidebackground|displaymasterbackground"
msgid "Master Background"
-msgstr "Master-Hintergrund"
+msgstr "Masterhintergrund"
#. jeCZN
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:252
diff --git a/source/de/setup_native/source/mac.po b/source/de/setup_native/source/mac.po
index 01cf3977e60..d0f5d2168ea 100644
--- a/source/de/setup_native/source/mac.po
+++ b/source/de/setup_native/source/mac.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2019-12-17 11:18+0000\n"
-"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_ui-master/setup_nativesourcemac/de/>\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/setup_nativesourcemac/de/>\n"
"Language: de\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 3.9.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1516554961.000000\n"
#. HQKCW
@@ -50,7 +50,7 @@ msgctxt ""
"IntroText1\n"
"LngText.text"
msgid "Welcome to the [FULLPRODUCTNAME] Installation Wizard"
-msgstr "Willkommen beim [FULLPRODUCTNAME] Installations-Assistenten"
+msgstr "Willkommen beim [FULLPRODUCTNAME] Installationsassistenten"
#. nBYzF
#: macinstall.ulf
diff --git a/source/de/sfx2/messages.po b/source/de/sfx2/messages.po
index 1a762dc766e..bad1a09bb90 100644
--- a/source/de/sfx2/messages.po
+++ b/source/de/sfx2/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-28 12:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -863,7 +863,7 @@ msgstr "Keine"
#: include/sfx2/strings.hrc:157
msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
-msgstr ""
+msgstr "Bild"
#. dUK2G
#: include/sfx2/strings.hrc:158
@@ -1678,7 +1678,7 @@ msgstr "Blauer Verlauf"
#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
-msgstr "Blaupausen Plan"
+msgstr "Blaupausenpläne"
#. MAnPU
#: include/sfx2/strings.hrc:303
@@ -2284,151 +2284,151 @@ msgstr "Etiketten"
#: sfx2/source/devtools/DevToolsStrings.hrc:14
msgctxt "STR_TEXT_PORTION"
msgid "Text Portion %1"
-msgstr ""
+msgstr "Textteil %1"
#. 5ZXbE
#: sfx2/source/devtools/DevToolsStrings.hrc:15
msgctxt "STR_PARAGRAPH"
msgid "Paragraph %1"
-msgstr ""
+msgstr "Absatz %1"
#. DJi4i
#: sfx2/source/devtools/DevToolsStrings.hrc:16
msgctxt "STR_SHAPE"
msgid "Shape %1"
-msgstr ""
+msgstr "Form %1"
#. Ucjjh
#: sfx2/source/devtools/DevToolsStrings.hrc:17
msgctxt "STR_PAGE"
msgid "Page %1"
-msgstr ""
+msgstr "Seite %1"
#. j9DL6
#: sfx2/source/devtools/DevToolsStrings.hrc:18
msgctxt "STR_SLIDE"
msgid "Slide %1"
-msgstr ""
+msgstr "Folie %1"
#. YQqL8
#: sfx2/source/devtools/DevToolsStrings.hrc:19
msgctxt "STR_MASTER_SLIDE"
msgid "Master Slide %1"
-msgstr ""
+msgstr "Masterfolie %1"
#. CEfNy
#: sfx2/source/devtools/DevToolsStrings.hrc:20
msgctxt "STR_SHEET"
msgid "Sheet %1"
-msgstr ""
+msgstr "Tabelle %1"
#. BaABx
#: sfx2/source/devtools/DevToolsStrings.hrc:22
msgctxt "STR_SHAPES_NODE"
msgid "Shapes"
-msgstr ""
+msgstr "Formen"
#. n4VWE
#: sfx2/source/devtools/DevToolsStrings.hrc:23
msgctxt "STR_CHARTS_ENTRY"
msgid "Charts"
-msgstr ""
+msgstr "Diagramme"
#. 5GWcX
#: sfx2/source/devtools/DevToolsStrings.hrc:24
msgctxt "STR_PIVOT_TABLES_ENTRY"
msgid "Pivot Tables"
-msgstr ""
+msgstr "Pivot-Tabellen"
#. BBLBQ
#: sfx2/source/devtools/DevToolsStrings.hrc:25
msgctxt "STR_DOCUMENT_ENTRY"
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#. 4dNGV
#: sfx2/source/devtools/DevToolsStrings.hrc:26
msgctxt "STR_SHEETS_ENTRY"
msgid "Sheets"
-msgstr ""
+msgstr "Tabellen"
#. RLwRi
#: sfx2/source/devtools/DevToolsStrings.hrc:27
msgctxt "STR_STYLES_ENTRY"
msgid "Styles"
-msgstr ""
+msgstr "Vorlagen"
#. P4RF4
#: sfx2/source/devtools/DevToolsStrings.hrc:28
msgctxt "STR_SLIDES_ENTRY"
msgid "Slides"
-msgstr ""
+msgstr "Folien"
#. 4bJSH
#: sfx2/source/devtools/DevToolsStrings.hrc:29
msgctxt "STR_MASTER_SLIDES_ENTRY"
msgid "Master Slides"
-msgstr ""
+msgstr "Masterfolien"
#. LRq2A
#: sfx2/source/devtools/DevToolsStrings.hrc:30
msgctxt "STR_PAGES_ENTRY"
msgid "Pages"
-msgstr ""
+msgstr "Seiten"
#. 946kV
#: sfx2/source/devtools/DevToolsStrings.hrc:31
msgctxt "STR_PARAGRAPHS_ENTRY"
msgid "Paragraphs"
-msgstr ""
+msgstr "Absätze"
#. JG2qz
#: sfx2/source/devtools/DevToolsStrings.hrc:32
msgctxt "STR_TABLES_ENTRY"
msgid "Tables"
-msgstr ""
+msgstr "Tabellen"
#. HzFoW
#: sfx2/source/devtools/DevToolsStrings.hrc:33
msgctxt "STR_FRAMES_ENTRY"
msgid "Frames"
-msgstr ""
+msgstr "Rahmen"
#. ekGEm
#: sfx2/source/devtools/DevToolsStrings.hrc:34
msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
msgid "Graphic Objects"
-msgstr ""
+msgstr "Grafische Objekte"
#. cVWmY
#: sfx2/source/devtools/DevToolsStrings.hrc:35
msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
msgid "Embedded Objects"
-msgstr ""
+msgstr "Eingebettete Objekte"
#. xfnkV
#: sfx2/source/devtools/DevToolsStrings.hrc:37
msgctxt "STR_ANY_VALUE_TRUE"
msgid "True"
-msgstr ""
+msgstr "Wahr"
#. 2WxdA
#: sfx2/source/devtools/DevToolsStrings.hrc:38
msgctxt "STR_ANY_VALUE_FALSE"
msgid "False"
-msgstr ""
+msgstr "Falsch"
#. RBC8w
#: sfx2/source/devtools/DevToolsStrings.hrc:39
msgctxt "STR_ANY_VALUE_NULL"
msgid "Null"
-msgstr ""
+msgstr "Null"
#. As494
#: sfx2/source/devtools/DevToolsStrings.hrc:40
msgctxt "STR_CLASS_UNKNOWN"
msgid "Unknown"
-msgstr ""
+msgstr "Unbekannt"
#. gAY69
#: sfx2/source/devtools/DevToolsStrings.hrc:42
@@ -2929,10 +2929,10 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Hier können Sie Ihrem Dokument benutzerdefinierte Informationsfelder zuweisen."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
-msgstr ""
+msgstr "Seitenleiste schließen"
#. pxEPn
#: sfx2/uiconfig/ui/descriptioninfopage.ui:18
@@ -2999,31 +2999,31 @@ msgstr "Objekt"
#: sfx2/uiconfig/ui/developmenttool.ui:134
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
-msgstr ""
+msgstr "Aktuelle Auswahl im Dokument"
#. Po2S3
#: sfx2/uiconfig/ui/developmenttool.ui:135
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
-msgstr ""
+msgstr "Aktuelle Auswahl"
#. eB6NR
#: sfx2/uiconfig/ui/developmenttool.ui:147
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
-msgstr ""
+msgstr "Baumansicht des Dokumentenmodells aktualisieren"
#. FD2yt
#: sfx2/uiconfig/ui/developmenttool.ui:148
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
-msgstr ""
+msgstr "Aktualisieren"
#. x6GLB
#: sfx2/uiconfig/ui/developmenttool.ui:201
msgctxt "developmenttool|tooltip-back"
msgid "Back"
-msgstr ""
+msgstr "Zurück"
#. SinPk
#: sfx2/uiconfig/ui/developmenttool.ui:202
@@ -3035,7 +3035,7 @@ msgstr "Zurück"
#: sfx2/uiconfig/ui/developmenttool.ui:215
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
-msgstr ""
+msgstr "Prüfen"
#. vCciB
#: sfx2/uiconfig/ui/developmenttool.ui:216
@@ -3047,13 +3047,13 @@ msgstr "Prüfen"
#: sfx2/uiconfig/ui/developmenttool.ui:229
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
-msgstr ""
+msgstr "Aktualisieren"
#. CFuvW
#: sfx2/uiconfig/ui/developmenttool.ui:230
msgctxt "developmenttool|refresh"
msgid "Refresh"
-msgstr ""
+msgstr "Aktualisieren"
#. 6gFmn
#: sfx2/uiconfig/ui/developmenttool.ui:254
@@ -3096,7 +3096,7 @@ msgstr "Typ"
#: sfx2/uiconfig/ui/developmenttool.ui:464
msgctxt "developmenttool|info"
msgid "Info"
-msgstr ""
+msgstr "Info"
#. AUktw
#: sfx2/uiconfig/ui/developmenttool.ui:487
@@ -4302,7 +4302,7 @@ msgstr "Hier legen Sie die Druckereinstellungen und Druckoptionen fest."
#: sfx2/uiconfig/ui/panel.ui:74 sfx2/uiconfig/ui/panel.ui:79
msgctxt "panel|SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
-msgstr ""
+msgstr "Weitere Optionen"
#. QrtGb
#: sfx2/uiconfig/ui/password.ui:8
diff --git a/source/de/starmath/messages.po b/source/de/starmath/messages.po
index 3e7e149aa99..ee85ec31753 100644
--- a/source/de/starmath/messages.po
+++ b/source/de/starmath/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-08 14:40+0100\n"
-"PO-Revision-Date: 2021-03-08 13:45+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562561180.000000\n"
#. GrDhX
@@ -3740,7 +3740,7 @@ msgstr "Zeigt den Namen der aktuellen Schriftart an und dient zum Auswählen ein
#: starmath/uiconfig/smath/ui/symdefinedialog.ui:423
msgctxt "symdefinedialog|extended_tip|fontsSubsetLB"
msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above."
-msgstr "Wenn die Schriftart, die Sie im Listenfeld Schriftart gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in den das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt."
+msgstr "Wenn die Schriftart, die Sie im Listenfeld Schriftart gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in der das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt."
#. 8XjkA
#: starmath/uiconfig/smath/ui/symdefinedialog.ui:448
diff --git a/source/de/svtools/messages.po b/source/de/svtools/messages.po
index 3a23966a782..3bd5d70e037 100644
--- a/source/de/svtools/messages.po
+++ b/source/de/svtools/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-17 15:59+0100\n"
-"PO-Revision-Date: 2021-03-14 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -370,7 +370,7 @@ msgstr "OpenOffice.org 1.0 Writer/Web Objekt"
#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
-msgstr "OpenOffice.org 1.0 Writer/Global Objekt"
+msgstr "OpenOffice.org 1.0 Writer/Globalobjekt"
#. iEkCL
#: include/svtools/strings.hrc:86
@@ -2818,7 +2818,7 @@ msgstr "Katalanisch (Valencia)"
#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
-msgstr "Chinesisch (Trad.)"
+msgstr "Chinesisch (traditionell)"
#. Gbige
#: svtools/inc/langtab.hrc:72
@@ -5368,7 +5368,7 @@ msgstr "Ebene 1"
#: svtools/uiconfig/ui/graphicexport.ui:815
msgctxt "graphicexport|extended_tip|level1rb"
msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2."
-msgstr "Mit diesem Level ist keine Kompression möglich. Sollte der Drucker Level 2 nicht unterstützen, wählen Sie die Option Level 1."
+msgstr "Mit diesem Level ist keine Kompression möglich. Sollte der PostScript-Drucker Level 2 nicht unterstützen, wählen Sie die Option Level 1."
#. kuCNX
#: svtools/uiconfig/ui/graphicexport.ui:826
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index 4526e1b81d2..414dda37c0f 100644
--- a/source/de/svx/messages.po
+++ b/source/de/svx/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-28 12:37+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559619898.000000\n"
#. 3GkZj
@@ -818,7 +818,7 @@ msgstr "Reihenfolge von %1 umkehren"
#: include/svx/strings.hrc:158
msgctxt "STR_SortShapes"
msgid "Sort shapes"
-msgstr ""
+msgstr "Formen sortieren"
#. cALbH
#: include/svx/strings.hrc:159
@@ -7193,7 +7193,7 @@ msgstr "Einfügen"
#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
-msgstr ""
+msgstr "%1. Klicken Sie, um den Auswahlmodus zu ändern."
#. Dh5A2
#: include/svx/strings.hrc:1293
@@ -12971,7 +12971,7 @@ msgstr "Bedingung"
#: svx/uiconfig/ui/adddataitemdialog.ui:418
msgctxt "adddataitemdialog|extended_tip|calculatecond"
msgid "The Condition button opens the Add Condition dialog where you can enter the calculation."
-msgstr "Die Schaltfläche Bedingung öffnet den Dialog Bedingung hinzufügen, in den Sie die Berechnung eingeben können."
+msgstr "Die Schaltfläche Bedingung öffnet den Dialog Bedingung hinzufügen, in dem Sie die Berechnung eingeben können."
#. JEwfa
#: svx/uiconfig/ui/adddataitemdialog.ui:433
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 431f7f0e4f0..2e3eb0df514 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-29 14:08+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/de/>\n"
"Language: de\n"
@@ -752,7 +752,7 @@ msgstr "Typ des Umbruchs"
#: sw/inc/inspectorproperties.hrc:45
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Category"
-msgstr "Bereich"
+msgstr "Kategorie"
#. cd79Y
#: sw/inc/inspectorproperties.hrc:46
@@ -1538,7 +1538,7 @@ msgstr "Liste: Beschriftung"
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "Metadaten: Referenz"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
@@ -1574,7 +1574,7 @@ msgstr "Nummerierung: Startwert"
#: sw/inc/inspectorproperties.hrc:182
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Style Name"
-msgstr ""
+msgstr "Liste: Vorlagenname"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:183
@@ -2279,19 +2279,19 @@ msgstr "Gespiegelt"
#: sw/inc/strings.hrc:27
msgctxt "STR_STANDARD_LABEL"
msgid "Reset to ~Parent"
-msgstr ""
+msgstr "Auf Übergeordnete Vorlage zurücksetzen"
#. FRWsF
#: sw/inc/strings.hrc:28
msgctxt "STR_STANDARD_TOOLTIP"
msgid "Values on this tab specified in “Contains” in Organizer are removed."
-msgstr ""
+msgstr "Werte in diesem Register, die in \"Enthält\" im Register »Verwalten« angegeben sind, werden entfernt."
#. 9BAeq
#: sw/inc/strings.hrc:29
msgctxt "STR_STANDARD_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 current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Die Werte in diesem Register werden auf die entsprechenden Werte der im Register »Verwalten« unter »Basierend auf« angegebenen Vorlage gesetzt. In allen Fällen, auch wenn »Basierend auf« \"Kein\" ist, werden für dieses Register aktuelle die bei »Enthält« angegebenen Werte entfernt."
#. x2EUX
#: sw/inc/strings.hrc:30
@@ -2309,7 +2309,7 @@ msgstr "Nicht gespeicherte Änderungen in diesem Register werden rückgängig ge
#: 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 ""
+msgstr "Setzt alle im aktuellen Register vorgenommenen Änderungen auf die Einstellungen zurück, die beim Öffnen dieses Dialogs oder nach der letzten Verwendung von \"Anwenden\" vorhanden waren."
#. Lv4Ua
#: sw/inc/strings.hrc:33
@@ -2321,13 +2321,13 @@ msgstr "Anwenden"
#: sw/inc/strings.hrc:34
msgctxt "STR_APPLY_TOOLTIP"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with Reset."
-msgstr ""
+msgstr "Wendet die Änderungen für alle Register an, ohne den Dialog zu schließen. Dies kann nicht mit »Zurück« rückgängig gemacht werden."
#. FbPXG
#: sw/inc/strings.hrc:35
msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
-msgstr ""
+msgstr "Übernimmt alle Änderungen, ohne den Dialog zu schließen. Werte werden gespeichert und können nicht mit »Zurück« rückgängig gemacht werden."
#. MvGmf
#. Format names
@@ -3360,7 +3360,7 @@ msgstr "Querformat"
#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
-msgstr ""
+msgstr "Keine Liste"
#. mGZHb
#: sw/inc/strings.hrc:215
@@ -5600,7 +5600,7 @@ msgstr "Seiten"
#: sw/inc/strings.hrc:608
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
-msgstr ""
+msgstr "Liste"
#. NydLs
#: sw/inc/strings.hrc:609
@@ -5882,19 +5882,19 @@ msgstr "Ohne"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Klicken, um Gliederungsfaltung umzuschalten"
#. 44jEc
#: sw/inc/strings.hrc:659
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
-msgstr "Rechtsklicken Sie, um Unterebenen einzuschließen"
+msgstr "Rechtsklicken, um Unterebenen einzuschließen"
#. mnZA9
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Klicken, um Gliederungsfaltung umzuschalten"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5906,7 +5906,7 @@ msgstr "Rechtsklicken, um Unterebenen einzuschließen"
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Gliederungsfaltung"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5918,13 +5918,13 @@ msgstr "Umschalten"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Alles entfalten"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Alles einfalten"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -6472,7 +6472,7 @@ msgstr "Benutzerdefiniert 5"
#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_LOCAL_FILE"
msgid "Local file"
-msgstr ""
+msgstr "Lokale Datei"
#. nsCwi
#: sw/inc/strings.hrc:764
@@ -7603,7 +7603,7 @@ msgstr "Vorlagenname"
#: sw/inc/strings.hrc:980
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
-msgstr "Bereich"
+msgstr "Kategorie"
#. DB5nv
#. --------------------------------------------------------------------
@@ -8354,13 +8354,13 @@ msgstr "Teilen"
#: sw/inc/strings.hrc:1131
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
-msgstr ""
+msgstr "Listenvorlage: (%LISTSTYLENAME)"
#. HvZBm
#: sw/inc/strings.hrc:1132
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
-msgstr ""
+msgstr "Listenvorlage: (keine)"
#. QDaFk
#: sw/inc/strings.hrc:1133
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Benutzerdefiniert"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -9914,7 +9926,7 @@ msgstr "Geschütztes Leerzeichen einfügen"
#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
-msgstr ""
+msgstr "Rechts-nach-links-Ungarisch in Altungarisch umschreiben"
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -12926,7 +12938,7 @@ msgstr "Nach unten"
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
msgid "Edit Categories"
-msgstr "Bereiche bearbeiten"
+msgstr "Kategorien bearbeiten"
#. 2CmpG
#: sw/uiconfig/swriter/ui/editcategories.ui:42
@@ -12950,7 +12962,7 @@ msgstr "Ändert den Namen der ausgewählten AutoText-Kategorie in den Namen, den
#: sw/uiconfig/swriter/ui/editcategories.ui:154
msgctxt "editcategories|label3"
msgid "Selection list"
-msgstr "Auswahlliste"
+msgstr "Auswahlliste:"
#. 2L9md
#: sw/uiconfig/swriter/ui/editcategories.ui:212
@@ -12968,13 +12980,13 @@ msgstr "Zeigt den aktuellen Pfad zu dem Verzeichnis an, in dem die ausgewählten
#: sw/uiconfig/swriter/ui/editcategories.ui:244
msgctxt "editcategories|label2"
msgid "Path"
-msgstr "Pfad"
+msgstr "Pfad:"
#. zaAUf
#: sw/uiconfig/swriter/ui/editcategories.ui:258
msgctxt "editcategories|label1"
msgid "Category"
-msgstr "Kategorie"
+msgstr "Kategorie:"
#. k4DHd
#: sw/uiconfig/swriter/ui/editcategories.ui:277
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Öffnet einen Dialog zur Vorlagenauswahl."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Wählen Sie das Ausgangsdokument des Serienbriefes aus"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Geben Sie das Dokument an, das als Grundlage für das Serienbriefdokument verwendet werden soll."
@@ -20214,7 +20232,7 @@ msgstr "Alle löschen"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Gliederungsfaltung"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -21973,7 +21991,7 @@ msgstr "Zugewiesene Listenvorlage"
#: sw/uiconfig/swriter/ui/numparapage.ui:147
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "No List"
-msgstr ""
+msgstr "Keine Liste"
#. hRgAM
#: sw/uiconfig/swriter/ui/numparapage.ui:151
@@ -24307,13 +24325,13 @@ msgstr "Absatz"
#: sw/uiconfig/swriter/ui/paradialog.ui:32
msgctxt "paradialog|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "Nicht gespeicherte Änderungen in diesem Register werden rückgängig gemacht."
#. Gw9vR
#: sw/uiconfig/swriter/ui/paradialog.ui:35
msgctxt "paradialog|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 "Setzt alle Änderungen, die im hier angezeigten Register vorgenommen wurden, auf die Einstellungen zurück, die beim Öffnen dieses Dialogs vorhanden waren."
#. 6xRiy
#: sw/uiconfig/swriter/ui/paradialog.ui:159
@@ -27323,7 +27341,7 @@ msgstr "Verwalten"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
-msgstr ""
+msgstr "Benutzerdefinierte Vorlagen benennen und ausblenden"
#. 7o8No
#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
@@ -27335,7 +27353,7 @@ msgstr "Ungeordnet"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
-msgstr ""
+msgstr "Wählen Sie einen vordefinierten Aufzählungstyp"
#. uCBn4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:264
@@ -27347,7 +27365,7 @@ msgstr "Geordnet"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
-msgstr ""
+msgstr "Wählen Sie eine vordefinierte geordnete Liste"
#. D9oKE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:313
@@ -27359,7 +27377,7 @@ msgstr "Gliederung"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:314
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
-msgstr ""
+msgstr "Wählen Sie ein vordefiniertes Gliederungsformat"
#. Dp6La
#: sw/uiconfig/swriter/ui/templatedialog16.ui:362
@@ -27371,7 +27389,7 @@ msgstr "Bild"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:363
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
-msgstr ""
+msgstr "Wählen Sie ein vordefiniertes grafisches Aufzählungszeichen"
#. K55K4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:411
@@ -27383,7 +27401,7 @@ msgstr "Position"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
-msgstr ""
+msgstr "Ändern Sie Einzug, Abstand und Ausrichtung für Zeilennummern oder Symbole"
#. g5NQF
#: sw/uiconfig/swriter/ui/templatedialog16.ui:460
@@ -27395,7 +27413,7 @@ msgstr "Anpassen"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:461
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
-msgstr ""
+msgstr "Gestalten Sie Ihr eigenes Listen- oder Gliederungsformat"
#. 6ozqU
#: sw/uiconfig/swriter/ui/templatedialog2.ui:8
@@ -29315,7 +29333,7 @@ msgstr "Einstellungen"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "_Schaltflächen zur Gliederungsfaltung anzeigen"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29327,7 +29345,7 @@ msgstr "Unterebenen einschließen"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Gliederungsfaltung"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 46bf7e9e436..fb18d83c704 100644
--- a/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-03-08 13:45+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/swextmediawikisrcregistrydataorgopenofficeofficecustom/de/>\n"
"Language: de\n"
@@ -94,7 +94,7 @@ msgctxt ""
"Dlg_EditSetting_UrlLabel\n"
"value.text"
msgid "U~RL"
-msgstr "U~RL"
+msgstr "U~RL:"
#. Nisvz
#: WikiExtension.xcu
@@ -104,7 +104,7 @@ msgctxt ""
"Dlg_EditSetting_UsernameLabel\n"
"value.text"
msgid "~Username"
-msgstr "~Nutzername"
+msgstr "~Nutzername:"
#. rRpmN
#: WikiExtension.xcu
@@ -114,7 +114,7 @@ msgctxt ""
"Dlg_EditSetting_PasswordLabel\n"
"value.text"
msgid "~Password"
-msgstr "~Kennwort"
+msgstr "~Kennwort:"
#. J2PDr
#: WikiExtension.xcu
diff --git a/source/de/vcl/messages.po b/source/de/vcl/messages.po
index 553c8071443..573ae72f58c 100644
--- a/source/de/vcl/messages.po
+++ b/source/de/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/de/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Trenner"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/de/wizards/messages.po b/source/de/wizards/messages.po
index 6d9eedde942..f952df8d6bf 100644
--- a/source/de/wizards/messages.po
+++ b/source/de/wizards/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-03-14 21:36+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
+"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -1052,7 +1052,7 @@ msgstr "Name und Ort"
#: wizards/com/sun/star/wizards/common/strings.hrc:223
msgctxt "RID_AGENDAWIZARDDIALOG_START_1"
msgid "Agenda Wizard"
-msgstr "Tagesordnungs-Assistent"
+msgstr "Tagesordnungsassistent"
#. AV2GE
#: wizards/com/sun/star/wizards/common/strings.hrc:224
diff --git a/source/de/wizards/source/resources.po b/source/de/wizards/source/resources.po
index 017a8ecdb7f..94b00898d8e 100644
--- a/source/de/wizards/source/resources.po
+++ b/source/de/wizards/source/resources.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2021-03-28 12:36+0000\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/de/>\n"
"Language: de\n"
@@ -221,7 +221,7 @@ msgctxt ""
"RID_REPORT_0\n"
"property.text"
msgid "Report Wizard"
-msgstr "Berichts-Assistent"
+msgstr "Berichtsassistent"
#. BZtXG
#: resources_en_US.properties
@@ -4793,7 +4793,7 @@ msgctxt ""
"DialogTitle\n"
"property.text"
msgid "Document Converter"
-msgstr "Dokumenten-Konverter-Assistent"
+msgstr "Dokumentkonverter-Assistent"
#. 6hySA
#: resources_en_US.properties
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index 1788387de05..9974a5c4fd3 100644
--- a/source/dgo/cui/messages.po
+++ b/source/dgo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3571,10 +3571,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9225,6 +9225,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9532,13 +9550,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14849,163 +14867,169 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "विस्तृत नुस्खे "
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज नांऽ \\ वस्तुस्थितिः "
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ते"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टम शुरू होने दरान %PRODUCTNAME लोड करो "
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray तुर्त-शुरूकर्ता गी असमर्थ करो"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17769,33 +17793,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
index 6ea679cb942..62ae548e44c 100644
--- a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29158,6 +29158,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "सि्थति ते नाप\t"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/dgo/sfx2/messages.po b/source/dgo/sfx2/messages.po
index 326a89ebeee..43b907d0a01 100644
--- a/source/dgo/sfx2/messages.po
+++ b/source/dgo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2946,7 +2946,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index 6c21552f0da..3210d2db3d9 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10031,6 +10031,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "विशेश: "
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20704,15 +20716,21 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "मेल विलय लेई शुरुआती दस्तावेज चुनो"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/dgo/vcl/messages.po b/source/dgo/vcl/messages.po
index d0a106749d7..876cca46af2 100644
--- a/source/dgo/vcl/messages.po
+++ b/source/dgo/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1177,8 +1177,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/dsb/cui/messages.po b/source/dsb/cui/messages.po
index 510af77dedb..e956d5a2ba1 100644
--- a/source/dsb/cui/messages.po
+++ b/source/dsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-01-28 07:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/dsb/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Pismowe funkcije"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Pśeglěd"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Pismowe nastajenja za HTML, Basic a SQL-žrědła"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Rozšyrjone pokazki"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Wuskokujuce wokno „Pomoc offline njeinstalěrowana“ pokazaś"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Dialog „Pokazka dnja“ pśi startowanju pokazaś"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Dialogi %PRODUCTNAME wužywaś"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogi wócyniś/składowaś"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dialogi %PRODUCTNAME wužywaś"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Śišćarske dialogi"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Śišćanje _status \"dokument změnjony\" staja"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentowy status"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretěrowaś ako lěta mjazy "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Lěto (dwuměstnowe)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Wužywańske daty gromaźiś a na załožbu The Document Foundation pósłaś"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Załož_bje Document Foundation wowaleńske rozpšawy pósłaś"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc pśi pólěpšanju %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME za systemowy start zacytaś"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Malsny startowak zmóžniś"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Malsny startowak %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Standardne nałoženja Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Datajowe zwězanja %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Wugótowańske nastajenja"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 93ebc57321c..d81c67307d3 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/dsb/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozicija a wjelikosć"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/dsb/sfx2/messages.po b/source/dsb/sfx2/messages.po
index 34991dbf664..11700666d7e 100644
--- a/source/dsb/sfx2/messages.po
+++ b/source/dsb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/dsb/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Zmóžnja wam, dokumentoju swójske informaciske póla pśipokazaś."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Bocnicu zacyniś"
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index abdd8959179..b3197f6fc74 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-09 16:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/dsb/>\n"
@@ -9798,6 +9798,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Swójski"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20038,14 +20050,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Wubjeŕśo startowy dokument za serijowy list"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/dsb/vcl/messages.po b/source/dsb/vcl/messages.po
index e100e437c89..3a29fdc4ebd 100644
--- a/source/dsb/vcl/messages.po
+++ b/source/dsb/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/dsb/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Žěleńska linija"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index b534fa38b26..0684edfcf4c 100644
--- a/source/dz/cui/messages.po
+++ b/source/dz/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3569,10 +3569,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9203,6 +9203,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "གིས་ མེཀ་རོ་འདི་ལས་རིམ་བྱུང་ལས་ཚུ་ལུ་འགན་སྤྲོད་འབདཝ་ཨིན། འགན་སྤྲོད་འབད་ཡོད་པའི་མེཀ་རོ་འདི་ཨ་རྟག་རང་ སེལ་འཐུ་འབད་ཡོད་པའི་བྱུང་ལས་བྱུངམ་ད་ རང་བཞིན་གྱིས་ གཡོག་བཀོལཝ་ཨིན།"
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9512,13 +9530,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14795,164 +14813,170 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "རྒྱ་བསྐྱེད་ཕན་སླབ།"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "ཁྱོད་ཀྱིས་འོད་རྟགས་འདི་ངོས་དཔར་དང་དཀར་ཆག་བརྡ་བཀོད་གུ་ངལ་འཚོཝ་ད་ ཡང་ན་ ཌའི་ལོག་གུ་ཚད་འཛིན་ངལ་འཚོ་བའི་སྐབས་གྲོགས་རམ་ཚིག་ཡིག་བཀྲམ་སྟོན་འབདཝ་ཨིན།"
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "གྲོགས་རམ།"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ཌའི་ལོགསི།"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ཌའི་ལོགསི།"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "ཡིག་ཆ་གི་དཔར་བསྐྲུན་འདི་ལེགས་བཅོས་སྦེ་གྱངས་ཁ་བརྐྱབ་ཨིན་ན་གསལ་བཀོད་འབདཝ་ཨིན། "
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Name\\tStatus"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Defines a date range, within which the system recognizes a two-digit year."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "དང་།"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME འགོ་བཙུགས་རིམ་ལུགས་སྐབས་ མངོན་གསལ་འབད།"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "རིམ་ལུགས་ཤོག་སྣོད་ཀུའིཀ་སི་ཊ་ཊར་ ལྕོགས་མིན་བཟོ་"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "%PRODUCTNAME གི་དོན་ལས་ཡོངས་ཁྱབ་སྒྲིག་སྟངས་ཚུ་གསལ་བཀོད་འབདཝ་ཨིན།"
@@ -17716,33 +17740,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/dz/helpcontent2/source/auxiliary.po b/source/dz/helpcontent2/source/auxiliary.po
index c3bc73bfea8..ee523c205e7 100644
--- a/source/dz/helpcontent2/source/auxiliary.po
+++ b/source/dz/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared.po b/source/dz/helpcontent2/source/text/sbasic/shared.po
index 30c0be03174..35f544b7afe 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>ཡིག་སྣོད་སྟོངམ་ལས་འགན</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "ཡིག་སྣོད་ཁ་ཕྱེ་ནིའི་དོན་ལུ་ཤུལ་མམ་གྱི་ཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཨང་དེ་སླར་ལོགཔ་ཨིན། ཡིག་སྣོད་ཨང་ལག་ལེན་འཐབ་མི་ཡིག་སྣོད་ད་ལྟོ་ཁ་ཕྱེ་ཡིག་སྣོད་ཀྱིས་ཧེ་མ་ལས་ལག་ལེན་མ་འཐབ་མི་ལུ་ཁ་ཕྱེ་ནིའི་དོན་ལུ་འ་ནི་ལས་འགན་དེ་ལག་ལེན་འཐབ།"
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "གནས་གོང་སླར་ལོག:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "འ་ནི་ལས་འགན་དེ་ཁ་ཕྱེ་གསལ་བཤད་ཀྱི་གདོང་ཁ་དེ་འཕྲལ་ལས་ལག་ལེན་འཐབ་བཏུབ་ཨིན། རང་དབང་ཡིག་སྣོད་ཀྱིས་ཤུལ་མམ་ཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཨང་དེ་སླར་ལོགཔ་ཨིན་རུང་་ ཟུར་གསོག་མི་འབད།"
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "དཔར་བསྐྲུན་ #ཨའི་ཨང་ \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "དཔར་བསུཔ་ #ཨའི་ཨང་། \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "#ཨའི་ཨང་དཔར་བསྐྲུན་འབད། \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "དཔར་བསྐྲུན་འབད #ཨའི་ཨང \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "འཕྲིན་དོན་སྒྲོམ \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "འཚོལ#ཨའི་ཨང་ ༡ རིམ་གནས་ས་འགོ་བཙུགས་ད་ལུ།"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "#ཨའི་ཨང་བཙུགས་ \"This is the first line of text\" རིམ་ ཚིག་ཡིག་གཅིག་ཁར་གྱལ་བཀང་།"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "བཙུགས#ཨའི་ཨང་ \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "བཙུགས #ཨའི་ཨང་ \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "བཙུགས #ཨའི་ཨང་\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "བཙུགས#ཨའི་ཨང་ ༢༠ \"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>ཨིན་པུཊི་་གསལ་བཤད</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་བདའ་ཟུན་ཡོད་པ་ཅིན་ཡིག་སྣོད་དཔག་བྱེད་འདི་གཏན་འབེབས་བཟོཝ་ཨིན།"
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "ཨི་གི (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "གནས་གོང་སླར་ལོག:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "བུལ།"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "ཁྱོད་ཀྱིས་ཡིག་སྣོད་ཀྱི་མཇུག་ཨིན་པུཊི་ལེན་ནི་ལུ་དཔའ་བཅམ་མིའི་སྐབས་འཛོལ་བ་ཚུ་ཟུར་ནི་ལུ་ ཨི་ཨོ་ཨེཕ་་ལག་ལེན་འཐབ། ཁྱོད་ཀྱིས་ཨིན་པུཊི་ ཡང་ན་ལེན་གསལ་བཤད་་ཡིག་སྣོད་ལས་ལྷག་ནི་ལུ་ལག་ལེན་འཐབ་ད་ ཡིག་སྣོད་དཔག་བྱེད་དེ་ བཱའིཊིསི་ལྷག་ནི་གི་ཨང་གིས་འབད་རྔ་གཡར་འབད་ཡོདཔ་ཨིན། ཡིག་སྣོད་དེ་གི་མཇུག་དེ་ལྷོདཔ་ད་ ཨི་ཨོ་ཨེཕ་གིས་གནས་གོང་ \"True\" (-༡)སླར་ལོགཔ་ཨིན།"
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "དཔར་བསྐྲུན་ #ཨའི་ཨང་ \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "དཔར་བསུཔ་ #ཨའི་ཨང་། \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "བཱའིཊིསི་ནང་ཡིག་སྣོད་ཀུན་གྱི་ཚད་འདི་སླར་ལོགཔ་ཨིན།"
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "ཨེལ་གྱི་ (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "གནས་གོང་སླར་ལོག:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "རིངམོ།"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "ཡིག་སྣོད་ཀྱི་རིང་ཚད་འདི་ལེན་ནི་ལུ་ཁ་མ་ཕྱེ་བ་ཅིན་ <emph>ཡིག་སྣོད་ལིན</emph> ལས་འགན་ལག་ལེན་འཐབ།"
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "མདངས་གྲིབ་ཨེསི་ཚིག་ཡིག་མི་མཐུན་པ་བཟུམ་སྦེ་ཨར་ཨི་ཨེམ་དེ་མི་མཐུན་པ་དགོཔ་ཨིན།"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "#ཨའི་ཨང་ ༡་ རིམ་གནས་ས་འགོ་བཙུགས་ལུ།"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "#ཨའི་ཨང་བཙུགས \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "བཙུགས#ཨའི་ཨང་ \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "བཙུགས #ཨའི་ཨང་ \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "#ཨའི་ཨང་བཙུགས\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "བཙུགས#ཨའི་ཨང་ ༢༠ \"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "བལྟ་ཡང་: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">ཕྱེ</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "ཡིག་སྣོད་ཨེཊར (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "གནས་གོང་སླར་ལོག:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "ཧྲིལ་ཨང་།"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "༣༢ - ཟུང་ལྡན (file open in binary mode)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "དཔར་བསྐྲུན་འབད#ཨའི་ཨང་ \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "འཕྲིན་དོན་སྒྲོམ་ཡིག་སྣོད་ཨཊར(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "འཕྲིན་དོན་སྒྲོམ་ཡིག་སྣོད་ཨཊར(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "ཡིག་སྣོད་གཅིག་ཌིཀསི་ལས་བཏོན་གཏངམ་ཨིན།"
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "གསད་ཡིག་སྣོད་ཡིག་རྒྱུན་བཟུམ་སྦེ།"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>ཡིག་སྣོད:</emph> ཡིག་རྒྱུན་གསལ་བརྗོད་གང་རུང་ངེས་མེད་ཡིག་སྣོད་གསལ་བཀོད་འདི་ནང་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ཡང་ <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">ཡི་ཨར་ཨེལ་དབྱངས་རྟགས་ལག་ལེན་འཐབ་བཏུབ་ཨིན།</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "གསད་ \"C:\\datafile.dat\" ཨར་ཨི་ཨེམ་ ཡིག་སྣོད་འདི་རྔ་གཡར་ནང་གསར་བསྐྲུན་འབད་དགོཔ་ཨིན།"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "འཛོལ་བ་འབྱུང་ཚ་བའི་ཤུལ་ལུ་འཛོལ་བ་ལེགས་སྐྱོང་པ་རྒྱུན་ལས་ཅིག་ལྕོགས་ཅན་བཟོཝ་ ཡང་ན་ལས་རིམ་ལག་ལེན་འཐབ་ནི་བསྐྱར་ལོག་འབདཝ་ཨིན།"
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "དཔར་བསྐྲུན་འབད#ཨའི་ཨང་ \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "འཕྲིན་དོན་སྒྲོམ \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>ཨེམ་ཨོ་ཌི་བཀོལ་སྤྱོད་པ་ (mathematical)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "བགོ་ནི་གི་ལྷག་ལུས་ཧྲིལ་ཨང་འདི་སླར་ལོགཔ་ཨིན།"
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "ཚིག་སྦྱོར:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "འགྲུབ་འབྲས་ = གསལ་བརྗོད་ ༡ ཨེམ་ཨོ་ཌི་ གསལ་བརྗོད་ ༢"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "གནས་གོང་སླར་ལོག:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "ཧྲིལ་ཨང་།"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "ཚད་བཟུང་ཚུ་:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph>ཨང་གྲངས་ཀྱི་འགྱུར་ཅན་ཨེམ་ཨོ་ཌི་བཀོལ་སྤྱོད་པ་འདིའི་འགྲུབ་འབྲས་ནང་ན་ཡོད་མི་ཨིན།"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> ཨང་གྲངས་ཀྱི་གསལ་བརྗོད་ཁྱོད་ཀྱིས་བགོ་ནི་ཨིན་མི།"
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "དཔེར་བརྗོད:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "འགྲུབ་འབྲས་ = གསལ་བརྗོད་ ༡ ཨེམ་ཨོ་ཌི་ གསལ་བརྗོད་ ༢"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "དཔར་བསྐྲུན་འབད ༡༠ མོཌི ༢.༥ REM སླར་ལོགཔ 0"
+msgid "Integer"
+msgstr "ཧྲིལ་ཨང་།"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "དཔར་བསྐྲུན་འབད ༡༠ / ༢.༥ REM སླར་ལོགཔ 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "དཔར་བསྐྲུན་འབད ༡༠ མོཌི ༥ REM སླར་ལོགཔ 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
+"help.text"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
+
+#. C5zCg
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "བསྐྲུན་འབད ༡༠ / ༥ REM སླར་ལོགཔ 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "དཔར་བསྐྲུན་འབད ༥ མོཌི ༡༠ REM སླར་ལོགཔ 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "དཔར་བསཀྲུན་འབད ༥ / ༡༠ REM སླར་ལོགཔ 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "ག་བསྡུར་བཀོལ་སྤྱོདཔ་ཚུ།"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">ག་བསྡུར་བཀོལ་སྤྱོདཔ་ཚུ</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "ཐོབ་ཚུགས་པའི་ག་བསྡུར་བཀོལ་སྤྱོད་པ་ཚུ་ན་ལུ་འགྲེལ་བཤད་རྐྱབས་ཡོདཔ་ཨིན།"
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared/03.po b/source/dz/helpcontent2/source/text/sbasic/shared/03.po
index e837b9b8e3f..20f1be8c3f6 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/dz/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index 85475540db7..0e4fffbb90d 100644
--- a/source/dz/helpcontent2/source/text/scalc/01.po
+++ b/source/dz/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">དེ་གིས་ ཨང་གྲངས་འདི་ཚུ་བཅུ་ཚག་གནས་ས་ཚུ་དང་ གདམ་ཁ་ཅན་གྱི་དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་གི་ཨང་གྲངས་གསལ་བཀོད་འབད་ཡོད་མི་ཅིག་དང་ཅིག་ཁར་ ཨང་གྲངས་ཅིག་སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph> ཨང་ </emph> འདི་ རྩ་སྒྲིག་འབད་ནི་ཨིན་པའི་ཨང་ལུ་གཞི་བསྟུན་འབདཝ་ཨིན།"
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph> བཅུ་ཚག་ཚུ་ </emph> བཀྲམ་སྟོན་འབད་ནི་ཨིན་པའི་ བཅུ་ཚག་ས་གནས་ཚུའི་གྱངས་ཁ་ལུ་ གཞི་བསྟུན་འབདཝ་ཨིན།"
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph> སྟོང་ཕྲག་དབྱེ་བྱེད་ (གདམ་ཁ་ཅན་) ཚུ་ག་གིས་ཡང་ དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་ལག་ལེན་འཐབ་ཡོད་མེད་ </emph> གཏན་འབེབས་བཟོ་ནི་མེདཔ་ཨིན། ཚད་བཟུང་དེ་ ༠ དང་མ་མཉམ་མི་ཨང་གྲངས་ཨིན་པ་ཅིན་ དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་ མར་མནོན་འབད་ཡོདཔ་ཨིན། ཚད་བཟུང་དེ་ ༠ དང་མཉམ་པའམ་དེ་བརླག་སྟོར་ཞུགས་ཡོད་པ་ཅིན་ ཁྱོད་རའི་ <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\"> ད་ལྟོའི་ལོ་ཀེལ་སྒྲིག་སྟངས་ཀྱི་ </link> དབྱེ་བྱེད་སྟོང་ཕྲག་ཚུ་བཀྲམ་སྟོན་འབད་ཡོདཔ་ཨིན།"
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index 708fe7d792f..0356cc5cccf 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "མེཀ་རོ་འདི་འགན་སྤྲོད་འབད།"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/dz/helpcontent2/source/text/swriter/01.po b/source/dz/helpcontent2/source/text/swriter/01.po
index 3ed1ff0c9b3..b56d57de44c 100644
--- a/source/dz/helpcontent2/source/text/swriter/01.po
+++ b/source/dz/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">ཐོ་ཡིག་ནང་ལུ་རྣམ་གྲངས་ཅིག་སེལ་འཐུ་འབད་དེ་ རྣམ་གྲངས་དེ་སྤོ་བཤུད་འབད་ནིའི་དོན་ལུ་ མདའ་རྟགས་ཨེབ་རྟ་ཅིག་ལུ་ཨེབ་གཏང་འབད།</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "གློག་འཕྲིན་ཕྲིན་དོན་"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "གློག་འཕྲིན་ཕྲིན་དོན་"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/dz/helpcontent2/source/text/swriter/guide.po b/source/dz/helpcontent2/source/text/swriter/guide.po
index d523e7142f3..121262933f0 100644
--- a/source/dz/helpcontent2/source/text/swriter/guide.po
+++ b/source/dz/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "བརྗོད་ཚིག་གི་ཡིག་གུ་དང་པ་འདི་ཚུགས་ཡིག་བཟོ་ནི་བཀག་ནིའི་དོན་ལས་:"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
index 197c151451f..cd007e9ae1d 100644
--- a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29107,6 +29107,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "གནས་ས་དང་ ཚད།(~z)"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/dz/sfx2/messages.po b/source/dz/sfx2/messages.po
index 2b7f29902e5..24d37744dd5 100644
--- a/source/dz/sfx2/messages.po
+++ b/source/dz/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2928,7 +2928,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "གིས་ ་ཁྱོད་རའི་ཡིག་ཆ་ལུ་ སྲོལ་སྒྲིག་བརྡ་དོན་འདི་འཛུལ་སྤྱོད་འབད་བཅུགཔ་ཨིན།"
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index 21055cb8802..03074d435e4 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10069,6 +10069,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "སྲོལ་སྒྲིག་"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20779,14 +20791,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/dz/vcl/messages.po b/source/dz/vcl/messages.po
index 2024342264a..886c8c43a1e 100644
--- a/source/dz/vcl/messages.po
+++ b/source/dz/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1177,8 +1177,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index 67320d48278..c9d15ddb745 100644
--- a/source/el/cui/messages.po
+++ b/source/el/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-30 09:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562571180.000000\n"
#. GyY9M
@@ -3548,11 +3548,11 @@ 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 "Η διεπαφή ομαδοποιημένης γραμμής παρέχει πρόσβαση σε λειτουργίες ομάδων, με εικονίδια για τα πιο συχνά χρησιμοποιούμενα γνωρίσματα και πτυσσόμενα μενού για τα άλλα. Αυτή η πλήρης παραλλαγή ευνοεί τις λειτουργίες και είναι ελαφρά μεγαλύτερη από τις άλλες."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
+msgstr ""
#. eGMCZ
#: cui/inc/toolbarmode.hrc:29
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Αναθέτει μακροεντολές σε γεγονότα προγράμματος. Η αντίστοιχη μακροεντολή εκτελείται αυτόματα κάθε φορά που συμβαίνει το επιλεγμένο γεγονός."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Χαρακτηριστικά γραμματοσειράς"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Προεπισκόπηση"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Επιλέξτε και εφαρμόστε τυπογραφικά χαρακτηριστικά στους χαρακτήρες."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Ρυθμίσεις γραμματοσειράς για πόρους HTML, Basic και SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Εκτεταμένες συμβουλές"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Εμφανίζει ένα κείμενο βοήθειας όταν τοποθετείτε τον δρομέα πάνω σε ένα εικονίδιο, μία εντολή μενού, ή σε έναν έλεγχο πάνω σε ένα παράθυρο διαλόγου."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Εμφάνιση αναδυόμενου \"Δεν έχει εγκατασταθεί βοήθεια χωρίς σύνδεση\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Εμφάνιση του διαλόγου \"Συμβουλή της ημέρας\" κατά την εκκίνηση"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Βοήθεια"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Χρήση διαλόγων του %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Διάλογοι Άνοιγμα/Αποθήκευση"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Χρήση διαλόγων του %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Διάλογοι εκτύπωσης"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Η εκτύπωση ορίζει την κατάσταση \"τροποποιημένο έγγραφο\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Καθορίζει αν η εκτύπωση του εγγράφου μετράει ως τροποποίηση."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Κατάσταση εγγράφου"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Να ερμηνεύεται ως χρόνια μεταξύ "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Μπορείτε να ορίσετε ένα εύρος ημερομηνίας, μέσα στην οποία το σύστημα αναγνωρίζει ένα διψήφιο έτος."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "και "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Έτος (δύο ψηφία)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Συλλογή δεδομένων χρήσης και αποστολή της στη Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Αποστείλετε δεδομένα χρήσης για να βοηθήσετε το Document Foundation να βελτιώσει τη χρηστικότητα του λογισμικού."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Αποσ_τολή αναφορών κατάρρευσης στο Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Βοηθήστε στη βελτίωση του %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Φόρτωση του %PRODUCTNAME κατά την εκκίνηση του συστήματος"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ενεργοποίηση γρήγορης εκκίνησης περιοχής ειδοποιήσεων"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Γρήγορη έναρξη του %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Προεπιλεγμένες εφαρμογές παραθύρων"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Συσχετίσεις αρχείων του %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Καθορίζει τις γενικές ρυθμίσεις για το %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Επάνω"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr "Το παρασκήνιο καλύπτει περιθώρια"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr "Οποιοδήποτε παρασκήνιο θα καλύψει επίσης τα περιθώρια της σελίδας"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr "Εάν ενεργοποιηθεί, τότε οποιοδήποτε παρασκήνιο θα καλύψει ολόκληρη τη σελίδα, συμπεριλαμβανομένων των περιθωρίων. Εάν απενεργοποιηθεί, οποιοδήποτε παρασκήνιο θα καλύψει τη σελίδα μόνο εσωτερικά των περιθωρίων."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Ρυθμίσεις διάταξης"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/el/helpcontent2/source/auxiliary.po b/source/el/helpcontent2/source/auxiliary.po
index 369bb1389eb..1d271096727 100644
--- a/source/el/helpcontent2/source/auxiliary.po
+++ b/source/el/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-02 11:49+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564479362.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Αναφορά εντολών"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Συναρτήσεις, προτάσεις και τελεστές"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Αλφαβητική λίστα συναρτήσεων, δηλώσεων και τελεστών"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/el/helpcontent2/source/text/sbasic/shared.po b/source/el/helpcontent2/source/text/sbasic/shared.po
index f3c7ee94b4e..354e92a3679 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-30 10:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/el/>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>Συνάρτηση FreeFile</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Συνάρτηση FreeFile\">Συνάρτηση FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Επιστρέφει τον αριθμό του επόμενου διαθέσιμου αρχείου για άνοιγμα. Αυτό είναι χρήσιμο όταν θέλετε να ανοίξετε ένα αρχείο επιπρόσθετα σε άλλα ήδη ανοιγμένα αρχεία, και να διασφαλίσετε ότι ο αριθμός αρχείου δεν χρησιμοποιείται ήδη."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Τιμή επιστροφής:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Ακέραιος"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Αυτή η συνάρτηση πρέπει να χρησιμοποιείται ακριβώς πριν την πρόταση Open. Η συνάρτηση FreeFile επιστρέφει τον επόμενο διαθέσιμο αριθμό αρχείου, αλλά δεν τον δεσμεύει."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Πρώτη γραμμή κειμένου\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Μια άλλη γραμμή κειμένου\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10161,6 +10107,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Αυτή είναι μια άλλη γραμμή κειμένου\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10215,14 +10188,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Αυτή είναι μια νέα γραμμή κειμένου\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Όλα τα αρχεία θα κλείσουν\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10368,50 +10341,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Τοποθέτηση στη αρχή"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Αυτή είναι η πρώτη γραμμή κειμένου\" ' Συμπληρώστε τη γραμμή με κείμενο"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Αυτή είναι η δεύτερη γραμμή κειμένου\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Αυτή είναι η τρίτη γραμμή κειμένου\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Αυτό είναι νέο κείμενο\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Αυτό είναι το κείμενο στην εγγραφή 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10431,14 +10467,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Δήλωση Input</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Πρόταση Input#\">Πρόταση Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10881,15 +10917,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Καθορίζει αν ο δείκτης αρχείου έφτασε στο τέλος του αρχείου."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10899,15 +10926,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Τιμή επιστροφής:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10917,15 +10935,6 @@ msgctxt ""
msgid "Bool"
msgstr "Μπουλ"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10944,33 +10953,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Χρησιμοποιήστε τη συνάρτηση EOF για να αποφύγετε σφάλματα όταν προσπαθείτε να λάβετε δεδομένα εισόδου πέρα από το τέλος του αρχείου. Όταν χρησιμοποιείτε τις προτάσεις Input ή Get για ανάγνωση από ένα αρχείο, ο δείκτης αρχείου προωθείται πέρα από το πλήθος των byte που αναγνώσθηκαν. Αν έφτασε στο τέλος του αρχείου, η συνάρτηση EOF επιστρέφει την τιμή \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Πρώτη γραμμή κειμένου\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Μια άλλη γραμμή κειμένου\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11115,15 +11097,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Επιστρέφει το μέγεθος ενός ανοιχτού αρχείου σε byte."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11133,15 +11106,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Τιμή επιστροφής:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11151,15 +11115,6 @@ msgctxt ""
msgid "Long"
msgstr "Μεγάλου μήκους"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11178,78 +11133,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Για να λάβετε το μήκος ενός αρχείου που δεν είναι ανοιχτό, χρησιμοποιήστε τη συνάρτηση <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM πρέπει να είναι Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Τοποθέτηση στην αρχή"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Αυτή είναι η πρώτη γραμμή κειμένου\" REM Συμπληρώστε με κείμενο"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Αυτή είναι η δεύτερη γραμμή κειμένου\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Αυτή είναι η τρίτη γραμμή κειμένου\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Αυτή είναι μια νέα γραμμή κειμένου\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Αυτό είναι το κείμενο στην εγγραφή 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11934,15 +11817,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Δείτε επίσης: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11952,15 +11826,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (ΑριθμόςΑρχείου ως ακέραιος, γνώρισμα ως ακέραιος)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Τιμή επιστροφής:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11970,15 +11835,6 @@ msgctxt ""
msgid "Integer"
msgstr "Ακέραιος"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12069,15 +11925,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (αρχείο ανοιχτό σε δυαδική κατάσταση)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12087,23 +11934,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Αυτή είναι μια γραμμή κειμένου\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Κατάσταση πρόσβασης\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Γνώρισμα αρχείου\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12663,15 +12510,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Διαγράφει ένα αρχείο από τον δίσκο."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12681,15 +12519,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12699,23 +12528,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Κάθε παράσταση συμβολοσειράς που περιέχει ένα σαφή καθορισμό αρχείου. Η <link href=\"text/sbasic/shared/00000002.xhp\" name=\"γραφή URL\">γραφή URL</link> μπορεί επίσης να χρησιμοποιηθεί."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Το αρχείο θα πρέπει να έχει δημιουργηθεί εκ των προτέρων"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17757,15 +17577,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Ενεργοποιεί μια ρουτίνα χειρισμού σφάλματος αφού παρουσιαστεί κάποιο σφάλμα ή επαναφέρει την εκτέλεση του προγράμματος."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17784,15 +17595,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17838,15 +17640,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Η δήλωση On Error GoTo χρησιμοποιείται για αντίδραση στα σφάλματα που συμβαίνουν σε μια μακροεντολή."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17856,14 +17649,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Αυτή είναι μια γραμμή κειμένου\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Όλα τα αρχεία θα κλείσουν\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19296,149 +19089,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Τελεστής Mod (μαθηματικός)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Τελεστής Mod\">Τελεστής Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Επιστρέφει το ακέραιο υπόλοιπο μιας διαίρεσης."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Σύνταξη:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Τιμή επιστροφής:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Ακέραιος"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Παράμετροι:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph> Κάθε αριθμητική μεταβλητή που περιέχει το αποτέλεσμα μιας πράξης MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> Οι αριθμητικές παραστάσεις που πρόκειται να διαιρεθούν."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Παράδειγμα:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 ' Επιστρέφει 0"
+msgid "Integer"
+msgstr "Ακέραιος"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' επιστρέφει 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 ' επιστρέφει 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 ' επιστρέφει 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 mod 10 ' επιστρέφει 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 ' επιστρέφει 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30285,33 +30087,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr "Συναρτήσεις <link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> και <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link>"
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Τελεστές σύγκρισης"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Τελεστές σύγκρισης\">Τελεστές σύγκρισης</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Εδώ περιγράφονται οι διάφοροι διαθέσιμοι τελεστές σύγκρισης."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/shared/03.po b/source/el/helpcontent2/source/text/sbasic/shared/03.po
index e77776380bd..47426b30ae6 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/el/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-08-01 07:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared03/el/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/scalc/01.po b/source/el/helpcontent2/source/text/scalc/01.po
index e186e5814ac..c4bce86c392 100644
--- a/source/el/helpcontent2/source/text/scalc/01.po
+++ b/source/el/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-28 08:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/el/>\n"
"Language: el\n"
@@ -4407,7 +4407,7 @@ msgctxt ""
"bm_id3148946\n"
"help.text"
msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Οδηγός συναρτήσεων; βάσεις δεδομένων</bookmark_value> <bookmark_value>συναρτήσεις; συναρτήσεις βάσεων δεδομένων</bookmark_value> <bookmark_value>βάσεις δεδομένων; συναρτήσεις στο $[officename] Calc</bookmark_value>"
#. BX97Y
#: 04060101.xhp
@@ -4425,7 +4425,7 @@ msgctxt ""
"hd_id721616440441374\n"
"help.text"
msgid "Overview"
-msgstr ""
+msgstr "Επισκόπηση"
#. RGkxy
#: 04060101.xhp
@@ -4434,7 +4434,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<variable id=\"datenbanktext\">The twelve functions in the Database category help you to analyze a simple database that occupies a rectangular spreadsheet area comprising columns and rows, with the data organized as one row for each record.</variable> The header cell of each column displays the name of the column and that name usually reflects the contents of each cell in that column."
-msgstr ""
+msgstr "<variable id=\"datenbanktext\">Οι δώδεκα συναρτήσεις στην κατηγορία βάση δεδομένων σας βοηθούν στην ανάλυση μιας απλής βάσης δεδομένων που καταλαμβάνει μια ορθογώνια περιοχή υπολογιστικού φύλλου συμπεριλαμβάνοντας στήλες και γραμμές, με τα δεδομένα οργανωμένα ως μία γραμμή για κάθε εγγραφή.</variable> Το κελί κεφαλίδας κάθε στήλης εμφανίζει το όνομα της στήλης και αυτό το όνομα αντανακλά συνήθως τα περιεχόμενα κάθε κελιού σε αυτήν τη στήλη."
#. 8NQZ9
#: 04060101.xhp
@@ -4443,7 +4443,7 @@ msgctxt ""
"par_id631615842419413\n"
"help.text"
msgid "The functions in the Database category take three arguments as follows:"
-msgstr ""
+msgstr "Οι συναρτήσεις στην κατηγορία βάσης δεδομένων παίρνουν τρία ορίσματα ως εξής:"
#. pmE4Y
#: 04060101.xhp
@@ -4452,7 +4452,7 @@ msgctxt ""
"par_id761615842549780\n"
"help.text"
msgid "<emph>Database</emph>. The cell range of the database."
-msgstr ""
+msgstr "<emph>Βάση δεδομένων</emph>. Η περιοχή κελιών της βάσης δεδομένων."
#. nw3ya
#: 04060101.xhp
@@ -4461,7 +4461,7 @@ msgctxt ""
"par_id601615842657372\n"
"help.text"
msgid "<emph>DatabaseField</emph>. The column containing the data to be used in the function’s calculations."
-msgstr ""
+msgstr "<emph>ΠεδίοΒάσηςΔεδομένων</emph>. Η στήλη περιέχει τα δεδομένα που θα χρησιμοποιηθούν στους υπολογισμούς της συνάρτησης."
#. D5P4G
#: 04060101.xhp
@@ -4470,7 +4470,7 @@ msgctxt ""
"par_id471615842721059\n"
"help.text"
msgid "<emph>SearchCriteria</emph>. The cell range of a separate area of the spreadsheet containing search criteria."
-msgstr ""
+msgstr "<emph>ΚριτήριαΑναζήτησης</emph>. Η περιοχή κελιών μιας ξεχωριστής περιοχής του υπολογιστικού φύλλου που περιέχει κριτήρια αναζήτησης."
#. RT3mc
#: 04060101.xhp
@@ -4479,7 +4479,7 @@ msgctxt ""
"par_id101615842794525\n"
"help.text"
msgid "These arguments are described more fully below."
-msgstr ""
+msgstr "Αυτά τα ορίσματα περιγράφονται αναλυτικότερα παρακάτω."
#. ykxDt
#: 04060101.xhp
@@ -21050,50 +21050,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Επιστρέφει έναν αριθμό ως κείμενο με καθορισμένο αριθμό δεκαδικών ψηφίων και προαιρετικά με διαχωριστικά χιλιάδων.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXED(Αριθμός; Δεκαδικά [; ΑριθμόςΔιαχωριστώνΧιλιάδων])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "Ο <emph>Αριθμός</emph> αναφέρεται στον αριθμό που θα μορφοποιηθεί."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "Τα <emph>Δεκαδικά</emph> αναφέρονται στο πλήθος των δεκαδικών ψηφίων που θα εμφανίζονται."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "Η παράμετρος <emph>Χωρίς-διαχωριστικά-χιλιάδων</emph> (προαιρετικό) καθορίζει εάν θα χρησιμοποιηθεί το διαχωριστικό χιλιάδων. Εάν αυτή η παράμετρος είναι ένας αριθμός διάφορος του 0, το διαχωριστικό χιλιάδων δεν χρησιμοποιείται. Αν η παράμετρος ισούται με 0 ή εάν δεν καθοριστεί, εμφανίζονται τα διαχωριστικά χιλιάδων από την <link href=\"text/shared/optionen/01140000.xhp\" name=\"τρέχουσα τοπική ρύθμιση\">τρέχουσα τοπική ρύθμιση</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21104,14 +21104,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "Το <item type=\"input\">=FIXED(1234567.89;3)</item> επιστρέφει 1,234,567.890 ως κείμενο."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "Το <item type=\"input\">=FIXED(1234567.89;3;1)</item> επιστρέφει 1234567,890 ως κείμενο."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/el/helpcontent2/source/text/scalc/guide.po b/source/el/helpcontent2/source/text/scalc/guide.po
index 820e53ab746..268438ae6e2 100644
--- a/source/el/helpcontent2/source/text/scalc/guide.po
+++ b/source/el/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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-19 16:40+0000\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1549360115.000000\n"
@@ -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
@@ -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
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index 2625c8c813b..97ff4b96ab0 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-25 13:37+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1557496868.000000\n"
@@ -537,7 +537,7 @@ msgctxt ""
"hd_id811616711038538\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Άκυρο"
#. TcFYz
#: 00000001.xhp
@@ -546,7 +546,7 @@ msgctxt ""
"par_id651616711045219\n"
"help.text"
msgid "Closes dialog and discards changes on all tabs. If <emph>Apply</emph> was used, then changes after the last use of Apply are discarded."
-msgstr ""
+msgstr "Κλείσιμο του διαλόγου και απόρριψη των αλλαγών σε όλες τις καρτέλες. Εάν χρησιμοποιήθηκε <emph>Εφαρμογή</emph>, τότε οι αλλαγές μετά την τελευταία χρήση απορρίπτονται."
#. wFkFQ
#: 00000001.xhp
@@ -555,7 +555,7 @@ msgctxt ""
"hd_id601616709204188\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Επαναφορά"
#. YmYPB
#: 00000001.xhp
@@ -564,7 +564,7 @@ msgctxt ""
"par_id691616710270371\n"
"help.text"
msgid "Resets modified values on the current tab back to the values when the dialog was opened. If <emph>Apply</emph> is used before closing the dialog, then values are reset to those after the last use of Apply."
-msgstr ""
+msgstr "Επαναφέρει τις τροποποιημένες τιμές στην τρέχουσα καρτέλα πίσω στις τιμές όταν ανοίχτηκε ο διάλογος. Εάν χρησιμοποιήθηκε το <emph>Εφαρμογή</emph> πριν το κλείσιμο του διαλόγου, τότε οι τιμές επαναφέρονται σε αυτές μετά την τελευταία χρήση του Εφαρμογή."
#. emuSf
#: 00000001.xhp
@@ -573,7 +573,7 @@ msgctxt ""
"hd_id541616711560721\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Εφαρμογή"
#. pjHJH
#: 00000001.xhp
@@ -582,7 +582,7 @@ msgctxt ""
"par_id691616711586248\n"
"help.text"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with <emph>Reset</emph>."
-msgstr ""
+msgstr "Εφαρμόζει τις τροποποιήσεις σε όλες τις καρτέλες χωρίς να κλείσει τον διάλογο. Αδυναμία επαναφοράς με <emph>Επαναφορά</emph>."
#. A8G37
#: 00000001.xhp
@@ -591,7 +591,7 @@ msgctxt ""
"hd_id851616061478033\n"
"help.text"
msgid "Reset to Parent"
-msgstr ""
+msgstr "Επαναφορά στο γονικό"
#. WGWyN
#: 00000001.xhp
@@ -600,7 +600,7 @@ msgctxt ""
"par_id581616061494132\n"
"help.text"
msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Οι τιμές για την τρέχουσα καρτέλα ορίζονται σε αυτές που βρέθηκαν στην αντίστοιχη καρτέλα της τεχνοτροπίας που καθορίστηκε στο \"Μεταβίβαση από\" στον Οργανωτή. Σε όλες τις περιπτώσεις, κι όταν το \"Μεταβίβαση από\" είναι \"-Καμία-\", οι τρέχουσες τιμές της καρτέλας που ορίστηκαν στο \"Περιέχει\" αφαιρούνται."
#. 3brfZ
#: 00000001.xhp
@@ -609,7 +609,7 @@ msgctxt ""
"par_id131583023830621\n"
"help.text"
msgid "This option appears only for Paragraph Style, Character Style, and Frame Style."
-msgstr ""
+msgstr "Αυτή η επιλογή εμφανίζεται μόνο για τεχνοτροπίες παραγράφου, χαρακτήρα και πλαισίου."
#. wUEEa
#: 00000001.xhp
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index fa1ea341a18..f8382649665 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-25 13:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/el/>\n"
"Language: el\n"
@@ -15063,7 +15063,7 @@ msgctxt ""
"par_id341616754767611\n"
"help.text"
msgid "The following buttons appear only for Paragraph Style and Character Style."
-msgstr ""
+msgstr "Τα παρακάτω πλήκτρα εμφανίζονται μόνο για τεχνοτροπίες παραγράφου και χαρακτήρα."
#. ZqG5G
#: 05020100.xhp
@@ -25298,13 +25298,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Νέα τεχνοτροπία από επιλογή"
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -25440,7 +25440,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "Lists all custom styles <switchinline select=\"appl\"><caseinline select=\"WRITER\">in the selected style category for</caseinline><caseinline select=\"CALC\">in the selected style category for</caseinline><defaultinline>in</defaultinline></switchinline> the current document. These styles can be overwritten with a new style selection if you want."
-msgstr ""
+msgstr "Παραθέτει όλες τις προσαρμοσμένες τεχνοτροπίες <switchinline select=\"appl\"><caseinline select=\"WRITER\"> στην επιλεγμένη κατηγορία τεχνοτροπίας για </caseinline><caseinline select=\"CALC\">την επιλεγμένη κατηγορία τεχνοτροπίας </caseinline><defaultinline>στο </defaultinline></switchinline>τρέχον έγγραφο. Αυτές οι τεχνοτροπίες μπορούν να αντικατασταθούν με μια νέα επιλογή τεχνοτροπίας εάν θέλετε."
#. Ey5dK
#: 05140100.xhp
@@ -41813,14 +41813,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Ανάθεση μακροεντολής"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Ανοίγει την <link href=\"text/shared/01/06130000.xhp\">Επιλογή μακροεντολής</link> για να αναθέσετε μια μακροεντολή στο επιλεγμένο συμβάν.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/el/helpcontent2/source/text/shared/guide.po b/source/el/helpcontent2/source/text/shared/guide.po
index c098b2836b0..cd2a0aee575 100644
--- a/source/el/helpcontent2/source/text/shared/guide.po
+++ b/source/el/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1558334792.000000\n"
@@ -20409,7 +20409,7 @@ msgctxt ""
"hd_id701566316879046\n"
"help.text"
msgid "Margin"
-msgstr ""
+msgstr "Περιθώριο"
#. MUEWe
#: qrcode.xhp
@@ -20418,7 +20418,7 @@ msgctxt ""
"par_id981566316947064\n"
"help.text"
msgid "The width of the margin surrounding the QR code."
-msgstr ""
+msgstr "Το πλάτος του περιθωρίου που περιβάλλει τον κωδικό QR."
#. kZPNW
#: qrcode.xhp
diff --git a/source/el/helpcontent2/source/text/simpress/guide.po b/source/el/helpcontent2/source/text/simpress/guide.po
index ac81630fb68..529121dc232 100644
--- a/source/el/helpcontent2/source/text/simpress/guide.po
+++ b/source/el/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1549021784.000000\n"
@@ -2778,7 +2778,7 @@ msgctxt ""
"par_id3150650\n"
"help.text"
msgid "To start a slide show from the beginning, press <keycode>F5</keycode>."
-msgstr ""
+msgstr "Για να ξεκινήσετε μια προβολή παρουσίασης από την αρχή, πατήστε <keycode>F5</keycode>."
#. WaqYV
#: keyboard.xhp
diff --git a/source/el/helpcontent2/source/text/swriter.po b/source/el/helpcontent2/source/text/swriter.po
index c9c9e84870d..bb7a6789c59 100644
--- a/source/el/helpcontent2/source/text/swriter.po
+++ b/source/el/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-20 17:37+0000\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1548756202.000000\n"
#. P7iNX
@@ -2588,7 +2588,7 @@ msgctxt ""
"par_id3154277\n"
"help.text"
msgid "<ahelp hid=\"HID_NUM_TOOLBOX\">The <emph>Bullets and Numbering</emph> bar contains functions to modify the structure of list paragraphs, including changing their order and list level.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NUM_TOOLBOX\">Η γραμμή <emph>Κουκκίδες και αρίθμηση</emph> περιέχει λειτουργίες τροποποίησης της δομής των παραγράφων καταλόγου, συμπεριλαμβανόμενης της αλλαγής της σειράς τους και του επιπέδου καταλόγου.</ahelp>"
#. do6CG
#: main0208.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index ddcb9fd7ed8..98b181eb553 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-24 12:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/el/>\n"
"Language: el\n"
@@ -16161,7 +16161,7 @@ msgctxt ""
"hd_id3143283\n"
"help.text"
msgid "Apply List Style"
-msgstr ""
+msgstr "Εφαρμογή της τεχνοτροπίας καταλόγου"
#. fFAFo
#: 05030800.xhp
@@ -16197,7 +16197,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected list style.</ahelp> These properties will apply to all paragraphs formatted with the given list style."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Επεξεργασία των ιδιοτήτων της επιλεγμένης τεχνοτροπίας καταλόγου.</ahelp> Αυτές οι ιδιότητες θα εφαρμοστούν σε όλες τις παραγράφους που μορφοποιήθηκαν με τη δεδομένη τεχνοτροπία καταλόγου."
#. dxBEA
#: 05030800.xhp
@@ -16233,7 +16233,7 @@ msgctxt ""
"hd_id3151250\n"
"help.text"
msgid "Restart numbering at this paragraph"
-msgstr ""
+msgstr "Επανεκκίνηση της αρίθμησης σε αυτήν την παράγραφο"
#. Fqcca
#: 05030800.xhp
@@ -16359,7 +16359,7 @@ msgctxt ""
"par_id551616756044690\n"
"help.text"
msgid "The following buttons appear only for Paragraph Style."
-msgstr ""
+msgstr "Τα παρακάτω πλήκτρα εμφανίζονται μόνο για τεχνοτροπία παραγράφου."
#. jAnkr
#: 05040000.xhp
@@ -28592,23 +28592,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Επιλέξτε ένα αντικείμενο από τον κατάλογο και πατήστε σε ένα κουμπί βέλους για να το μετακινήσετε.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Μήνυμα αλληλογραφίας"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Μήνυμα αλληλογραφίας"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28925,14 +28925,14 @@ msgctxt ""
msgid "Properties"
msgstr "Ιδιότητες"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\">Ανοίγει τον διάλογο <link href=\"text/swriter/01/mm_emabod.xhp\">Μήνυμα ηλ. ταχυδρομείου</link> όπου μπορείτε να εισάγετε το μήνυμα ηλ. ταχυδρομείου για τα αρχεία συγχώνευσης αλληλογραφίας που στέλνονται ως συνημμένα.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/02.po b/source/el/helpcontent2/source/text/swriter/02.po
index 921c576dbfe..885a2fda0a2 100644
--- a/source/el/helpcontent2/source/text/swriter/02.po
+++ b/source/el/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-24 12:36+0000\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1513247844.000000\n"
#. sqxGb
@@ -869,7 +869,7 @@ msgctxt ""
"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 - Paragraph - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
-msgstr ""
+msgstr "Για επανεκκίνηση της αρίθμησης με αριθμό μεγαλύτερο του 1, δεξιοπατήστε στην παράγραφο που θέλετε να επανεκκινήσετε την αρίθμηση, επιλέξτε την καρτέλα <menuitem>Παράγραφος - Παράγραφος - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/>, σημειώστε <menuitem>Επανεκκίνηση αρίθμησης σε αυτήν την παράγραφο</menuitem> και εισάγετε τον αριθμό εκκίνησης στο <menuitem>Έναρξη με</menuitem>."
#. qCdhk
#: 08010000.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 9a74756b2b3..5dfc5ba18cf 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-24 12:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/el/>\n"
"Language: el\n"
@@ -620,14 +620,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Για να απενεργοποιήσετε την αυτόματη μετατροπή σε κεφαλαίο του πρώτου γράμματος μιας πρότασης"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Επιλέξτε <menuitem>Εργαλεία - Επιλογές αυτόματης διόρθωσης</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
@@ -9564,7 +9564,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the List Level of a List Paragraph"
-msgstr ""
+msgstr "Αλλαγή του επιπέδου καταλόγου παραγράφου καταλόγου"
#. NDiP8
#: insert_tab_innumbering.xhp
@@ -9582,7 +9582,7 @@ msgctxt ""
"hd_id3145078\n"
"help.text"
msgid "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the List Level of a List Paragraph</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Αλλαγή επιπέδου καταλόγου παραγράφου καταλόγου</link></variable>"
#. epGvP
#: insert_tab_innumbering.xhp
@@ -9591,7 +9591,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph down one list level, click at the beginning of the paragraph, and then press <keycode>Tab</keycode>."
-msgstr ""
+msgstr "Για να μετακινήσετε αριθμημένη ή με κουκκίδες παράγραφο καταλόγου προς τα κάτω κατά ένα επίπεδο καταλόγου, πατήστε στην αρχή της παραγράφου και έπειτα πατήστε το <keycode>Tab</keycode>."
#. 9onR5
#: insert_tab_innumbering.xhp
@@ -9600,7 +9600,7 @@ msgctxt ""
"par_id3155859\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph up one list level, click at the beginning of the paragraph, and then press <keycode>Shift+Tab</keycode>."
-msgstr ""
+msgstr "Για να μετακινήσετε αριθμημένη ή με κουκκίδες παράγραφο καταλόγου προς τα πάνω κατά ένα επίπεδο καταλόγου, πατήστε στην αρχή της παραγράφου και έπειτα πατήστε το <keycode>Shift+Tab</keycode>."
#. A6CtC
#: insert_tab_innumbering.xhp
@@ -18573,7 +18573,7 @@ msgctxt ""
"par_id211615764184529\n"
"help.text"
msgid "Right-click, choose <menuitem>List</menuitem>, then select a list style."
-msgstr ""
+msgstr "Δεξιοπατήστε, επιλέξτε <menuitem>Κατάλογος</menuitem> και έπειτα επιλέξτε τεχνοτροπία καταλόγου."
#. dQ6VP
#: using_numbered_lists2.xhp
@@ -18636,7 +18636,7 @@ msgctxt ""
"par_id161615765280165\n"
"help.text"
msgid "Right-click in the list, then choose <menuitem>List - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Δεξιοπατήστε στον κατάλογο και έπειτα επιλέξτε <menuitem>Κατάλογος - Κουκκίδες και αρίθμηση</menuitem>."
#. xgmVR
#: using_numbered_lists2.xhp
@@ -18663,7 +18663,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Numbering and Paragraph Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες αρίθμησης και παραγράφων"
#. FfEcT
#: using_numbering.xhp
@@ -18672,7 +18672,7 @@ msgctxt ""
"bm_id3155174\n"
"help.text"
msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>αρίθμηση;χειροκίνητα/κατά τεχνοτροπίες</bookmark_value><bookmark_value>τεχνοτροπίες καταλόγου</bookmark_value><bookmark_value>χειροκίνητη αρίθμηση σε κείμενο</bookmark_value><bookmark_value>τεχνοτροπίες παραγράφου;αρίθμηση</bookmark_value>"
#. FizBP
#: using_numbering.xhp
@@ -18681,7 +18681,7 @@ msgctxt ""
"hd_id3155174\n"
"help.text"
msgid "<variable id=\"using_numbering\"><link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Numbering and Numbering Styles\">Numbering and Paragraph Styles</link></variable>"
-msgstr ""
+msgstr "<variable id=\"using_numbering\"><link href=\"text/swriter/guide/using_numbering.xhp\" name=\"Numbering and Numbering Styles\">Τεχνοτροπίες αρίθμησης και παραγράφων</link></variable>"
#. DeMXq
#: using_numbering.xhp
@@ -18699,7 +18699,7 @@ msgctxt ""
"par_id31616154131555\n"
"help.text"
msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>, instead of numbering manually."
-msgstr ""
+msgstr "Εάν θέλετε αριθμημένες επικεφαλίδες, χρησιμοποιήστε <menuitem>Εργαλεία - </menuitem><embedvar href=\"text/swriter/01/06060000.xhp#ChapNumh1\"/>, αντί για χειροκίνητη αρίθμηση."
#. Dh8sW
#: using_numbering.xhp
@@ -18717,7 +18717,7 @@ msgctxt ""
"par_id3155866\n"
"help.text"
msgid "To apply numbering manually, click in the paragraph, and then click the <menuitem>Toggle Ordered List</menuitem> icon on the <menuitem>Formatting</menuitem> bar, or use the dropdown box on the icon to select a numbering format."
-msgstr ""
+msgstr "Για να εφαρμόσετε χειροκίνητη αρίθμηση, πατήστε στην παράγραφο και έπειτα πατήστε το εικονίδιο <menuitem>Εναλλαγή διαταγμένου καταλόγου</menuitem> στη γραμμή <menuitem>Μορφοποίηση</menuitem>, ή χρησιμοποιήστε το πτυσσόμενο πλαίσιο στο εικονίδιο για να επιλέξετε αριθμημένη μορφή."
#. m2kdH
#: using_numbering.xhp
@@ -18762,7 +18762,7 @@ msgctxt ""
"par_idN1073A\n"
"help.text"
msgid "Use the commands on the <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\">Bullets and Numbering</link> bar to change the order and level of list paragraphs."
-msgstr ""
+msgstr "Χρησιμοποιήστε τις εντολές στη γραμμή <link href=\"text/swriter/main0206.xhp\" name=\"Numbering Object Bar\">Κουκκίδες και αρίθμηση</link> για να αλλάξετε τη σειρά και το επίπεδο παραγράφων καταλόγου."
#. f48BU
#: using_numbering.xhp
@@ -18771,7 +18771,7 @@ msgctxt ""
"par_id791616153048415\n"
"help.text"
msgid "To see which paragraphs are in the same list, click to the left of a number or symbol at the beginning of a list paragraph, with <link href=\"text/swriter/01/03080000.xhp\" name=\"Shadings\"><menuitem>View - Field Shadings</menuitem> </link> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>) enabled."
-msgstr ""
+msgstr "Για να δείτε ποιες παράγραφοι είναι στον ίδιο κατάλογο, πατήστε στα αριστερά αριθμού ή συμβόλου στην αρχή παραγράφου καταλόγου, με ενεργό <link href=\"text/swriter/01/03080000.xhp\" name=\"Shadings\"><menuitem>Προβολή - Σκιάσεις πεδίου</menuitem> </link> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>)."
#. Egm22
#: using_numbering.xhp
@@ -18780,7 +18780,7 @@ msgctxt ""
"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 Previous List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
-msgstr ""
+msgstr "Για να προσθέσετε τις επιλεγμένες παραγράφους σε υφιστάμενο κατάλογο, χρησιμοποιήστε <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to Previous List\"><menuitem>Μορφή - Κατάλογοι - Προσθήκη σε κατάλογο</menuitem></link>."
#. qFAkZ
#: using_numbering.xhp
@@ -18798,7 +18798,7 @@ msgctxt ""
"par_id3153137\n"
"help.text"
msgid "Paragraph Styles give you greater control over numbering that you apply in a document. When you change the list style assigned to a paragraph style, then the numbering format in the list style is applied automatically to all paragraphs using the paragraph style."
-msgstr ""
+msgstr "Οι τεχνοτροπίες παραγράφου σας δίνουν μεγαλύτερο έλεγχο στην αρίθμηση που εφαρμόζετε στα έγγραφα. Όταν αλλάζετε την εκχωρημένη τεχνοτροπία καταλόγου σε τεχνοτροπία παραγράφου, τότε η μορφή αρίθμησης στην τεχνοτροπία καταλόγου εφαρμόζεται αυτόματα σε όλες τις παραγράφους χρησιμοποιώντας την τεχνοτροπία παραγράφου."
#. M3VEp
#: using_numbering.xhp
@@ -18825,7 +18825,7 @@ msgctxt ""
"par_id3149850\n"
"help.text"
msgid "Click the <item type=\"menuitem\">Outline & List</item> tab."
-msgstr ""
+msgstr "Πατήστε στην καρτέλα <item type=\"menuitem\">Διάρθρωση & κατάλογος</item>."
#. pnM3U
#: using_numbering.xhp
@@ -18834,7 +18834,7 @@ msgctxt ""
"par_id3149874\n"
"help.text"
msgid "In the <menuitem>List style</menuitem> box, select the list style to apply."
-msgstr ""
+msgstr "Στο πλαίσιο <menuitem>Τεχνοτροπία καταλόγου</menuitem>, επιλέξτε την επιθυμητή τεχνοτροπία καταλόγου."
#. r8dBG
#: using_numbering.xhp
@@ -18852,7 +18852,7 @@ msgctxt ""
"par_id3149589\n"
"help.text"
msgid "Apply the paragraph style to the paragraphs that you want to add numbering to."
-msgstr ""
+msgstr "Εφαρμόστε την τεχνοτροπία παραγράφου στις παραγράφους που θέλετε να προσθέσετε στην αρίθμηση."
#. HBCBV
#: using_numbering.xhp
@@ -18861,7 +18861,7 @@ msgctxt ""
"par_id401616165733544\n"
"help.text"
msgid "<link href=\"text/swriter/01/05130004.xhp\" name=\"List Style\">List Style</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05130004.xhp\" name=\"List Style\">Τεχνοτροπία καταλόγου</link>"
#. 8s2hg
#: using_thesaurus.xhp
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index 3e208ffd59f..7dd0890cbce 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-22 13:07+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/el/>\n"
"Language: el\n"
@@ -28719,6 +28719,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Θέση και μέγεθος"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30057,7 +30067,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Εμφάνιση πλήκτρων αναδίπλωσης διάρθρωσης"
#. 4hvcy
#: WriterCommands.xcu
@@ -30067,7 +30077,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Εμφανίζει ένα πλήκτρο δίπλα στις επικεφαλίδες και τις υποεπικεφαλίδες για να βοηθήσει με την αναδίπλωση διάρθρωσης. Ακόμα και χωρίς το πλήκτρο, μπορείτε να κάνετε αναδίπλωση διάρθρωσης με τον Πλοηγητή (Navigator)."
#. C5mHk
#: WriterCommands.xcu
@@ -35427,7 +35437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Εναλλαγή αναδίπλωσης διάρθρωσης"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/el/sfx2/messages.po b/source/el/sfx2/messages.po
index 297de767abb..e9c4697ff56 100644
--- a/source/el/sfx2/messages.po
+++ b/source/el/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-30 09:34+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559714005.000000\n"
#. bHbFE
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Σας επιτρέπει να ορίσετε τα πεδία των προσαρμοσμένων πληροφοριών στο έγγραφό σας."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Κλείσιμο πλαϊνής στήλης προσάρτησης"
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index 7cd83e68f0b..fd0214e81e9 100644
--- a/source/el/sw/messages.po
+++ b/source/el/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-30 09:34+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/el/>\n"
"Language: el\n"
@@ -5882,7 +5882,7 @@ msgstr "Ανενεργό"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Πατήστε για εναλλαγή της αναδίπλωσης διάρθρωσης"
#. 44jEc
#: sw/inc/strings.hrc:659
@@ -5894,7 +5894,7 @@ msgstr "δεξιό πάτημα για συμπερίληψη υποεπιπέδ
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Πατήστε για εναλλαγή της αναδίπλωσης διάρθρωσης"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5906,7 +5906,7 @@ msgstr "δεξιοπατήστε για να συμπεριλάβετε υποε
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Αναδίπλωση διάρθρωσης"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5918,13 +5918,13 @@ msgstr "Εναλλαγή"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Ξεδίπλωμα όλων"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Αναδίπλωση όλων"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Προσαρμογή"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Ανοίγει έναν διάλογο επιλογής προτύπου."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Επιλέξτε το αρχικό έγγραφο για τη συγχώνευση αλληλογραφίας"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Καθορίστε το έγγραφο που επιθυμείτε να χρησιμοποιήσετε ως βάση για το έγγραφο συγχώνευσης αλληλογραφίας."
@@ -20214,7 +20232,7 @@ msgstr "Διαγραφή όλων"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Αναδίπλωση διάρθρωσης"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -29315,7 +29333,7 @@ msgstr "Ρυθμίσεις"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "Ε_μφάνιση πλήκτρων αναδίπλωσης διάρθρωσης"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29327,7 +29345,7 @@ msgstr "Να συμπεριλαμβάνονται υπο_επίπεδα"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Αναδίπλωση διάρθρωσης"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/el/vcl/messages.po b/source/el/vcl/messages.po
index 9fe2b21d28d..78c6e80934c 100644
--- a/source/el/vcl/messages.po
+++ b/source/el/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-22 16:20+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/el/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Διαχωριστικό"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index 12d31cefb6e..89a31dc351b 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-24 12:37+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/en_GB/>\n"
@@ -3548,11 +3548,11 @@ 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 "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and drop-down menus for others. This full variant favours functions and is slightly larger than others."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "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 favours 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 compact variant favors vertical space."
+msgstr ""
#. eGMCZ
#: cui/inc/toolbarmode.hrc:29
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Font Features"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Preview"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Select and apply font typographical features to characters."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Font Settings for HTML, Basic and SQL Sources"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Extended tips"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Displays some short help text when you rest the cursor on an icon, a menu command, or a control in a dialogue box."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Show \"No offline help installed\" pop-up"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Show \"Tip of the Day\" dialogue box on start-up"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save Dialogue Boxes"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print Dialogue Boxes"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \"document modified\" status"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Specifies whether the printing of the document counts as a modification."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Status"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpret as years between "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Defines a date range, within which the system recognises a two-digit year."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Year (Two Digits)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collect usage data and send it to The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Send usage data to help The Document Foundation improve the software usability."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Sen_d crash reports to The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help Improve %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME during system start-up"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enable systray Quickstarter"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows Default apps"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME File Associations"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Specifies the general settings for %PRODUCTNAME."
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Top"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Layout Settings"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/en-GB/helpcontent2/source/auxiliary.po b/source/en-GB/helpcontent2/source/auxiliary.po
index 58394e97601..23de2a5fd5b 100644
--- a/source/en-GB/helpcontent2/source/auxiliary.po
+++ b/source/en-GB/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-29 11:27+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/en_GB/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563447496.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Command Reference"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Functions, Statements and Operators"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Alphabetic List of Functions, Statements and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared.po b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
index dfb9d3027ae..412bdc49298 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-29 17:16+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/en_GB/>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile function</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "This function can only be used immediately before an Open statement. FreeFile returns the next available file number, but does not reserve it."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input statement</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determines if the file pointer has reached the end of a file."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Returns the size of an open file in bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (file open in binary mode)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Deletes a file from a disc."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Enables an error-handling routine after an error occurs, or resumes program execution."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "The On Error GoTo statement is used to react to errors that occur in a macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Return value:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph> A numeric variable that will contain the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> Numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' returns 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' returns 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' returns 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Comparison Operators"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "The available comparison operators are described here."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po b/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
index 7e8f03698cb..0e88cdc4b06 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/en-GB/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-28 07:53+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/en_GB/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index 25ca8cf8d37..f772e1df051 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/en_GB/>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as a text string with a specified number of decimal places and optional thousands separators.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is omitted, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index 5bb2f65ef5e..1a608abc486 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Ali Burton <aburton543@hotmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/en_GB/>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,14 +41812,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assign Macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/en-GB/helpcontent2/source/text/swriter/01.po b/source/en-GB/helpcontent2/source/text/swriter/01.po
index d91262d2868..0d3cae27cc6 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/01.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-18 14:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/en_GB/>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail Message"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail Message"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr "Properties"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index 18d73850105..4de14d2128f 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-09-12 09:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/en_GB/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "To Stop Capitalising the First Letter of a Sentence"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index cc0d5c535a3..7fad3303a03 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-24 12:37+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/en_GB/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Position and Size"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/en-GB/sfx2/messages.po b/source/en-GB/sfx2/messages.po
index b08f7de5177..42f331bb6f0 100644
--- a/source/en-GB/sfx2/messages.po
+++ b/source/en-GB/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/en_GB/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Allows you to assign custom information fields to your document."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index 6796e3fa446..624f9921962 100644
--- a/source/en-GB/sw/messages.po
+++ b/source/en-GB/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/en_GB/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Custom"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20025,14 +20037,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Opens a template selector dialogue box."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Select Starting Document for the Mail Merge"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Specify the document that you want to use as a base for the mail merge document."
diff --git a/source/en-GB/vcl/messages.po b/source/en-GB/vcl/messages.po
index e76601ab08f..e316ac4ab21 100644
--- a/source/en-GB/vcl/messages.po
+++ b/source/en-GB/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/en_GB/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Separator"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 1624c741809..bba927aea44 100644
--- a/source/en-ZA/cui/messages.po
+++ b/source/en-ZA/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3571,10 +3571,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9201,6 +9201,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9510,13 +9528,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14804,164 +14822,170 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Extended Tips"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialogue."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialogues"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialogues"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Specifies whether the printing of the document counts as a modification."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Name\\tStatus"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Defines a date range, within which the system recognises a two-digit year."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME During System Start-Up"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Disable systray Quickstarter"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Specifies the general settings for %PRODUCTNAME."
@@ -17718,33 +17742,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/en-ZA/helpcontent2/source/auxiliary.po b/source/en-ZA/helpcontent2/source/auxiliary.po
index c013df20cf2..e1bf0cb03a0 100644
--- a/source/en-ZA/helpcontent2/source/auxiliary.po
+++ b/source/en-ZA/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
index f2a87cf66ee..b9952483d5e 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile function</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input statement</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determines if the file pointer has reached the end of a file."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Returns the size of an open file in bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (file open in binary mode)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Deletes a file from a disk."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Enables an error-handling routine after an error occurs, or resumes program execution."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Return value:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM returns 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
+"help.text"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
+
+#. C5zCg
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Comparison Operators"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "The available comparison operators are described here."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po
index d7d9ffef961..3bf38f3695e 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/en-ZA/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index 6089c2e27e6..7aa8d0d9a44 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: English (South Africa) <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/en_ZA/>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 02d1aff3f90..a9afb7decd8 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assign Macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/01.po b/source/en-ZA/helpcontent2/source/text/swriter/01.po
index d9b1b6a11aa..79dc755044c 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/01.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail Message"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail Message"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/guide.po b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
index 5a6cb64e74e..03b5a86ba6a 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "To Stop Capitalizing the First Letter of a Sentence"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index 5991a4ef416..288c90e3c0e 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29101,6 +29101,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Position and Si~ze..."
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/en-ZA/sfx2/messages.po b/source/en-ZA/sfx2/messages.po
index c13bebf4e2e..f5ae27a8989 100644
--- a/source/en-ZA/sfx2/messages.po
+++ b/source/en-ZA/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2939,7 +2939,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Allows you to assign custom information fields to your document."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index 72f33520f17..6073ff88644 100644
--- a/source/en-ZA/sw/messages.po
+++ b/source/en-ZA/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10014,6 +10014,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Custom"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20691,14 +20703,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/en-ZA/vcl/messages.po b/source/en-ZA/vcl/messages.po
index c8c714f6702..c1467a57bd3 100644
--- a/source/en-ZA/vcl/messages.po
+++ b/source/en-ZA/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1171,8 +1171,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index 61a8ab52b4a..b667e846e07 100644
--- a/source/eo/cui/messages.po
+++ b/source/eo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-01-28 07:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/eo/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Atribuas makroojn al programaj eventoj. La atribuita makroo ruliĝas aŭtomate ĉiufoje kiam okazas la elektita evento."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Tiparaj trajtoj"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Antaŭrigardo"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Tiparaj agordoj por HTML, Basic kaj SQL-fontoj"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Pliampleksaj konsiletoj"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Vidigi ŝprucfenestron \"Eksterreta helpo ne instalita\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Vidigi dialogon \"Konsileto de la tago\" je startigo"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Helpo"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Uzi %PRODUCTNAME-dialogojn"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Malfermi/Konservi dialogojn"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Uzi dialogojn de %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Presaj dialogoj"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Preso agordas staton \"dokumento modifita\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumenta stato"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreti kiel jarojn inter "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "kaj "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaro (du ciferoj)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kolekti uzinformon kaj sendi ĝin al The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Sendu kraŝraportojn al The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Helpi plibonigi je %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ŝargi je %PRODUCTNAME dum sistemstarto"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enŝalti sistempletan Rapidstartilon"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Rapidstartilo"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Aprioraj vindozaj aplikaĵoj"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME-dosierasocioj"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Aranĝa agordaro"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/eo/helpcontent2/source/auxiliary.po b/source/eo/helpcontent2/source/auxiliary.po
index 3520f7d9776..327b60b6d33 100644
--- a/source/eo/helpcontent2/source/auxiliary.po
+++ b/source/eo/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-24 11:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/eo/>\n"
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referenco pri komandoj"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funkcioj, ordonoj, kaj operacisimboloj"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Alfabeta listo de funkcioj, ordonoj, kaj operacisimboloj"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/eo/helpcontent2/source/text/sbasic/shared.po b/source/eo/helpcontent2/source/text/sbasic/shared.po
index ab9d6cc5054..0b23d609dd9 100644
--- a/source/eo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-23 11:15+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/eo/>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile funkcio</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Liveras la postan disponeblan dosieran numeron por malfermi dosieron. La funkcio estas uzebla por malfermi dosieron uzante dosieran numeron kiu ne estas jam uzata de aktuale malferma dosiero."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Liverota valoro:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entjero"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Ĉi tiu funkcio estas uzebla nur tuj antaŭ ordono Open. FreeFile liveras la postan disponeblan dosieran numeron, sed ne rezervas ĝin."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Unua linio de teksto\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Alia linio de teksto\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumero, \"Jen alia linio de teksto\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Jen nova linio de teksto\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Ĉiuj dosieroj fermiĝos\",0,\"Eraro\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Lokigu ĉe la komenco"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumero,, \"Jen la unua linio de teksto\" REM Plenigu linion per teksto"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumero,, \"Jen la dua linio de teksto\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumero,, \"Jen la tria linio de teksto\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Jen nova teksto\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumero,20,\"Jen la teksto en rikordo 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Ordono Input</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Trovas ĉu la dosiera skribilo atingis la finon de la dosiero."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Liverota valoro:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF estas uzebla por eviti erarojn kiam oni provas legi datumojn preter la fino de dosiero. Kiam oni uzas la komandon Input aŭ Get por legi el dosiero, la dosiera skribilo antaŭeniras laŭ la nombro da bajtoj legitaj. Kiam la fino de dosiero atingiĝas, EOF liveras la valoron \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Unua linio de teksto\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Alia linio de teksto\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Liveras la grandon en bajtoj de malferma dosiero."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Liverota valoro:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Longa"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Por liveri la longon de dosiero nemalferma, estas uzebla la funkcio <emph>FileLen</emph>"
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM devas esti subtipo"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Poziciigi ĉe la komenco"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Jen la unua linio de teksto\" REM Plenigu per teksto"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumero,, \"Jen la dua linio de teksto\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumero,, \"Jen la tria linio de teksto\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Jen nova linio da teksto\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumero,20,\"Jen la teksto en rikordo 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Vidu ankaŭ: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Liverota valoro:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entjero"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (file open in binary mode)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumero, \"Jen linio de teksto\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Forigas dosieron el disko."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,22 +12526,13 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Ĉena esprimo kiu enhavas nedubsencan dosieran specifon. Ankaŭ uzeblas <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-notacio</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
msgstr ""
#. hWy62
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Ŝaltas erarotraktantan procedon post okazo de eraro, aŭ reekrulas programon."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumero, \"Jen linio de teksto\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Ĉiuj dosieroj fermiĝos\",0,\"Eraro\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Operacio MOD (matematika)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Liveras la entjeran reston de divido."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakso:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Rezulto = Esprimo1 MOD Esprimo2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Liverota valoro:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Entjero"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametroj:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Rezulto:</emph> Numera variablo kiu enhavas la rezulton de la operacio MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Esprimo1, Esprimo2:</emph> Numeraj esprimoj dividotaj."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Ekzemplo:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Rezulto = Esprimo1 MOD Esprimo2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM liveras 0"
+msgid "Integer"
+msgstr "Entjero"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM liveras 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM liveras 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM liveras 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM liveras 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM liveras 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Komparaj operatoroj"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Komparaj operatoroj</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "La disponeblaj komparaj operatoroj estas priskribitaj ĉi tie."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/sbasic/shared/03.po b/source/eo/helpcontent2/source/text/sbasic/shared/03.po
index 2b67e22cb4d..2de396df2d5 100644
--- a/source/eo/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/eo/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc/01.po b/source/eo/helpcontent2/source/text/scalc/01.po
index ba6bec2a5f0..dd4d4ca7a5b 100644
--- a/source/eo/helpcontent2/source/text/scalc/01.po
+++ b/source/eo/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-08-13 17:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/eo/>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr "FIKSITA"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Liveras numeron kiel tekston kun specifita nombro da dekuma pozicioj kaj (malnepre) disigiloj de miloj.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Numero</emph> estas la numero formatota."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Dekumoj</emph> estas la nombro da dekumaj pozicioj vidigotaj."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index 0978fd0b4a0..9648834e11a 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-05 05:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/eo/>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Atribui makroon"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/eo/helpcontent2/source/text/swriter/01.po b/source/eo/helpcontent2/source/text/swriter/01.po
index b04d7407b60..f9ce5b9e7d0 100644
--- a/source/eo/helpcontent2/source/text/swriter/01.po
+++ b/source/eo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/eo/>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Elektu elementon en la listo kaj alklaku sagan butonon por movi la elementon.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Retmesaĝo"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Retmesaĝo"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,14 +28924,14 @@ msgctxt ""
msgid "Properties"
msgstr "Atributoj"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\">Malfermas la dialogon <link href=\"text/swriter/01/mm_emabod.xhp\">Retmesaĝo</link> kie vi povas enigi la retmesaĝon por la porpoŝtaj kunfandaj dosieroj sendotaj kiel kunsendaĵoj.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index 730c95e0c03..024b02ff6d0 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/eo/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Por ĉesi majuskligi la unuan literon de frazo"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
index 0ea76b0e0d8..d1acf778b91 100644
--- a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/eo/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozicio kaj grando"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/eo/sfx2/messages.po b/source/eo/sfx2/messages.po
index a16870b4a7e..d8f232e1c2b 100644
--- a/source/eo/sfx2/messages.po
+++ b/source/eo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/eo/>\n"
@@ -2926,7 +2926,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Ebligas al vi agordi proprajn informajn kampojn al via dokumento."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index 82cbf0d13c2..b174a3372e4 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/eo/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Adapti"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Malfermas la dialogon por elekti ŝablonon."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Elektu startodokumenton por la retpoŝta kunfandado"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Agordu la dokumenton uzotan kiel la bazon por la porpoŝta kunfanda dokumento."
diff --git a/source/eo/vcl/messages.po b/source/eo/vcl/messages.po
index 36aaad5366e..4b08eba972b 100644
--- a/source/eo/vcl/messages.po
+++ b/source/eo/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/eo/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Apartigilo"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index b2e096bb6b4..7866cf30833 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-29 16:04+0000\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/es/>\n"
"Language: es\n"
@@ -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.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235515.000000\n"
#. GyY9M
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Permite asignar macros a sucesos del programa. La macro que asigne se ejecutará automáticamente cada vez que se produzca el suceso seleccionado."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Características tipográficas"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Previsualización"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Seleccione y aplique características tipográficas a los caracteres."
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Configuración de tipos de letra para HTML, Basic y SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Descripciones emergentes ampliadas"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Muestra un texto de ayuda cuando el cursor se posa sobre un icono, una orden de menú o un control en un cuadro de diálogo."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Mostrar alerta si la ayuda local no está instalada"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Mostrar el «consejo del día» al iniciar"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Cuadros de diálogo para abrir y guardar"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Cuadros de diálogo de impresión"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Considerar como _modificado el documento al imprimirlo"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Especifica si la impresión del documento se considera una modificación."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado del documento"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años entre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Define un intervalo de fechas, dentro del cual el sistema reconoce un año de dos dígitos."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Año (dos dígitos)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recopilar datos de uso y enviarlos a The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Envíe datos de utilización para ayudar a The Document Foundation a mejorar la facilidad de uso de este programa."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Envia_r informes de cierres inesperados a The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ayúdenos a mejorar %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME al arrancar el sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar Inicio rápido en el área de notificación"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inicio rápido de %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Aplics. predeterminadas de Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Asociaciones de archivos de %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Permite fijar la configuración general de %PRODUCTNAME."
@@ -17109,7 +17133,7 @@ msgstr "Abajo:"
#: cui/uiconfig/ui/pageformatpage.ui:456
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
-msgstr "Margen de lomo:"
+msgstr "Encuadernación:"
#. Tvwu6
#: cui/uiconfig/ui/pageformatpage.ui:490
@@ -17206,7 +17230,7 @@ msgstr "E_stilo de referencia:"
#: cui/uiconfig/ui/pageformatpage.ui:679
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
-msgstr "Posición de margen de lomo:"
+msgstr "Posición de encuadernación:"
#. LF4Ex
#: cui/uiconfig/ui/pageformatpage.ui:694
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Arriba"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Configuración de disposición"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/es/helpcontent2/source/auxiliary.po b/source/es/helpcontent2/source/auxiliary.po
index 203cdfa3347..82fb4a815a2 100644
--- a/source/es/helpcontent2/source/auxiliary.po
+++ b/source/es/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-15 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562203919.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referencia de órdenes"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funciones, instrucciones y operadores"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Lista alfabética de funciones, instrucciones y operadores"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index f344bc56e2d..1d1cbacf108 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557855034.000000\n"
#. yzYVt
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile;función</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Función FreeFile\">Función FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Devuelve el siguiente número de archivo disponible para la apertura de un archivo. Esta función se utiliza para abrir un archivo usando un número que no esté en uso por un archivo abierto actualmente ."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Esta función solo se puede usar inmediatamente delante de una instrucción Open. FreeFile devuelve el número de archivo disponible, pero no lo reserva."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumero, \"Esta es otra línea de texto\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Este es un renglón de texto nuevo\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Todos los archivos se cerrarán\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumero,1 ' Posición al principio"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Esta es la primera línea de texto\" ' Rellenar la línea con texto"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumero,,\"Esto es un texto nuevo\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input;función</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Instrucción Input#\">Instrucción Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determina si el puntero de archivo ha llegado al final de éste."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (ExpresiónEntero As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Lógico"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF se utiliza para evitar errores al intentar obtener datos más allá del final de un archivo. Cuando se utiliza la instrucción Input o Get para leer de un archivo, el puntero de archivo se avanza según el número de bytes leídos. Cuando se llega al final del archivo, EOF devuelve el valor \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Devuelve el tamaño de un archivo abierto en bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (NúmeroArchivo)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Largo"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Para obtener la longitud de un archivo que no está abierto, se utiliza la función <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sTexto As Variant REM Debe ser una variante"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumero,1 REM Posición al principio"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar con texto"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumero,,\"Esto es una línea de texto nueva\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Consulte también: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (NúmeroArchivo As Integer, Atributo As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (archivo abierto en modo binario)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Este es un renglón de texto\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumero, 1 ),0,\"Modo de acceso\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumero, 2 ),0,\"Atributo de archivo\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Borra un archivo de un disco."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Archivo As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Archivo:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">notación URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' El archivo debe crearse con antelación"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -15404,7 +15224,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "Returns the number of date or time intervals between two given date values."
-msgstr ""
+msgstr "Devuelve el número de intervalos de fecha o de hora entre dos fechas que se indiquen."
#. AzmeS
#: 03030120.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Habilita una rutina de manejo de errores después de producirse éstos o continúa la ejecución del programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "La instrucción On Error GoTo se utiliza para reaccionar a los errores que se producen en una macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Este es un renglón de texto\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Todos los archivos se cerrarán\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>operador MOD (matemático)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operador Mod\">Operador Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Devuelve el resto entero de una división."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultado = Expresión1 MOD Expresión2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Entero"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la operación MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea dividir."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultado = Expresión1 MOD Expresión2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' devuelve 0"
+msgid "Integer"
+msgstr "Entero"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' devuelve 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' devuelve 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' devuelve 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' devuelve 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' devuelve 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadores de comparación"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Operadores de comparación</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Los operadores de comparación disponibles se describen aquí."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/03.po b/source/es/helpcontent2/source/text/sbasic/shared/03.po
index bdc6270a839..a6302c91272 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/es/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-03-30 18:07+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/es/>\n"
"Language: es\n"
@@ -5182,15 +5182,6 @@ 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 "Las propiedades o los métodos que tienen la indicación <emph>(7.2)</emph> están disponibles a partir de la versión 7.2 de %PRODUCTNAME."
-
#. nXGkZ
#: sf_dialog.xhp
msgctxt ""
@@ -5216,7 +5207,7 @@ msgctxt ""
"par_id491583668386455\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. ByVDE
#: sf_dialog.xhp
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
@@ -5450,7 +5459,7 @@ msgctxt ""
"par_id401612628879819\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. uW85z
#: sf_dialog.xhp
@@ -5504,7 +5513,7 @@ msgctxt ""
"par_id81612629836634\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. CK5vU
#: sf_dialog.xhp
@@ -5972,7 +5981,7 @@ msgctxt ""
"par_id491583668386455\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. KRYNv
#: sf_dialogcontrol.xhp
@@ -6836,7 +6845,7 @@ msgctxt ""
"par_id401612628879819\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. 2A2Ex
#: sf_dialogcontrol.xhp
@@ -11489,7 +11498,7 @@ msgctxt ""
"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 ""
+msgstr "<link href=\"text/sbasic/guide/translation.xhp\" name=\"Controls Translation\">Traducción de controles en el editor de diálogos</link>"
#. Ah5Gj
#: sf_platform.xhp
@@ -11543,7 +11552,7 @@ msgctxt ""
"par_id67160078807676\n"
"help.text"
msgid "The %PRODUCTNAME version"
-msgstr ""
+msgstr "La versión de %PRODUCTNAME"
#. BrEr7
#: sf_platform.xhp
@@ -11678,7 +11687,7 @@ msgctxt ""
"par_id541600788076645\n"
"help.text"
msgid "The number of central processing units."
-msgstr ""
+msgstr "El número de unidades centrales de procesamiento."
#. 89Lo8
#: sf_platform.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 8955aaf3111..f397c132196 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
@@ -4406,7 +4406,7 @@ msgctxt ""
"bm_id3148946\n"
"help.text"
msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Asistente para funciones;bases de datos</bookmark_value><bookmark_value>funciones;funciones de bases de datos</bookmark_value><bookmark_value>bases de datos;funciones en $[officename] Calc</bookmark_value>"
#. BX97Y
#: 04060101.xhp
@@ -4424,7 +4424,7 @@ msgctxt ""
"hd_id721616440441374\n"
"help.text"
msgid "Overview"
-msgstr ""
+msgstr "Información general"
#. RGkxy
#: 04060101.xhp
@@ -4433,7 +4433,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<variable id=\"datenbanktext\">The twelve functions in the Database category help you to analyze a simple database that occupies a rectangular spreadsheet area comprising columns and rows, with the data organized as one row for each record.</variable> The header cell of each column displays the name of the column and that name usually reflects the contents of each cell in that column."
-msgstr ""
+msgstr "<variable id=\"datenbanktext\">Las doce funciones de la categoría Base de datos le ayudan a analizar una base de datos sencilla que ocupa un área rectangular en una hoja de cálculo, compuesta de columnas y de filas, con los registros individuales organizados en filas.</variable> La celda de cabecera de cada columna muestra el nombre de esta y este nombre normalmente refleja el contenido de cada celda de esa columna en particular."
#. 8NQZ9
#: 04060101.xhp
@@ -4442,7 +4442,7 @@ msgctxt ""
"par_id631615842419413\n"
"help.text"
msgid "The functions in the Database category take three arguments as follows:"
-msgstr ""
+msgstr "Las funciones de la categoría Base de datos aceptan estos tres argumentos:"
#. pmE4Y
#: 04060101.xhp
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id101615842794525\n"
"help.text"
msgid "These arguments are described more fully below."
-msgstr ""
+msgstr "Estos argumentos se describen a detalle más abajo."
#. ykxDt
#: 04060101.xhp
@@ -4676,7 +4676,7 @@ msgctxt ""
"hd_id481615892281210\n"
"help.text"
msgid "Defining Search Criteria"
-msgstr ""
+msgstr "Definir criterios de búsqueda"
#. zTQX5
#: 04060101.xhp
@@ -4748,7 +4748,7 @@ msgctxt ""
"hd_id3150329\n"
"help.text"
msgid "Examples of Database Function Use"
-msgstr ""
+msgstr "Ejemplos de uso de las funciones de base de datos"
#. hyFuY
#: 04060101.xhp
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_id3152992\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. ChBDv
#: 04060101.xhp
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_id3155532\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Grado</emph>"
#. mt5xM
#: 04060101.xhp
@@ -4784,7 +4784,7 @@ msgctxt ""
"par_id3156448\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. Svp8Q
#: 04060101.xhp
@@ -4793,7 +4793,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "<emph>Distance</emph>"
-msgstr ""
+msgstr "<emph>Distancia</emph>"
#. BShmH
#: 04060101.xhp
@@ -4802,7 +4802,7 @@ msgctxt ""
"par_id3152899\n"
"help.text"
msgid "<emph>Weight</emph>"
-msgstr ""
+msgstr "<emph>Peso</emph>"
#. FUGeA
#: 04060101.xhp
@@ -4811,7 +4811,7 @@ msgctxt ""
"par_id3151240\n"
"help.text"
msgid "Andy"
-msgstr ""
+msgstr "Andrés"
#. eQx2T
#: 04060101.xhp
@@ -4820,7 +4820,7 @@ msgctxt ""
"par_id3152870\n"
"help.text"
msgid "Betty"
-msgstr ""
+msgstr "Beatriz"
#. HKBAA
#: 04060101.xhp
@@ -4829,7 +4829,7 @@ msgctxt ""
"par_id3155596\n"
"help.text"
msgid "Charles"
-msgstr ""
+msgstr "Carlos"
#. WCaYH
#: 04060101.xhp
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_id3147296\n"
"help.text"
msgid "Daniel"
-msgstr ""
+msgstr "Daniel"
#. L3gMx
#: 04060101.xhp
@@ -4847,7 +4847,7 @@ msgctxt ""
"par_id3150456\n"
"help.text"
msgid "Eva"
-msgstr ""
+msgstr "Eva"
#. bwR2v
#: 04060101.xhp
@@ -4856,7 +4856,7 @@ msgctxt ""
"par_id3145826\n"
"help.text"
msgid "Frank"
-msgstr ""
+msgstr "Franco"
#. TwrgJ
#: 04060101.xhp
@@ -4865,7 +4865,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "Greta"
-msgstr ""
+msgstr "Greta"
#. TmomQ
#: 04060101.xhp
@@ -4874,7 +4874,7 @@ msgctxt ""
"par_id3153078\n"
"help.text"
msgid "Harry"
-msgstr ""
+msgstr "Henrique"
#. qBHps
#: 04060101.xhp
@@ -4883,7 +4883,7 @@ msgctxt ""
"par_id3148761\n"
"help.text"
msgid "Irene"
-msgstr ""
+msgstr "Irene"
#. UDuZW
#: 04060101.xhp
@@ -4892,7 +4892,7 @@ msgctxt ""
"par_id221616245476190\n"
"help.text"
msgid "The following six examples use the database table above, combined with different search criteria areas."
-msgstr ""
+msgstr "Los seis ejemplos siguientes utilizan la tabla de la base de datos anterior en combinación con distintas áreas de criterios de búsqueda."
#. sPtvb
#: 04060101.xhp
@@ -4901,7 +4901,7 @@ msgctxt ""
"hd_id861616245631924\n"
"help.text"
msgid "Example 1"
-msgstr ""
+msgstr "Ejemplo 1"
#. cEWAG
#: 04060101.xhp
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id891616245640933\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. AsoFd
#: 04060101.xhp
@@ -4919,7 +4919,7 @@ msgctxt ""
"par_id451616245640933\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Grado</emph>"
#. Dw3a2
#: 04060101.xhp
@@ -4928,7 +4928,7 @@ msgctxt ""
"par_id151616245818988\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. TdY66
#: 04060101.xhp
@@ -4937,7 +4937,7 @@ msgctxt ""
"par_id481616245878460\n"
"help.text"
msgid "<emph>Distance</emph>"
-msgstr ""
+msgstr "<emph>Distancia</emph>"
#. ggUUj
#: 04060101.xhp
@@ -4946,7 +4946,7 @@ msgctxt ""
"par_id741616245891772\n"
"help.text"
msgid "<emph>Weight</emph>"
-msgstr ""
+msgstr "<emph>Peso</emph>"
#. BdjTH
#: 04060101.xhp
@@ -4982,7 +4982,7 @@ msgctxt ""
"hd_id191616246773750\n"
"help.text"
msgid "Example 2"
-msgstr ""
+msgstr "Ejemplo 2"
#. V4PCC
#: 04060101.xhp
@@ -4991,7 +4991,7 @@ msgctxt ""
"par_id71616246804093\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. KjH3p
#: 04060101.xhp
@@ -5000,7 +5000,7 @@ msgctxt ""
"par_id41616250394431\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Grado</emph>"
#. FsLvK
#: 04060101.xhp
@@ -5027,7 +5027,7 @@ msgctxt ""
"hd_id221616251986854\n"
"help.text"
msgid "Example 3"
-msgstr ""
+msgstr "Ejemplo 3"
#. kAXbc
#: 04060101.xhp
@@ -5036,7 +5036,7 @@ msgctxt ""
"par_id141616251871487\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. CQA2G
#: 04060101.xhp
@@ -5054,7 +5054,7 @@ msgctxt ""
"hd_id71616252395407\n"
"help.text"
msgid "Example 4"
-msgstr ""
+msgstr "Ejemplo 4"
#. kNw3F
#: 04060101.xhp
@@ -5063,7 +5063,7 @@ msgctxt ""
"par_id451616252413665\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. QPqDb
#: 04060101.xhp
@@ -5072,7 +5072,7 @@ msgctxt ""
"par_id431616252540783\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. 5zWEA
#: 04060101.xhp
@@ -5108,7 +5108,7 @@ msgctxt ""
"hd_id561616253067881\n"
"help.text"
msgid "Example 5"
-msgstr ""
+msgstr "Ejemplo 5"
#. yvXQo
#: 04060101.xhp
@@ -5117,7 +5117,7 @@ msgctxt ""
"par_id301616253073598\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. uDvpq
#: 04060101.xhp
@@ -5144,7 +5144,7 @@ msgctxt ""
"hd_id121616253593255\n"
"help.text"
msgid "Example 6"
-msgstr ""
+msgstr "Ejemplo 6"
#. 3RcET
#: 04060101.xhp
@@ -5153,7 +5153,7 @@ msgctxt ""
"par_id731616253599063\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. PJCE2
#: 04060101.xhp
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIJO"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Devuelve un número como texto con un número especificado de decimales y separadores de miles opcionales.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Número</emph> hace referencia al número al que se va a dar formato."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimales</emph> hace referencia al número de posiciones decimales que se mostrarán."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>No_separar_millares</emph> (opcional) determina si se utiliza el separador de millares. Si el parámetro es un número no igual a 0, se elimina el separador de millares. Si el parámetro es igual a 0 o si no aparece en absoluto, se muestran los separadores de millares de la <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">configuración regional actual</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIJO(1234567,89;3)</item> devuelve 1.234.567,890 como cadena de texto."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIJO(1234567,89;3)</item> devuelve 1234567,890 como una cadena de texto."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/es/helpcontent2/source/text/sdatabase.po b/source/es/helpcontent2/source/text/sdatabase.po
index e5b7796073d..788d601b0f0 100644
--- a/source/es/helpcontent2/source/text/sdatabase.po
+++ b/source/es/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"PO-Revision-Date: 2021-04-02 05:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
#. ugSgG
#: 02000000.xhp
@@ -697,7 +697,7 @@ msgctxt ""
"par_id3154791\n"
"help.text"
msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
+msgstr "Si pulsa dos veces en la línea que une dos campos enlazados o selecciona la orden del menú <emph>Insertar ▸ Relación nueva</emph>, podrá especificar el tipo de relación a través del cuadro de diálogo <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relaciones</emph></link>."
#. rAkmw
#: 02010100.xhp
@@ -3172,7 +3172,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "Password"
-msgstr ""
+msgstr "Contraseña"
#. 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\">Introduzca la contraseña nueva.</ahelp>"
#. FcJVt
#: 05000003.xhp
@@ -3190,7 +3190,7 @@ msgctxt ""
"hd_id3147275\n"
"help.text"
msgid "Confirm (password)"
-msgstr ""
+msgstr "Confirmar (contraseña)"
#. xkB4S
#: 05000003.xhp
@@ -3208,7 +3208,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Diseño de tabla"
#. 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\">Diseño de tabla</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 "En la ventana <emph>Diseño de tabla</emph> puede definir tablas nuevas o editar la estructura de una tabla existente."
#. 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 "La ventana tiene su propia barra de menús. Además, contiene esta orden nueva: <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Diseño de índice</emph></link>"
#. z6hA5
#: 05010000.xhp
@@ -3244,7 +3244,7 @@ msgctxt ""
"hd_id3152551\n"
"help.text"
msgid "Table definition area"
-msgstr ""
+msgstr "Área de definición de tabla"
#. 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\">En esta zona se define la estructura de la tabla.</ahelp>"
#. FfuwA
#: 05010000.xhp
@@ -3262,7 +3262,7 @@ msgctxt ""
"hd_id3153031\n"
"help.text"
msgid "Field Name"
-msgstr ""
+msgstr "Nombre de campo"
#. GiHyW
#: 05010000.xhp
@@ -3280,7 +3280,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Tipo de campo"
#. eK4to
#: 05010000.xhp
@@ -3316,7 +3316,7 @@ msgctxt ""
"par_id3155630\n"
"help.text"
msgid "The row headers contain the following context menu commands:"
-msgstr ""
+msgstr "Las cabeceras de las filas contienen las órdenes siguientes en el menú contextual:"
#. rd8Zn
#: 05010000.xhp
@@ -3325,7 +3325,7 @@ msgctxt ""
"hd_id3156330\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Cortar"
#. GVxeZ
#: 05010000.xhp
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "Cuts the selected row to the clipboard."
-msgstr ""
+msgstr "Corta la fila seleccionada y la envía al portapapeles."
#. JxTSq
#: 05010000.xhp
@@ -3343,7 +3343,7 @@ msgctxt ""
"hd_id3159177\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Copiar"
#. ZAjhE
#: 05010000.xhp
@@ -3352,7 +3352,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "Copies the selected row to the clipboard."
-msgstr ""
+msgstr "Copia la fila seleccionada en el portapapeles."
#. Q8awG
#: 05010000.xhp
@@ -3361,7 +3361,7 @@ msgctxt ""
"hd_id3156327\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Pegar"
#. 5AQBL
#: 05010000.xhp
@@ -3370,7 +3370,7 @@ msgctxt ""
"par_id3152472\n"
"help.text"
msgid "Pastes the content of the clipboard."
-msgstr ""
+msgstr "Pega el contenido del portapapeles."
#. aQCGh
#: 05010000.xhp
@@ -3379,7 +3379,7 @@ msgctxt ""
"hd_id3144511\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Eliminar"
#. 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\">Elimina la fila seleccionada.</ahelp>"
#. pD5B3
#: 05010000.xhp
@@ -3397,7 +3397,7 @@ msgctxt ""
"hd_id3147303\n"
"help.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Insertar filas"
#. kfUXp
#: 05010000.xhp
@@ -3415,7 +3415,7 @@ msgctxt ""
"hd_id3153524\n"
"help.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Clave primaria"
#. mmwbs
#: 05010000.xhp
@@ -3469,7 +3469,7 @@ msgctxt ""
"hd_id3154948\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Decimales"
#. FgVqm
#: 05010000.xhp
@@ -4243,7 +4243,7 @@ msgctxt ""
"hd_id3145272\n"
"help.text"
msgid "Set Default"
-msgstr ""
+msgstr "Predeterminar"
#. ktJ6K
#: 05020100.xhp
@@ -4252,7 +4252,7 @@ msgctxt ""
"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 ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">Si elimina la clave primaria correspondiente, se definirá un valor fijo para todos los campos de clave externa.</ahelp>"
#. x8A6E
#: 05030000.xhp
@@ -4261,7 +4261,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copy a Table by Drag-and-Drop"
-msgstr ""
+msgstr "Copiar una tabla con el método de arrastrar y colocar"
#. VdcaB
#: 05030000.xhp
@@ -4270,7 +4270,7 @@ msgctxt ""
"hd_id3154894\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Copy Query or Table by Drag-and-Drop</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Copiar consultas o tablas con el método de arrastrar y colocar</link>"
#. nDG9W
#: 05030000.xhp
@@ -4324,7 +4324,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "You can copy within the same database or between different databases."
-msgstr ""
+msgstr "Puede copiar en la misma base de datos o entre distintas bases de datos."
#. Ed5rp
#: 05030100.xhp
@@ -4333,7 +4333,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copy Table"
-msgstr ""
+msgstr "Copiar tabla"
#. kkUkn
#: 05030100.xhp
@@ -4342,7 +4342,7 @@ msgctxt ""
"hd_id3085157\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Copy Table</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Copiar tabla</link>"
#. sBC76
#: 05030100.xhp
@@ -4351,7 +4351,7 @@ msgctxt ""
"par_id3149264\n"
"help.text"
msgid "You can copy a table by dragging and dropping the table onto the table area of a database file window. The <emph>Copy table </emph>dialog appears."
-msgstr ""
+msgstr "Puede copiar una tabla arrastrándola y colocándola en el área de tablas dela ventana de un archivo de base de datos. Se abrirá el cuadro de diálogo <emph>Copiar tabla</emph>."
#. ciK5F
#: 05030100.xhp
@@ -4360,7 +4360,7 @@ msgctxt ""
"hd_id3154926\n"
"help.text"
msgid "Table name"
-msgstr ""
+msgstr "Nombre de tabla"
#. iFF9F
#: 05030100.xhp
@@ -4369,7 +4369,7 @@ msgctxt ""
"par_id3144740\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/name\">Specifies a name for the copy.</ahelp> Some databases only accept names containing eight or fewer characters."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/name\">Especifica un nombre para la copia.</ahelp> Ciertas bases de datos aceptan únicamente nombres con ocho caracteres o menos."
#. x78x3
#: 05030100.xhp
@@ -4378,7 +4378,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. JvNbF
#: 05030100.xhp
@@ -4387,7 +4387,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "Definition and data"
-msgstr ""
+msgstr "Definición y datos"
#. TqTmF
#: 05030100.xhp
@@ -4396,7 +4396,7 @@ msgctxt ""
"par_id3150178\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/defdata\">Creates a 1:1 copy of the database table.</ahelp> The table definition and the complete data are copied. The table definition includes the table structure and format from different data fields, including special field properties. The field contents supply the data."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/defdata\">Crea una copia exacta de la tabla de base de datos.</ahelp> Se copia la definición de la tabla y la totalidad de los datos. La definición de la tabla incluye la estructura de esta y el formato de los distintos campos, incluidas las propiedades especiales de estos. El contenido de los campos proporciona los datos."
#. hezaD
#: 05030100.xhp
@@ -4405,7 +4405,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definición"
#. b2GpC
#: 05030100.xhp
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/def\">Copies only the table definition and not the corresponding data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/def\">Copia únicamente la definición de la tabla, no los datos correspondientes.</ahelp>"
#. RCvEj
#: 05030100.xhp
@@ -4441,7 +4441,7 @@ msgctxt ""
"hd_id3155535\n"
"help.text"
msgid "Append data"
-msgstr ""
+msgstr "Anexar datos"
#. aB4JD
#: 05030100.xhp
@@ -4459,7 +4459,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table."
-msgstr ""
+msgstr "La definición de tabla debe ser exactamente la misma para que los datos puedan copiarse. Los datos no se podrán copiar si un campo de datos de la tabla de destino presenta un formato distinto del que tiene el campo equivalente en la tabla de origen."
#. ADGPK
#: 05030100.xhp
@@ -4495,7 +4495,7 @@ msgctxt ""
"bm_id3149164\n"
"help.text"
msgid "<bookmark_value>primary keys; defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>claves primarias; definir</bookmark_value>"
#. odQAJ
#: 05030100.xhp
@@ -4504,7 +4504,7 @@ msgctxt ""
"hd_id3149164\n"
"help.text"
msgid "Create primary key"
-msgstr ""
+msgstr "Crear clave primaria"
#. T7Dmr
#: 05030100.xhp
@@ -4513,7 +4513,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Automatically generates a primary key data field and fills it with values.</ahelp> You should always use this field, since a primary key must always be available in order to edit the table."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Genera automáticamente un campo de datos con clave primaria y lo rellena con valores.</ahelp> Utilice este campo siempre, ya que una clave primaria debe estar siempre disponible para poder editar la tabla."
#. EhRtD
#: 05030100.xhp
@@ -4522,7 +4522,7 @@ msgctxt ""
"hd_id3146794\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nombre"
#. v9USa
#: 05030100.xhp
@@ -4540,7 +4540,7 @@ msgctxt ""
"par_id3151056\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Página siguiente</link>"
#. DDJC9
#: 05030200.xhp
@@ -4549,7 +4549,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Apply columns"
-msgstr ""
+msgstr "Aplicar columnas"
#. FnB9J
#: 05030200.xhp
@@ -4558,7 +4558,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Apply columns</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Aplicar columnas</link>"
#. 6b9Li
#: 05030200.xhp
@@ -4576,7 +4576,7 @@ msgctxt ""
"hd_id3155552\n"
"help.text"
msgid "Existing columns"
-msgstr ""
+msgstr "Columnas existentes"
#. NDcVA
#: 05030200.xhp
@@ -4585,7 +4585,7 @@ msgctxt ""
"hd_id3154751\n"
"help.text"
msgid "Left list box"
-msgstr ""
+msgstr "Cuadro de lista izquierdo"
#. AkHFX
#: 05030200.xhp
@@ -4603,7 +4603,7 @@ msgctxt ""
"hd_id3154823\n"
"help.text"
msgid "Right list box"
-msgstr ""
+msgstr "Cuadro de lista derecho"
#. KgGGQ
#: 05030200.xhp
@@ -4612,7 +4612,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Lists the fields that you want to include in the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Muestra los campos que desea incluir en la tabla que se ha copiado.</ahelp>"
#. VyQwS
#: 05030200.xhp
@@ -4621,7 +4621,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Buttons"
-msgstr ""
+msgstr "Botones"
#. NT8C3
#: 05030200.xhp
@@ -4639,7 +4639,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Página siguiente</link>"
#. gTg68
#: 05030300.xhp
@@ -4675,7 +4675,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "List box"
-msgstr ""
+msgstr "Cuadro de lista"
#. EqDjY
#: 05030300.xhp
@@ -4702,7 +4702,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "Field name"
-msgstr ""
+msgstr "Nombre de campo"
#. MNzaq
#: 05030300.xhp
@@ -4720,7 +4720,7 @@ msgctxt ""
"hd_id3156113\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Tipo de campo"
#. MmakP
#: 05030300.xhp
@@ -4729,7 +4729,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccione un tipo de campo.</ahelp>"
#. E9Z9q
#: 05030300.xhp
@@ -4747,7 +4747,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of characters for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduzca el número de caracteres para el campo de datos.</ahelp>"
#. FqaDj
#: 05030300.xhp
@@ -4756,7 +4756,7 @@ msgctxt ""
"hd_id3159176\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Decimales"
#. 4pH6B
#: 05030300.xhp
@@ -4774,7 +4774,7 @@ msgctxt ""
"hd_id3150276\n"
"help.text"
msgid "Default value"
-msgstr ""
+msgstr "Valor predeterminado"
#. uF2x5
#: 05030300.xhp
@@ -4792,7 +4792,7 @@ msgctxt ""
"hd_id3153087\n"
"help.text"
msgid "Automatic type recognition"
-msgstr ""
+msgstr "Reconocimiento automático de tipo"
#. KTPFP
#: 05030300.xhp
@@ -4828,7 +4828,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "Auto"
-msgstr ""
+msgstr "Automático"
#. KXrRC
#: 05030300.xhp
@@ -4873,7 +4873,7 @@ msgctxt ""
"hd_id3157958\n"
"help.text"
msgid "Source table"
-msgstr ""
+msgstr "Tabla de origen"
#. XA5ur
#: 05030400.xhp
@@ -4891,7 +4891,7 @@ msgctxt ""
"hd_id3166410\n"
"help.text"
msgid "Destination table"
-msgstr ""
+msgstr "Tabla de destino"
#. CHq7j
#: 05030400.xhp
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index fe02708274d..59c01a9b999 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
"Language: es\n"
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id6930143\n"
"help.text"
msgid "When you use <menuitem>File - Save As</menuitem> and select a template filter to save a template in a directory that is <emph>not</emph> specified in the <emph>Templates</emph> path, then the documents based on that template will <emph>not</emph> be checked."
-msgstr ""
+msgstr "Si utiliza <menuitem>Archivo ▸ Guardar como</menuitem> y selecciona un filtro de plantillas para guardar como plantilla en un directorio que <emph>no</emph> se ha especificado en la ruta <emph>Plantillas</emph>, los documentos que se basen en tal plantilla <emph>no</emph> se comprobarán."
#. 6fFQH
#: 01020000.xhp
@@ -22433,7 +22433,7 @@ msgctxt ""
"bm_id3150620\n"
"help.text"
msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value><bookmark_value>changing;page size</bookmark_value><bookmark_value>changing;page margins</bookmark_value><bookmark_value>page margins</bookmark_value><bookmark_value>margins;defining</bookmark_value><bookmark_value>page size;defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>páginas;formato y numeración</bookmark_value><bookmark_value>formato;páginas</bookmark_value><bookmark_value>formatos de papel</bookmark_value><bookmark_value>bandejas de papel</bookmark_value><bookmark_value>impresoras;bandejas de papel</bookmark_value><bookmark_value>disposición;páginas</bookmark_value><bookmark_value>espacio para encuadernación</bookmark_value><bookmark_value>márgenes;páginas</bookmark_value><bookmark_value>medianil</bookmark_value><bookmark_value>cambiar;tamaño de página</bookmark_value><bookmark_value>cambiar;márgenes de página</bookmark_value><bookmark_value>márgenes de página</bookmark_value><bookmark_value>márgenes;definir</bookmark_value><bookmark_value>tamaño de página;definir</bookmark_value>"
#. 2VdNc
#: 05040200.xhp
@@ -22685,7 +22685,7 @@ msgctxt ""
"hd_id3145745\n"
"help.text"
msgid "Gutter"
-msgstr "Margen de lomo"
+msgstr "Encuadernación"
#. rvmBG
#: 05040200.xhp
@@ -22919,7 +22919,7 @@ msgctxt ""
"hd_id3150489\n"
"help.text"
msgid "Gutter position"
-msgstr "Posición de margen de lomo"
+msgstr "Posición de encuadernación"
#. Gs9qT
#: 05040200.xhp
@@ -22928,7 +22928,7 @@ msgctxt ""
"par_id0522200809473733\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboGutterPosition\">Allows choosing if the current document's gutter shall be positioned at the left of the document's pages (default) or at top of the document's pages when the document is displayed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboGutterPosition\">Le permite elegir si el espacio para la encuadernación del documento actual debe ubicarse a la izquierda (opción predeterminada) o arriba de las páginas al mostrarlo.</ahelp>"
#. niqBy
#: 05040200.xhp
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,14 +41812,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Asignar macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre el <link href=\"text/shared/01/06130000.xhp\">Selector de macros</link> para asignar una macro a la acción seleccionada.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index 0707705c438..4df8309ee14 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565287876.000000\n"
#. iharT
@@ -11345,7 +11345,7 @@ msgctxt ""
"hd_id981608909383980\n"
"help.text"
msgid "To Unlock a Docked Toolbar"
-msgstr ""
+msgstr "Para desbloquear una barra de herramientas acoplada"
#. hq3GB
#: floating_toolbar.xhp
@@ -11363,7 +11363,7 @@ msgctxt ""
"hd_id911608910290237\n"
"help.text"
msgid "To Lock a Docked Toolbar"
-msgstr ""
+msgstr "Para bloquear una barra de herramientas acoplada"
#. 6DT2v
#: floating_toolbar.xhp
@@ -20417,7 +20417,7 @@ msgctxt ""
"par_id981566316947064\n"
"help.text"
msgid "The width of the margin surrounding the QR code."
-msgstr ""
+msgstr "La anchura del margen que rodea al código QR."
#. kZPNW
#: qrcode.xhp
diff --git a/source/es/helpcontent2/source/text/simpress/guide.po b/source/es/helpcontent2/source/text/simpress/guide.po
index 3d5ff5dc1d8..151984419ae 100644
--- a/source/es/helpcontent2/source/text/simpress/guide.po
+++ b/source/es/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1538695430.000000\n"
#. S83CC
@@ -2777,7 +2777,7 @@ msgctxt ""
"par_id3150650\n"
"help.text"
msgid "To start a slide show from the beginning, press <keycode>F5</keycode>."
-msgstr ""
+msgstr "Para iniciar un pase de diapositivas desde el principio, presione <keycode>F5</keycode>."
#. WaqYV
#: keyboard.xhp
diff --git a/source/es/helpcontent2/source/text/smath/01.po b/source/es/helpcontent2/source/text/smath/01.po
index 62f285101cd..619553b0510 100644
--- a/source/es/helpcontent2/source/text/smath/01.po
+++ b/source/es/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-19 16:40+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559526082.000000\n"
#. QmNGE
@@ -212,7 +212,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr ""
+msgstr "<ahelp hid=\".\">Aumenta la escala de visualización de la fórmula en 25 %.</ahelp> El factor de escala actual se muestra en la barra de estado. Mediante el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"menú contextual\">menú contextual</link> se puede acceder a varias opciones de ampliación. El menú contextual del área de trabajo también contiene órdenes relacionadas."
#. EyasV
#: 03050000.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr ""
+msgstr "<ahelp hid=\".\">Disminuye la escala de visualización de la fórmula en 25 %.</ahelp> El factor de escala actual se muestra en la barra de estado. Mediante el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"menú contextual\">menú contextual</link> se puede acceder a varias opciones de ampliación. El menú contextual del área de trabajo también contiene órdenes relacionadas."
#. xSbDA
#: 03060000.xhp
@@ -284,7 +284,7 @@ msgctxt ""
"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#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 ""
+msgstr "<ahelp hid=\".\">Muestra la totalidad de la fórmula en el mayor tamaño posible para incluir todos los elementos. La fórmula se reduce o agranda para que todos sus elementos quepan en el área de trabajo.</ahelp> La escala actual aparece en la barra de estado. Mediante el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"menú contextual\">menú contextual</link> se pueden seleccionar algunos niveles de escala. El menú contextual en el área de trabajo también contiene opciones de escala. Estas opciones y sus iconos solo están disponibles en los documentos de Math, y no en los objetos incrustados de Math."
#. WGriM
#: 03070000.xhp
@@ -4658,7 +4658,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Puede escoger entre varias opciones para dar formato a una fórmula de $[officename] Math. Las opciones de formato se muestran en la parte inferior del panel Elementos. Dichas opciones además pueden encontrarse en el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">menú contextual</link> del cuadro <emph>Órdenes</emph>."
#. oGTCQ
#: 03090700.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index 7eca382d9d1..e4535437bdc 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-22 13:10+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
"Language: es\n"
@@ -16162,7 +16162,7 @@ msgctxt ""
"hd_id3143283\n"
"help.text"
msgid "Apply List Style"
-msgstr ""
+msgstr "Aplicar estilo de lista"
#. fFAFo
#: 05030800.xhp
@@ -16234,7 +16234,7 @@ msgctxt ""
"hd_id3151250\n"
"help.text"
msgid "Restart numbering at this paragraph"
-msgstr ""
+msgstr "Reiniciar numeración en este párrafo"
#. Fqcca
#: 05030800.xhp
@@ -16891,7 +16891,7 @@ msgctxt ""
"hd_id3154646\n"
"help.text"
msgid "Footnote area"
-msgstr "Área de la nota al pie"
+msgstr "Área de notas al pie"
#. ZmaA9
#: 05040600.xhp
@@ -22579,7 +22579,7 @@ msgctxt ""
"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 ""
+msgstr "Al momento de crear un estilo de lista, se asigna a este un nombre. El estilo de lista puede aplicarse a los párrafos o a un estilo de párrafo a través del apartado Aplicar estilo de lista de la pestaña <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Esquema y lista</link>."
#. MU724
#: 05130004.xhp
@@ -25594,7 +25594,7 @@ msgctxt ""
"hd_id3148845\n"
"help.text"
msgid "Footnote area"
-msgstr "Área de la nota al pie"
+msgstr "Área de notas al pie"
#. vnEDK
#: 06080100.xhp
@@ -28593,23 +28593,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccione un elemento de la lista y pulse en un botón de flecha para mover dicho elemento.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaje de correo electrónico"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaje de correo electrónico"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28926,13 +28926,13 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index 0d516f16e4c..9c95cb41a2a 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235756.000000\n"
#. XAt2Y
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Para dejar de poner en mayúscula la primera letra de una frase"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
@@ -9554,7 +9554,7 @@ msgctxt ""
"par_id3153416\n"
"help.text"
msgid "Follow the scanning instructions."
-msgstr "Siga las instrucciones de escaneado."
+msgstr "Siga las instrucciones de digitalización."
#. AwAKw
#: insert_tab_innumbering.xhp
@@ -18635,7 +18635,7 @@ msgctxt ""
"par_id161615765280165\n"
"help.text"
msgid "Right-click in the list, then choose <menuitem>List - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Pulse con el botón secundario del ratón en la lista y elija <menuitem>Lista ▸ Numeración y viñetas</menuitem>."
#. xgmVR
#: using_numbered_lists2.xhp
@@ -18644,7 +18644,7 @@ msgctxt ""
"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 ""
+msgstr "Para cambiar la jerarquía de una lista ordenada, pulse en esta y, a continuación, utilice los iconos de la barra de herramientas <emph>Numeración y viñetas</emph>."
#. y2KEo
#: using_numbered_lists2.xhp
@@ -18671,7 +18671,7 @@ msgctxt ""
"bm_id3155174\n"
"help.text"
msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>numeración;manualmente o mediante estilos</bookmark_value><bookmark_value>estilos de lista</bookmark_value><bookmark_value>numeración manual en texto</bookmark_value><bookmark_value>estilos de párrafo;numeración</bookmark_value>"
#. FizBP
#: using_numbering.xhp
@@ -18779,7 +18779,7 @@ msgctxt ""
"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 Previous List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
-msgstr ""
+msgstr "Para añadir los párrafos seleccionados a una lista existente, utilice <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to Previous List\"><menuitem>Formato ▸ Lista ▸ Añadir a lista</menuitem></link>."
#. qFAkZ
#: using_numbering.xhp
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index e3014256ec8..568ab55f67d 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-24 19:50+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/es/>\n"
"Language: es\n"
@@ -26126,7 +26126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Word ~Joiner"
-msgstr ""
+msgstr "~Unión de palabras"
#. UvwGS
#: GenericCommands.xcu
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición y tamaño"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30057,7 +30067,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Mostrar botones de plegado de esquema"
#. 4hvcy
#: WriterCommands.xcu
@@ -35427,7 +35437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Alternar plegado de esquema"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index 9f9b58a06bd..c8846866b7c 100644
--- a/source/es/sc/messages.po
+++ b/source/es/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-23 10:56+0000\n"
+"PO-Revision-Date: 2021-04-01 04:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1566031195.000000\n"
#. kBovX
@@ -7480,7 +7480,7 @@ msgstr "Divisor"
#: sc/inc/scfuncs.hrc:1330
msgctxt "SC_OPCODE_MOD"
msgid "The number by which the dividend is divided."
-msgstr "es el número por el cual desea dividir el número."
+msgstr "El número por el cual se divide el dividendo."
#. DrEgm
#: sc/inc/scfuncs.hrc:1336
@@ -7516,7 +7516,7 @@ msgstr "Función"
#: sc/inc/scfuncs.hrc:1346
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Function index. Is an index of the possible functions Total, Max, ..."
-msgstr "es un número que indica qué función debe ser utilizada."
+msgstr "Índice de funciones. Es el índice de las funciones posibles, como Total, Máximo…"
#. BxfCA
#: sc/inc/scfuncs.hrc:1347
@@ -7546,7 +7546,7 @@ msgstr "Función"
#: sc/inc/scfuncs.hrc:1356
msgctxt "SC_OPCODE_AGGREGATE"
msgid "Function index. Is an index of the possible functions Total, Max, ..."
-msgstr "es un número que indica qué función debe ser utilizada."
+msgstr "Índice de funciones. Es el índice de las funciones posibles, como Total, Máximo…"
#. 2FmK3
#: sc/inc/scfuncs.hrc:1357
@@ -8256,7 +8256,7 @@ msgstr "Matriz X"
#: sc/inc/scfuncs.hrc:1598
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "First array where the square of the arguments are totalled."
-msgstr "es la primera matriz o área de valores."
+msgstr "Primera matriz en que se totaliza el cuadrado de los argumentos."
#. YSPPg
#: sc/inc/scfuncs.hrc:1599
@@ -8286,7 +8286,7 @@ msgstr "Matriz X"
#: sc/inc/scfuncs.hrc:1608
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "First array where the square of the arguments are totalled."
-msgstr "es la primera matriz o área de valores."
+msgstr "Primera matriz en que se totaliza el cuadrado de los argumentos."
#. Vtggo
#: sc/inc/scfuncs.hrc:1609
diff --git a/source/es/scaddins/messages.po b/source/es/scaddins/messages.po
index 4c3968e9e19..ec22f17d52b 100644
--- a/source/es/scaddins/messages.po
+++ b/source/es/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-01-26 17:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1512860287.000000\n"
#. i8Y7Z
@@ -2100,7 +2100,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:649
msgctxt "ANALYSIS_Disc"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. qPWFW
#: scaddins/inc/analysis.hrc:654
@@ -2178,7 +2178,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:666
msgctxt "ANALYSIS_Duration"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. bmGm3
#: scaddins/inc/analysis.hrc:671
@@ -2454,7 +2454,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:728
msgctxt "ANALYSIS_Price"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. 9r4fb
#: scaddins/inc/analysis.hrc:733
@@ -2520,7 +2520,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:743
msgctxt "ANALYSIS_Pricedisc"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. pChTS
#: scaddins/inc/analysis.hrc:748
@@ -2598,7 +2598,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:760
msgctxt "ANALYSIS_Pricemat"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. A64aD
#: scaddins/inc/analysis.hrc:765
@@ -2676,7 +2676,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:777
msgctxt "ANALYSIS_Mduration"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. i2GCb
#: scaddins/inc/analysis.hrc:782
@@ -2718,7 +2718,7 @@ msgstr "Convierte la cotización decimal de un valor en una fraccionaria."
#: scaddins/inc/analysis.hrc:792
msgctxt "ANALYSIS_Dollarfr"
msgid "Decimal dollar"
-msgstr "Número"
+msgstr "Moneda decimal"
#. EPxfe
#: scaddins/inc/analysis.hrc:793
@@ -2748,19 +2748,19 @@ msgstr "Convierte la cotización fraccionaria de un valor en decimal."
#: scaddins/inc/analysis.hrc:801
msgctxt "ANALYSIS_Dollarde"
msgid "Fractional dollar"
-msgstr "Número"
+msgstr "Moneda fraccionaria"
#. do6jV
#: scaddins/inc/analysis.hrc:802
msgctxt "ANALYSIS_Dollarde"
msgid "The number as a fraction"
-msgstr "Número"
+msgstr "El número como fracción"
#. dcYmK
#: scaddins/inc/analysis.hrc:803
msgctxt "ANALYSIS_Dollarde"
msgid "Fraction"
-msgstr "Separador"
+msgstr "Fracción"
#. tXcaR
#: scaddins/inc/analysis.hrc:804
@@ -2856,7 +2856,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:823
msgctxt "ANALYSIS_Yield"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. gh6Ef
#: scaddins/inc/analysis.hrc:828
@@ -2922,7 +2922,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:838
msgctxt "ANALYSIS_Yielddisc"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. HH8bA
#: scaddins/inc/analysis.hrc:843
@@ -3000,7 +3000,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:855
msgctxt "ANALYSIS_Yieldmat"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. AYWCF
#: scaddins/inc/analysis.hrc:860
@@ -3240,7 +3240,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:911
msgctxt "ANALYSIS_Oddfprice"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. z5Eww
#: scaddins/inc/analysis.hrc:916
@@ -3762,7 +3762,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:1026
msgctxt "ANALYSIS_Coupncd"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. xUc5u
#: scaddins/inc/analysis.hrc:1031
@@ -3924,7 +3924,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:1065
msgctxt "ANALYSIS_Coupdaybs"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. aCBKW
#: scaddins/inc/analysis.hrc:1070
@@ -4032,7 +4032,7 @@ msgstr "Base"
#: scaddins/inc/analysis.hrc:1091
msgctxt "ANALYSIS_Coupnum"
msgid "The basis"
-msgstr "Base"
+msgstr "La base"
#. bJemX
#: scaddins/inc/analysis.hrc:1096
@@ -4355,7 +4355,7 @@ msgstr "Precio de una opción con barrera"
#: scaddins/inc/pricing.hrc:28
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Spot"
-msgstr ""
+msgstr "Precio corriente"
#. griJk
#: scaddins/inc/pricing.hrc:29
@@ -4517,7 +4517,7 @@ msgstr "Precio de una opción touch/no-touch"
#: scaddins/inc/pricing.hrc:59
msgctxt "PRICING_FUNCDESC_OptTouch"
msgid "Spot"
-msgstr ""
+msgstr "Precio corriente"
#. k45Ku
#: scaddins/inc/pricing.hrc:60
@@ -4655,7 +4655,7 @@ msgstr "Probabilidad de que un activo alcance una barrera, asumiendo que sigue l
#: scaddins/inc/pricing.hrc:86
msgctxt "PRICING_FUNCDESC_OptProbHit"
msgid "Spot"
-msgstr ""
+msgstr "Precio corriente"
#. hBkLM
#: scaddins/inc/pricing.hrc:87
@@ -4733,7 +4733,7 @@ msgstr ""
#: scaddins/inc/pricing.hrc:103
msgctxt "PRICING_FUNCDESC_OptProbInMoney"
msgid "Spot"
-msgstr ""
+msgstr "Precio corriente"
#. WsfBx
#: scaddins/inc/pricing.hrc:104
diff --git a/source/es/sfx2/messages.po b/source/es/sfx2/messages.po
index 33a8e100711..93c02b141b5 100644
--- a/source/es/sfx2/messages.po
+++ b/source/es/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-23 10:56+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/es/>\n"
"Language: es\n"
@@ -2446,7 +2446,7 @@ msgstr ""
#: sfx2/source/devtools/DevToolsStrings.hrc:44
msgctxt "STR_METHOD_TYPE_ENUM"
msgid "enum"
-msgstr ""
+msgstr "enumeración"
#. aEuJR
#: sfx2/source/devtools/DevToolsStrings.hrc:45
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Permite asignar campos de información personalizada al documento."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Minimizar barra lateral"
diff --git a/source/es/svx/messages.po b/source/es/svx/messages.po
index 5e8ab1f10eb..ec608d59fce 100644
--- a/source/es/svx/messages.po
+++ b/source/es/svx/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-24 19:50+0000\n"
+"PO-Revision-Date: 2021-04-01 04:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/es/>\n"
"Language: es\n"
@@ -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: 1565118157.000000\n"
#. 3GkZj
@@ -7191,7 +7191,7 @@ msgstr "Insertar"
#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
-msgstr ""
+msgstr "%1. Pulse para cambiar el modo de selección."
#. Dh5A2
#: include/svx/strings.hrc:1293
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index bd8965eeaa5..c75cb1e8f76 100644
--- a/source/es/sw/messages.po
+++ b/source/es/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-30 09:34+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/es/>\n"
"Language: es\n"
@@ -1538,7 +1538,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "Referencia a metadatos"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
@@ -1574,7 +1574,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:182
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Style Name"
-msgstr ""
+msgstr "Nombre de estilo de lista"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:183
@@ -3027,7 +3027,7 @@ msgstr ""
#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
-msgstr ""
+msgstr "Remitente"
#. AChE4
#: sw/inc/strings.hrc:157
@@ -3360,7 +3360,7 @@ msgstr "Horizontal"
#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
-msgstr ""
+msgstr "Ninguna lista"
#. mGZHb
#: sw/inc/strings.hrc:215
@@ -5882,7 +5882,7 @@ msgstr "Desactivado"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Pulse para alternar el plegado de esquema"
#. 44jEc
#: sw/inc/strings.hrc:659
@@ -5894,7 +5894,7 @@ msgstr "pulse con el botón secundario para incluir los subniveles"
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Pulse para alternar el plegado de esquema"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5906,7 +5906,7 @@ msgstr "pulse con el botón secundario para incluir los subniveles"
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Plegado de esquema"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5918,13 +5918,13 @@ msgstr "Alternar"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Desplegar todo"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Plegar todo"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -6473,7 +6473,7 @@ msgstr "Usuario5"
#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_LOCAL_FILE"
msgid "Local file"
-msgstr ""
+msgstr "Archivo local"
#. nsCwi
#: sw/inc/strings.hrc:764
@@ -8860,13 +8860,13 @@ msgstr "Fórmula de tabla errónea siguiente"
#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
-msgstr ""
+msgstr "Retroceder"
#. jCsGs
#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
-msgstr ""
+msgstr "Avanzar"
#. hSYa3
#: sw/inc/strings.hrc:1220
@@ -9785,6 +9785,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizado"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -9915,7 +9927,7 @@ msgstr "Añadir espacio indivisible"
#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
-msgstr ""
+msgstr "Translitera texto húngaro dispuesto de derecha a izquierda a la escritura rúnica antigua"
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -9993,7 +10005,7 @@ msgstr "Bloque de direcciones nuevo"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:128
msgctxt "addressblockdialog|addressesft"
msgid "Address _elements"
-msgstr "_Elementos de la dirección"
+msgstr "_Elementos de dirección"
#. BFZo7
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:173
@@ -20030,14 +20042,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Abre un cuadro de diálogo para seleccionar una plantilla."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleccione un documento inicial para combinar correspondencia"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Especifique el documento que desee emplear como base para el documento de combinación de correspondencia."
@@ -20220,7 +20238,7 @@ msgstr "Eliminar todo"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Plegado de esquema"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -21836,19 +21854,19 @@ msgstr "Guardar como"
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:122
msgctxt "numberingnamedialog|grid1"
msgid "Names of saved formats."
-msgstr ""
+msgstr "Nombres de formatos guardados"
#. 62pRF
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:138
msgctxt "numberingnamedialog|extended_tip|form"
msgid "Shows the current saved format names."
-msgstr ""
+msgstr "Muestra los nombres de los formatos guardados actualmente."
#. AbLwh
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:155
msgctxt "numberingnamedialog|entry"
msgid "Enter name to identify the format to be saved."
-msgstr ""
+msgstr "Introduzca el nombre para identificar el formato que se guardará."
#. F662A
#: sw/uiconfig/swriter/ui/numberingnamedialog.ui:158
@@ -21980,13 +21998,13 @@ msgstr "Estilo de lista asignado"
#: sw/uiconfig/swriter/ui/numparapage.ui:147
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "No List"
-msgstr ""
+msgstr "Ninguna lista"
#. hRgAM
#: 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 "Seleccione el estilo de lista que quiera aplicar en el párrafo."
#. eBkEW
#: sw/uiconfig/swriter/ui/numparapage.ui:163
@@ -21998,7 +22016,7 @@ msgstr "Editar estilo"
#: sw/uiconfig/swriter/ui/numparapage.ui:169
msgctxt "numparapage|extended_tip|editnumstyle"
msgid "Edit the properties of the selected List Style."
-msgstr ""
+msgstr "Edite las propiedades del estilo de lista seleccionado."
#. sQw2M
#: sw/uiconfig/swriter/ui/numparapage.ui:195
@@ -22010,7 +22028,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/numparapage.ui:198
msgctxt "numparapage|checkCB_NEW_START"
msgid "For ordered lists and List Styles with numbering"
-msgstr ""
+msgstr "Para listas ordenadas y estilos de lista con numeración"
#. SCaCA
#: sw/uiconfig/swriter/ui/numparapage.ui:207
@@ -27341,7 +27359,7 @@ msgstr "No ordenada"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
-msgstr ""
+msgstr "Elija un tipo de viñeta predefinido"
#. uCBn4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:264
@@ -27353,7 +27371,7 @@ msgstr "Ordenada"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
-msgstr ""
+msgstr "Elija una lista ordenada predefinida"
#. D9oKE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:313
@@ -29322,7 +29340,7 @@ msgstr "Configuración"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "_Mostrar botones de plegado de esquema"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29334,7 +29352,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Plegado de esquema"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/es/vcl/messages.po b/source/es/vcl/messages.po
index 98e802bca5c..cd4b0e74d91 100644
--- a/source/es/vcl/messages.po
+++ b/source/es/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-28 09:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/es/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Separador"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/es/wizards/messages.po b/source/es/wizards/messages.po
index c08414e6d5b..385b4821d03 100644
--- a/source/es/wizards/messages.po
+++ b/source/es/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-01-26 17:36+0000\n"
+"PO-Revision-Date: 2021-04-02 06:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559358133.000000\n"
#. gbiMx
@@ -272,7 +272,7 @@ msgstr "~Usar datos de usuario para el remitente"
#: wizards/com/sun/star/wizards/common/strings.hrc:75
msgctxt "RID_LETTERWIZARDDIALOG_START_20"
msgid "~New sender address:"
-msgstr "~Nueva dirección del remitente:"
+msgstr "Dirección ~nueva de remitente:"
#. uDppM
#: wizards/com/sun/star/wizards/common/strings.hrc:76
diff --git a/source/et/cui/messages.po b/source/et/cui/messages.po
index 610f6685f0f..e64a13921d5 100644
--- a/source/et/cui/messages.po
+++ b/source/et/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/et/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Määrab makrod programmi sündmustele. Määratud makro käivitatakse automaatselt iga kord valitud sündmuse toimumisel."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Fondi võimalused"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Eelvaade"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "HTML-i, BASICu ja SQL-i lähtetekstide fondid"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Laiendatud nõuanded"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Näidatakse kokkuvõtlikku abiteavet, kui hoida kursorit ikooni, menüükäsu või dialoogi juhtelemendi kohal."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Hüpikaken kohaliku abimaterjali puudumise kohta"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Käivitamisel näidatakse tänast näpunäidet"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Abi"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Kasutatakse %PRODUCTNAME'i dialooge"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avamise/salvestamise dialoogid"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Kasutatakse %PRODUCTNAME'i dialooge"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Printimise dialoogid"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printimist loetakse dokumendi muutmiseks"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Määrab, kas printimist loetakse dokumendi muutmiseks."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumendi olek"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tõlgendatakse aastatena vahemikus "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Määrab andmevahemiku, mille piires süsteem arvestab kahekohalisi aastaarve."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Kahekohalised aastaarvud"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kasutusteabe kogumine ja The Document Foundationile edastamine"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Kui see ruut on märgitud, saadetakse The Document Foundationile kasutamisteavet, mille abil tarkvara kasutajakogemust paremaks muuta."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Kokkujooksmisraportite The Document Foundationile edastamine"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME'i täiustamisele kaasaaitamine"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME laaditakse sisselogimisel mällu"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Kiirkäivitaja lubamine süsteemisalves"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME'i kiirkäivitaja"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windowsi vaikerakendused"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME'i failiseosed"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Määrab %PRODUCTNAME'i üldised sätted."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Paigutuse sätted"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/et/helpcontent2/source/auxiliary.po b/source/et/helpcontent2/source/auxiliary.po
index 2c583b91b60..18d9a0834bb 100644
--- a/source/et/helpcontent2/source/auxiliary.po
+++ b/source/et/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/et/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566161043.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Käskude seletused"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funktsioonid, laused ja tehted"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Käitusaja funktsioonide, lausete ja tehete tähestikuline loend"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/et/helpcontent2/source/text/sbasic/shared.po b/source/et/helpcontent2/source/text/sbasic/shared.po
index e0fa2545a6b..fab32036e55 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared.po
+++ b/source/et/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-09 16:35+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/et/>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile funktsioon</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile funktsioon</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Tagastab faili avamiseks järgmise saadaoleva faili numbri. Kasuta seda funktsiooni faili avamiseks sellise numbri abil, mis pole praegu avatud failis veel kasutusel."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Tagastusväärtus:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Täisarv"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Seda funktsiooni saab kasutada kohe lause Open ees. FreeFile tagastab järgmise saadaoleva faili numbri, kuid ei reserveeri seda."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Teksti esimene rida\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Teksti järgmine rida\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"See on veel üks rida teksti\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"See on teksti uus rida\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Kõik failid suletakse\",0,\"Viga\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Asukoht alguses"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"See on teksti esimene rida\" REM Täidab rea tekstiga"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"See on teksti teine rida\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"See on teksti kolmas rida\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"See on uus tekst\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"See on tekst kirjes 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input lause</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# lause</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Määrab, kas faili kursor on jõudnud faili lõppu."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Tagastusväärtus:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Vigade vältimiseks pärast faili lõppu sisestamise korral kasuta EOF-i. Kui kasutad failist lugemiseks lauset Input või Get, nihutatakse faili kursorit loetud baitide arvu võrra. Faili lõppu jõudmisel tagastab EOF väärtuse Tõene (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Teksti esimene rida\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Teksti järgmine rida\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Tagastab avatud faili suuruse baitides."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Tagastusväärtus:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Sellise faili pikkuse toomiseks, mis pole avatud, kasuta funktsiooni <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Peab olema variant-tüüpi"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Algne asukoht"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"See on teksti esimene rida\" REM Täida tekstiga"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"See on teksti teine rida\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"See on teksti kolmas rida\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"See on teksti uus rida\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"See on tekst kirjes 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Vaata ka: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Tagastusväärtus:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Täisarv"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (fail on avatud kahendrežiimis)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"See on rida teksti\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Juurdepääsu režiim\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Faili atribuut\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Kustutab faili kettalt."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> faili ühtseid tehnilisi andmeid sisaldav mis tahes stringavaldis. Soovi korral saab kasutada ka <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-i tähistust</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM Fail peab olema eelnevalt loodud"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Lubab veahalduse alamprotseduuri käivitamise pärast vea ilmnemist või jätkab programmi täitmist."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Lauset On Error GoTo kasutatakse makrodes esinevatele vigadele reageerimiseks."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Näide:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"See on rida teksti\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Kõik failid suletakse\",0,\"Viga\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD tehe (matemaatiline)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Tehe \"Mod\"</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Tagstab jagamistehte täisarvulise jäägi."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Süntaks:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Tulemus = avaldis1 MOD avaldis2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Tagastusväärtus:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Täisarv"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameetrid:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Tulemus:</emph> MOD tehte tulemust sisaldav suvaline arvmuutuja."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Avaldis1, avaldis2:</emph> suvalised jagatavad arvavaldised."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Näide:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Tulemus = avaldis1 MOD avaldis2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' tagastab 0"
+msgid "Integer"
+msgstr "Täisarv"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' tagastab 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' tagastab 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' tagastab 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' tagastab 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' tagastab 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Võrdlusoperaatorid"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Võrdlusoperaatorid\">Võrdlusoperaatorid</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Siin kirjeldatakse olemasolevaid võrdlusoperaatoreid."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sbasic/shared/03.po b/source/et/helpcontent2/source/text/sbasic/shared/03.po
index 50daaa745a2..51ef7ae5c9e 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/et/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-03-08 23:16+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared03/et/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/scalc/01.po b/source/et/helpcontent2/source/text/scalc/01.po
index 5304aa29709..d141faed7bf 100644
--- a/source/et/helpcontent2/source/text/scalc/01.po
+++ b/source/et/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/et/>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Tagastab arvu teksti kujul koos määratud arvu kohtadega pärast koma ja mittekohustusliku tuhandeliste eraldajaga.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567,89;3;1)</item> tagastab tekstistringina 1234567,890."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index 10874b72491..c93a8720a6f 100644
--- a/source/et/helpcontent2/source/text/shared/01.po
+++ b/source/et/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/et/>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Makro omistamine"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/et/helpcontent2/source/text/swriter/01.po b/source/et/helpcontent2/source/text/swriter/01.po
index 514fd0e0dbf..6bc0b2d3137 100644
--- a/source/et/helpcontent2/source/text/swriter/01.po
+++ b/source/et/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-07-14 18:34+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/et/>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Vali loendis üksus ja klõpsa üksuse nihutamiseks noolenupul.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-kiri"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-kiri"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr "Omadused"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index 1553b02d279..12195e3899b 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-07-09 16:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/et/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Iga lause algustähe suurtäheks muutmise keelamine"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
index 41ff2dd13ab..f0f85597dc8 100644
--- a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-07-23 01:46+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/et/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Paigutus ja suurus"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/et/sfx2/messages.po b/source/et/sfx2/messages.po
index 5b1f1de2ca9..20b46510d9c 100644
--- a/source/et/sfx2/messages.po
+++ b/source/et/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-26 17:36+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/et/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Võimaldab dokumendile lisada täiendavaid infovälju."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index 4bf1b18e27a..2c78c6ee97a 100644
--- a/source/et/sw/messages.po
+++ b/source/et/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/et/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Kohandatud"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20030,14 +20042,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Kirjakooste lähtedokumendi valimine"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/et/vcl/messages.po b/source/et/vcl/messages.po
index 34b8d83f1ea..68813e39cc5 100644
--- a/source/et/vcl/messages.po
+++ b/source/et/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-01-26 17:36+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/et/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/eu/chart2/messages.po b/source/eu/chart2/messages.po
index 7e2cd2267ab..77b308f95bb 100644
--- a/source/eu/chart2/messages.po
+++ b/source/eu/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-03-29 16:01+0200\n"
-"PO-Revision-Date: 2021-03-14 21:37+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559371396.000000\n"
#. NCRDD
@@ -4481,7 +4481,7 @@ msgstr "Datu-serieak _errenkadetan"
#: chart2/uiconfig/ui/tp_RangeChooser.ui:113
msgctxt "tp_RangeChooser|extended_tip|RB_DATAROWS"
msgid "Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series."
-msgstr "Datu-serieen datuak datoz hautatutako barrutiko elkarren alboko errenkadetatik. Sakabanatze-diagrametan, lehen datu-serieak serie guztietarako X balioak dituzte. Gainerako datu-serieak Y balio gisa erabiliko dira, balio bana serie bakoitzerako."
+msgstr "Datu-serieen datuak datoz hautatutako barrutiko elkarren ondoko errenkadetatik. Sakabanatze-diagrametan, lehen datu-serieak serie guztietarako X balioak dituzte. Gainerako datu-serieak Y balio gisa erabiliko dira, balio bana serie bakoitzerako."
#. wSDqF
#: chart2/uiconfig/ui/tp_RangeChooser.ui:124
@@ -4493,7 +4493,7 @@ msgstr "Datu-serieak _zutabetan"
#: chart2/uiconfig/ui/tp_RangeChooser.ui:133
msgctxt "tp_RangeChooser|extended_tip|RB_DATACOLS"
msgid "Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series."
-msgstr "Datu-serieen datuak datoz hautatutako barrutiko elkarren alboko zutabeetatik. Sakabanatze-diagrametan, lehen datu-zutabeak serie guztietarako X balioak dituzte. Gainerako datu-zutabeak Y balio gisa erabiliko dira, balio bana serie bakoitzerako."
+msgstr "Datu-serieen datuak datoz hautatutako barrutiko elkarren ondoko zutabeetatik. Sakabanatze-diagrametan, lehen datu-zutabeak serie guztietarako X balioak dituzte. Gainerako datu-zutabeak Y balio gisa erabiliko dira, balio bana serie bakoitzerako."
#. CExLY
#: chart2/uiconfig/ui/tp_RangeChooser.ui:144
diff --git a/source/eu/connectivity/messages.po b/source/eu/connectivity/messages.po
index 3c4d560515a..c4416ece0cf 100644
--- a/source/eu/connectivity/messages.po
+++ b/source/eu/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-01-23 09:42+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/connectivitymessages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1555139001.000000\n"
#. 9KHB8
@@ -333,7 +333,7 @@ msgid ""
"\n"
"The specified value \"$value$ is longer than the number of digits allowed."
msgstr ""
-"'$columnname$' zutabea \"Dezimala\" motakoa bezala definitu da, gehienezko luzera $precision$ karaktereekin ($scale$ dezimalekin).\n"
+"'$columnname$' zutabea \"Dezimala\" motakoa bezala definitu da, gehieneko luzera $precision$ karaktereekin ($scale$ dezimalekin).\n"
"\n"
"Zehaztutako \"$value$\" balioa baimendutako digitu kopurua baino luzeagoa da."
diff --git a/source/eu/cui/messages.po b/source/eu/cui/messages.po
index 2fe52063515..29a9ae34746 100644
--- a/source/eu/cui/messages.po
+++ b/source/eu/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/eu/>\n"
"Language: eu\n"
@@ -3548,11 +3548,11 @@ 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 "Multzo-barrak taldeka eskaintzen ditu funtzioak, gehien erabiltzen diren eginbideak ikonoekin irudikatzen dira eta gainerakoak goitibeherako menuen bidez. Aldaera oso horrek funtzioak hobesten ditu eta besteak baino apur bat handiagoa da."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "Multzo-barra konpaktuak taldeka eskaintzen ditu funtzioak, gehien erabiltzen diren eginbideak ikonoekin irudikatzen dira eta gainerakoak goitibeherako menuen bidez. Aldaera konpaktu horrek espazio bertikala hobesten du."
+msgid "The Groupedbar 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
@@ -8983,6 +8983,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Programa-gertaerei makroak esleitzen dizkie. Esleitutako makroak automatikoki exekutatzen dira, gertaera jazotzen den aldi guztietan."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9284,13 +9302,13 @@ msgid "Font Features"
msgstr "Letra-tipoaren ezaugarriak"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Aurrebista"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Hautatu eta aplikatu letra-tipoen ezaugarri tipografikoak karakterei."
@@ -13002,7 +13020,7 @@ msgstr "Zenbakitzea"
#: cui/uiconfig/ui/numberingoptionspage.ui:672
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
-msgstr "_Ondoz ondoko zenbakitzea"
+msgstr "Elkarren _ondoko zenbakitzea"
#. 48AhR
#: cui/uiconfig/ui/numberingoptionspage.ui:682
@@ -13630,7 +13648,7 @@ msgstr "Konpresiorik ez dela egongo zehazten du."
#: cui/uiconfig/ui/optasianpage.ui:122
msgctxt "optasianpage|punctcompression"
msgid "_Compress punctuation only"
-msgstr "K_onprimitu puntuazioa soilik"
+msgstr "K_onprimatu puntuazioa soilik"
#. 8FYbX
#: cui/uiconfig/ui/optasianpage.ui:131
@@ -13642,7 +13660,7 @@ msgstr "Puntuazioaren konpresioa soilik izango dela zehazten du."
#: cui/uiconfig/ui/optasianpage.ui:143
msgctxt "optasianpage|punctkanacompression"
msgid "Compress punctuation and Japanese Kana"
-msgstr "Konprimitu puntuazioa eta Kana japoniarra"
+msgstr "Konprimatu puntuazioa eta Kana japoniarra"
#. k2K9z
#: cui/uiconfig/ui/optasianpage.ui:152
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Letra-tipoaren ezarpenak HTML, Basic eta SQL iturburuentzako"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Aholku _luzeak"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Ikono batean, menu-komando batean edo elkarrizketa-koadro bateko kontrol batean kurtsorea uzten duzunean laguntza-testu bat bistaratzen du."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Erakutsi \"Lineako laguntza ez dago instalatuta\" laster-leihora"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Erakutsi \"Eguneko aholkua\" elkarrizketa-koadroa abioan"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Laguntza"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Erabili %PRODUCTNAME elkarrizketa-koadroak"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Irekitzeko eta gordetzeko elkarrizketa-koadroak"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Erabili %PRODUCTNAME _elkarrizketa-koadroak"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Inprimatzeko elkarrizketa-koadroak"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Inpri_matzean \"dokumentu aldatua\" egoera ezartzen du"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Dokumentuaren inprimaketa aldaketatzat jotzen den zehazten du."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentuaren egoera"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretatu bitarte honetako urteak bezala: "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Data-barruti bat definitzen du, eta bertan sistemak bi zifrako urte bat ezagutzen du."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "eta "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Urtea (bi digitu)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Bildu erabilera-datuak eta bidali The Document Foundation fundazioari"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Bidali erabilera-datuak The Document Foundation fundazioari software honen erabilgarritasuna hobetzen laguntzeko."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "B_idali kraskaduren jakinarazpenak The Document Foundation fundazioari"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Lagundu %PRODUCTNAME hobetzen"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Kargatu %PRODUCTNAME sistema abiaraztean"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gaitu erretiluko abiarazle bizkorra"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME abiarazle bizkorra"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows app lehenetsiak"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME fitxategi-asoziazioak"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "%PRODUCTNAME(r)en ezarpen orokorrak zehazten ditu."
@@ -17206,7 +17230,7 @@ msgstr "Erreferentzia-e_stiloa:"
#: cui/uiconfig/ui/pageformatpage.ui:679
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
-msgstr "Barne-marjinaren kokagunea:"
+msgstr "Erretenaren kokagunea:"
#. LF4Ex
#: cui/uiconfig/ui/pageformatpage.ui:694
@@ -17220,33 +17244,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Goian"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
-msgstr ""
+msgstr "Atzeko planoak marjinak estaltzen ditu"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
-msgstr ""
+msgstr "Edozein atzeko planok orrialdearen marjinak ere estaliko ditu"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
-msgstr ""
+msgstr "Gaituta badago, atzeko plano guztiek orrialde osoa estaliko dute, baita marjinak ere. Desgaituta badago, atzeko planoek marjinen barruko orrialdea soilik estaliko dute."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Diseinu-ezarpenak"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -18319,14 +18349,14 @@ msgstr "QR kodea sortzeko erabiliko den testua."
#: cui/uiconfig/ui/qrcodegen.ui:132
msgctxt "qrcodegen|label_text"
msgid "URL/Text:"
-msgstr ""
+msgstr "URLa/Testua:"
#. FoKEY
#. Set Margin around QR
#: cui/uiconfig/ui/qrcodegen.ui:147
msgctxt "qrcodegen|label_margin"
msgid "Margin:"
-msgstr ""
+msgstr "Marjina:"
#. i2kkj
#. Error Correction Level of QR code
@@ -18339,7 +18369,7 @@ msgstr "Errore-zuzenketa:"
#: cui/uiconfig/ui/qrcodegen.ui:200
msgctxt "edit margin"
msgid "The margin surrounding the QR code."
-msgstr ""
+msgstr "QR kodearen inguruko marjina."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:217
@@ -20679,7 +20709,7 @@ msgstr "Marratxoak txertatzen ditu automatikoki paragrafoan behar diren lekuetan
#: cui/uiconfig/ui/textflowpage.ui:100
msgctxt "textflowpage|extended_tip|spinMaxNum"
msgid "Enter the maximum number of consecutive lines that can be hyphenated."
-msgstr "Sartu zatitu daitezkeen elkarren segidako gehienezko lerro kopurua."
+msgstr "Sartu zatitu daitezkeen elkarren ondoko gehieneko lerro kopurua."
#. zBD7h
#: cui/uiconfig/ui/textflowpage.ui:120
@@ -21417,7 +21447,7 @@ msgstr "_Geh. sarrerak:"
#: 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 "Sartu hitz-osaketaren zerrendan gorde nahi duzun gehienezko hitz kopurua."
+msgstr "Sartu hitz-osaketaren zerrendan gorde nahi duzun gehieneko hitz kopurua."
#. SzABn
#: cui/uiconfig/ui/wordcompletionpage.ui:226
diff --git a/source/eu/helpcontent2/source/auxiliary.po b/source/eu/helpcontent2/source/auxiliary.po
index 65366bdbdef..911c39d733b 100644
--- a/source/eu/helpcontent2/source/auxiliary.po
+++ b/source/eu/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-05-21 10:40+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/eu/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562308114.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Komandoen erreferentzia"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funtzioak, instrukzioak eta eragileak"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Funtzioen, instrukzioen eta eragileen zerrenda alfabetikoa"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/eu/helpcontent2/source/text/sbasic/python.po b/source/eu/helpcontent2/source/text/sbasic/python.po
index 2e8494b5093..622e4c682de 100644
--- a/source/eu/helpcontent2/source/text/sbasic/python.po
+++ b/source/eu/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-29 10:37+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/eu/>\n"
"Language: eu\n"
@@ -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 "%PRODUCTNAME Application Programming Interface (API) scriptgintzako lan-markoak lengoaien arteko scripten exekuzioa onartzen du Python eta Basic lengoaien kasuan, baina baita onartutako beste edozein programazio-lengoaiaren kasuan ere. Argumentuak atzera eta aurrera pasatu daitezke deietan, bi lengoaiek ezagutzen dituzten jatorrizko datu motak ordezkatzen badituzte, eta scriptgintzako lan-markoak haiek modu egokian bihurtuko dituztela onartuta."
#. Gn9Bv
#: python_2_basic.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"N0338\n"
"help.text"
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 ""
+msgstr "Python scriptsak Integrated Development Environment (IDE) batean exekutatzen direnean, %PRODUCTNAME aplikazioak kapsulatuta duen Basic motorra faltan egon daiteke. Saihestu Python-%PRODUCTNAME Basic deiak testuinguru horretan. Hala ere, Python ingurunea eta Universal Networks Objects (UNO) erabilgarri egongo dira beti. Begiratu <link href=\"text/sbasic/python/python_ide.xhp\" name=\"Setting Up an Integrated IDE for Python\">IDE integratu bat konfiguratzea Python lengoaiarako</link> informazio gehiago jasotzeko."
#. NcuDF
#: python_2_basic.xhp
@@ -455,7 +455,7 @@ msgctxt ""
"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 ""
+msgstr "Beheko adibideek <literal>Access2Base Trace</literal> kontsola edo <literal>TutorialsDialog</literal> elkarrizketa-koadroa irekitzen dute honako <menuitem>Tresnak - Makroak - Exekutatu makroa</menuitem> menuarekin:"
#. ChW9B
#: python_dialogs.xhp
@@ -473,7 +473,7 @@ msgctxt ""
"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:"
-msgstr ""
+msgstr "Beheko adibideak berriki editatutako <literal>Dialog1</literal> elkarrizketa-koadroa irekitzen du dokumentu batetik, <menuitem>Tresnak - Makroak - Exekutatu makroa</menuitem> menuarekin:"
#. mMo7w
#: python_dialogs.xhp
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared.po b/source/eu/helpcontent2/source/text/sbasic/shared.po
index af641c47e55..4302893de4b 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eu/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/eu/>\n"
"Language: eu\n"
@@ -6620,7 +6620,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
-msgstr "<ahelp hid=\".\">Erabiltzaileak sar dezakeen gehienezko karaktere kopurua zehazten du.</ahelp>"
+msgstr "<ahelp hid=\".\">Erabiltzaileak sar dezakeen gehieneko karaktere kopurua zehazten du.</ahelp>"
#. fWJry
#: 01170101.xhp
@@ -6881,7 +6881,7 @@ msgctxt ""
"par_id3145167\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value of a progress bar control.</ahelp>"
-msgstr "<ahelp hid=\".\">Aurrerapen-barraren kontrolaren gehienezko balioa zehazten du.</ahelp>"
+msgstr "<ahelp hid=\".\">Aurrerapen-barraren kontrolaren gehieneko balioa zehazten du.</ahelp>"
#. 7Euj4
#: 01170101.xhp
@@ -7079,7 +7079,7 @@ msgctxt ""
"par_id3148877\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value of a scrollbar control.</ahelp>"
-msgstr "<ahelp hid=\".\">Korritze-barraren kontrolaren gehienezko balioa zehazten du.</ahelp>"
+msgstr "<ahelp hid=\".\">Korritze-barraren kontrolaren gehieneko balioa zehazten du.</ahelp>"
#. WhdNX
#: 01170101.xhp
@@ -7394,7 +7394,7 @@ msgctxt ""
"par_id3155401\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum time value for a time control.</ahelp>"
-msgstr "<ahelp hid=\".\">Ordu-kontrolentzako gehienezko ordu-balioa zehazten du.</ahelp>"
+msgstr "<ahelp hid=\".\">Ordu-kontrolentzako gehieneko ordu-balioa zehazten du.</ahelp>"
#. wgnhh
#: 01170101.xhp
@@ -7493,7 +7493,7 @@ msgctxt ""
"par_id3163823\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum value for the current control.</ahelp>"
-msgstr "<ahelp hid=\".\">Uneko kontrolak eduki dezakeen gehienezko balioa zehazten du.</ahelp>"
+msgstr "<ahelp hid=\".\">Uneko kontrolak eduki dezakeen gehieneko balioa zehazten du.</ahelp>"
#. moAtf
#: 01170101.xhp
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile funtzioa</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile funtzioa</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Hurrengo fitxategi-zenbakia itzultzen du fitxategi bat irekitzeko. Funtzio hori erabili fitxategi bat fitxategi-zenbakia erabiliz irekitzeko. Ziurtatu une honetan irekitako fitxategia ez dela ari fitxategi-zenbaki hori erabiltzen."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Itzulera-balioa:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Osoko zenbakia"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Funtzio hau Open instrukzioaren aurretik bakarrik erabil daiteke. FreeFile-k hurrengo fitxategi-zenbakia itzultzen du, baina ez du erreserbatzen."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Testuaren lehen lerroa\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Testuaren beste lerro bat\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Hau beste testu-lerro bat da\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Hau testuaren lerro berria da\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Fitxategi guztiak itxiko dira\",0,\"Errorea\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Hasierako kokagunea"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Hau testuaren lehen lerroa da\" ' Bete lerroa testuarekin"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Hau testuaren bigarren lerroa da\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Hau testuaren hirugarren lerroa da\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Hau testu berria da\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Hau 20. erregistroko testua da\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input instrukzioa</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# instrukzioa</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Fitxategi-erakuslea fitxategi-amaierara heldu den zehazten du."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (OsokoAdierazpena As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Itzulera-balioa:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Boolearra"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Erabili EOF errorerik ez gertatzeko sarrera lortzen saiatzean fitxategi amaiera pasa ondoren. Fitxategitik irakurtzeko Input edo Get instrukzioak erabiltzen badituzu, fitxategi-erakuslea irakurritako byte kopuruaren arabera aurreratzen da. Fitxategi amaierara heldutakoan, EOF funtzioak \"True\" (-1) balioa itzultzen du."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Testuaren lehen lerroa\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Testuaren beste lerro bat\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Irekitako fitxategiaren tamaina itzultzen du bytetan."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FitxategiZenbakia)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Itzulera-balioa:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Ireki gabeko fitxategi baten luzera lortzeko, erabili <emph>FileLen</emph> funtzioa."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Aldagaia izan behar du"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Hasieran kokatzen du"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Hau testuaren lehen lerroa da\" REM Bete lerroa testuarekin"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Hau testuaren bigarren lerroa da\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Hau testuaren hirugarren lerroa da\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Hau testuko lerro berria da\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Hau 20. erregistroko testua da\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Ikus baita ere: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FitxategiZenbakia As Integer, Atributua As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Itzulera-balioa:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Osoko zenbakia"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (fitxategia bitar moduan irekita)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Hau testu-lerro bat da\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Atzipen modua\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Fitxategi-atributua\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Fitxategiak diskotik ezabatzen ditu."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Fitxategia As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Fitxategia:</emph> Fitxategi-zehaztapen argia duen kate-adierazpena. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL idazkera\">URL idazkera</link> ere erabil dezakezu."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datufitxategia.dat\" ' Fitxategia aurrez sortu behar da"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Erroreak maneiatzeko errutina baten aukera ematen du errore bat gertatzean, edo programaren exekuzioari berrekiten dio."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo EtiketaIzena | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "On Error GoTo instrukzioa makroetan gertatzen diren erroreen aurrean erreakzionatzeko erabiltzen da."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Hau testu-lerro bat da\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Fitxategi guztiak itxiko dira\",0,\"Errorea\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD eragilea (matematikoa)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod eragilea</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Zatiketa baten hondar osoa itzultzen du."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxia:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Emaitza = Adierazpena1 MOD Adierazpena2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Itzulera-balioa:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Osoko zenbakia"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametroak:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Emaitza :</emph> MOD eragiketaren emaitza duen zenbakizko aldagaia."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Adierazpena1, Adierazpena2:</emph> zatitu nahi dituzun zenbakizko adierazpenak."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Adibidea:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Emaitza = Adierazpena1 MOD Adierazpena2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 mod 2.5 ' 0 itzultzen du"
+msgid "Integer"
+msgstr "Osoko zenbakia"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' 4 itzultzen du"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' 0 itzultzen du"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' 2 itzultzen du"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' 5 itzultzen du"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' 0,5 itzultzen du"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Konparazio-eragileak"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Konparazio-eragileak\">Konparazio-eragileak</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Atal honetan konparazio-eragileak deskribatzen dira."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
@@ -33692,7 +33467,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<emph>Start: </emph>Optional numeric expression that marks the position <emph>from the left </emph>in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535."
-msgstr "<emph>Hasiera: </emph>zehaztutako azpikatearen bilaketa katearen <emph>ezkerretik hasita</emph> zein kokagunetan hasiko den zehazten duen zenbakizko aukerazko adierazpena. Parametro hori ez badago, bilaketa katearen azken karakteretik hasiko da. Gehienezko balioa 65535 izan daiteke."
+msgstr "<emph>Hasiera: </emph>zehaztutako azpikatearen bilaketa katearen <emph>ezkerretik hasita</emph> zein kokagunetan hasiko den zehazten duen zenbakizko aukerazko adierazpena. Parametro hori ez badago, bilaketa katearen azken karakteretik hasiko da. Gehieneko balioa 65535 izan daiteke."
#. ZEauB
#: 03120411.xhp
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared/02.po b/source/eu/helpcontent2/source/text/sbasic/shared/02.po
index 94b964e4c12..5193a12c419 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/eu/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-12-17 14:17+0100\n"
-"PO-Revision-Date: 2020-02-01 14:36+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
-"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared02/eu/>\n"
+"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared02/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.9.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559714057.000000\n"
#. 6Kkin
@@ -1184,7 +1184,7 @@ msgctxt ""
"par_id3153575\n"
"help.text"
msgid "<ahelp hid=\".uno:Radiobutton\">Adds a button that allows a user to select from a number of options.</ahelp> Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame."
-msgstr "<ahelp hid=\".uno:Radiobutton\">Botoi bat gehitzen du eta erabiltzaileari hainbat aukera eskaintzen dizkio.</ahelp> Elkartutako aukera-botoiek elkarren segidako tabulazio-indizeak eduki behar dituzte. Eskuarki talde-lauki batez inguratuta egoten dira. Aukera-botoien bi talde badituzu, bi taldeen tabulazio-indizeen artean tabulazio-indizea txertatu behar duzu talde-markoan."
+msgstr "<ahelp hid=\".uno:Radiobutton\">Botoi bat gehitzen du eta erabiltzaileari hainbat aukera eskaintzen dizkio.</ahelp> Elkartutako aukera-botoiek elkarren ondoko tabulazio-indizeak eduki behar dituzte. Eskuarki talde-lauki batez inguratuta egoten dira. Aukera-botoien bi talde badituzu, bi taldeen tabulazio-indizeen artean tabulazio-indizea txertatu behar duzu talde-markoan."
#. DaRgN
#: 20000000.xhp
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared/03.po b/source/eu/helpcontent2/source/text/sbasic/shared/03.po
index ed3a4ba8c2f..dbb8a4bea82 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/eu/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-03-30 18:07+0200\n"
-"PO-Revision-Date: 2021-03-28 08:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/eu/>\n"
"Language: eu\n"
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "(Un)Available since release"
-msgstr ""
+msgstr "(Ez) erabilgarri bertsio honetatik:"
#. CeSww
#: avail_release.xhp
@@ -509,7 +509,7 @@ msgctxt ""
"par_id381593519742529\n"
"help.text"
msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
-msgstr ""
+msgstr "<emph>Dokumentu-bihurtzailea</emph> morroia hautatzen bada, honako liburutegiak kargatuko dira memorian:"
#. vV4TD
#: lib_importwiz.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id471582548992953\n"
"help.text"
msgid "<emph>Array_1D</emph> : the pre-existing array, may be empty."
-msgstr "<emph>Matrizea_1D</emph> : Lehendik dagoen matrizea, hutsik egon daiteke."
+msgstr "<emph>Array_1D</emph> : Lehendik dagoen matrizea, hutsik egon daiteke."
#. FfdqS
#: sf_array.xhp
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_id71582557214489\n"
"help.text"
msgid "Store the content of a 2-columns array into a <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"dictionary\">ScriptForge.Dictionary</link> object. <br/>The key will be extracted from the first column, the item from the second."
-msgstr ""
+msgstr "Biltegiratu 2 zutabetako matrize baten edukia <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"dictionary\">ScriptForge.Dictionary</link> objektu batean. <br/>Gakoa lehen zutabetik erauziko da, elementua bigarrenetik."
#. CMssn
#: sf_array.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id271582558644287\n"
"help.text"
msgid "<emph>Array1_1D</emph> : A 1 dimension reference array, whose items are examined for removal."
-msgstr ""
+msgstr "<emph>Array1_1D</emph> : Dimentsio bakarreko erreferentziako matrizea. Matrize horren elementuak aztertuko dira kenduko diren ala ez ebazteko."
#. gPEJE
#: sf_array.xhp
@@ -1292,7 +1292,7 @@ msgctxt ""
"par_id141582558644287\n"
"help.text"
msgid "<emph>Array2_1D</emph> : A 1 dimension array, whose items are subtracted from the first input array."
-msgstr ""
+msgstr "<emph>Array2_1D</emph> : Dimentsio bakarreko matrizea. Matrize horren elementuak sarrerako lehen matrizetik kenduko dira."
#. z2QT8
#: sf_array.xhp
@@ -1301,7 +1301,7 @@ msgctxt ""
"par_id291582559651473\n"
"help.text"
msgid "<emph>CaseSensitive</emph> : Only if the arrays are populated with strings, default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>CaseSensitive</emph> : OMatrizeak kateekin beteta badaude soilik, balio lehenetsia = <literal>False</literal>."
#. mzRus
#: sf_array.xhp
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id941586179707156\n"
"help.text"
msgid "Write all items of the array sequentially to a text file. If the file exists already, it will be overwritten without warning."
-msgstr ""
+msgstr "Idatzi matrize bateko elementu guztiak modu sekuentzialean testu-fitxategi batean. Fitxategia lehendik badago, hura gainidatziko da abisurik gabe."
#. igBEo
#: sf_array.xhp
@@ -1319,7 +1319,7 @@ msgctxt ""
"par_id100158617970719\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to export. It must contain only strings."
-msgstr ""
+msgstr "<emph>Array_1D</emph> : Esportatuko den matrizea. Kateak soilik izan behar ditu."
#. gXh53
#: sf_array.xhp
@@ -1328,7 +1328,7 @@ msgctxt ""
"par_id101586179707232\n"
"help.text"
msgid "<emph>FileName</emph> : the name of the text file containing the data. The name is expressed as given by the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. Default = any (both the URL format and the native operating system format are admitted)."
-msgstr ""
+msgstr "<emph>FileName</emph> : Datuak dituen testu-fitxategiaren izena. Izena <literal>SF_FileSystem</literal> zerbitzuko uneko <literal>FileNaming</literal> propietateak emandako moduan adierazi behar da . Balio lehenetsia = any (URL formatua zein sistema eragilearen jatorrizko formatua onartzen dira)."
#. wqGeq
#: sf_array.xhp
@@ -1337,7 +1337,7 @@ msgctxt ""
"par_id70158617970791\n"
"help.text"
msgid "<emph>Encoding</emph> : The character set that should be used. Use one of the names listed in <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"IANA character sets\">IANA character sets</link>. Note that %PRODUCTNAME may not implement all existing character sets. Default is \"UTF-8\"."
-msgstr ""
+msgstr "<emph>Encoding</emph> : Erabili behar den karaktere-jokoa. Erabili <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"IANA character sets\">IANA karaktere-jokoak</link> atalean zerrendatutako izen bat. Kontuan izan %PRODUCTNAME aplikazioak ez dituela zertan existitzen diren karaktere-joko guztiak inplementatu. Balio lehenetsia \"UTF-8\" da."
#. TtHbe
#: sf_array.xhp
@@ -1355,7 +1355,7 @@ msgctxt ""
"par_id301582560281083\n"
"help.text"
msgid "<emph>Array_2D</emph> : The array from which to extract."
-msgstr ""
+msgstr "<emph>Array_2D</emph> : Erauzpena jasango duen matrizea."
#. z3M4K
#: sf_array.xhp
@@ -1364,7 +1364,7 @@ msgctxt ""
"par_id421582560281084\n"
"help.text"
msgid "<emph>ColumnIndex</emph> : The column number to extract - must be in the interval <literal>[LBound, UBound]</literal>."
-msgstr ""
+msgstr "<emph>ColumnIndex</emph> : Erauziko den zutabearen zenbakia. <literal>[LBound, UBound]</literal> barrutian egon behar du."
#. AJxYE
#: sf_array.xhp
@@ -1373,7 +1373,7 @@ msgctxt ""
"bas_id861609975902708\n"
"help.text"
msgid "'Creates a 3x3 matrix: |1, 2, 3|"
-msgstr ""
+msgstr "'3x3 matrize bat sortzen du: |1, 2, 3|"
#. uZD8U
#: sf_array.xhp
@@ -1382,7 +1382,7 @@ msgctxt ""
"bas_id431609976009994\n"
"help.text"
msgid "'Extracts the third column: |3, 6, 9|"
-msgstr ""
+msgstr "'Hirugarren zutabea erauzten du: |3, 6, 9|"
#. is3Zq
#: sf_array.xhp
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index 6d845b09ab6..004bab80789 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/eu/>\n"
"Language: eu\n"
@@ -18104,7 +18104,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
-msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Barruti anizkoitz batean zenbat barruti dauden ematen du..</ahelp> Barruti bat ondoz ondoko gelaxken barrutia edo gelaxka bakarra izan daiteke."
+msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Barruti anizkoitz batean zenbat barruti dauden ematen du..</ahelp> Barruti bat elkarren ondoko gelaxken barrutia edo gelaxka bakarra izan daiteke."
#. cvDFN
#: 04060109.xhp
@@ -18797,7 +18797,7 @@ msgctxt ""
"par_id3149984\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">Sorted</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">Sorted</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
-msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Bilaketa bertikala eskuineko ondoz ondoko gelaxken erreferentziarekin.</ahelp> Balio jakin bat matrizearen lehen zutabean badagoen begiratzen du funtzio honek. Orduan funtzioak balioa itzultzen du <item type=\"literal\">indizeak</item> izendatutako zutabeko errenkada berean. <item type=\"literal\">Ordenatua</item> parametroa ez bada zehazten edo TRUE (egiazkoa) ezartzen bada, datuak goranzko ordenan ordenatu behar direla ulertzen da. Kasu horretan, <item type=\"literal\">Bilaketa-irizpidea</item> ez bada aurkitzen, hurrengo balioa itzuliko da. <item type=\"literal\">Ordenatua</item> FALSE (faltsua) edo zero bada, zehatz-mehatz bat datorrena aurkitu behar da, eta bestela errore hau emango du: <emph>Errorea: balioa ez dago eskuragarri</emph>. Hortaz, zero balioarekin ez dago datuak gorantz ordenatu beharrik."
+msgstr "<ahelp hid=\"HID_FUNC_SVERWEIS\">Bilaketa bertikala eskuineko elkarren ondoko gelaxken erreferentziarekin.</ahelp> Balio jakin bat matrizearen lehen zutabean badagoen begiratzen du funtzio honek. Orduan funtzioak balioa itzultzen du <item type=\"literal\">indizeak</item> izendatutako zutabeko errenkada berean. <item type=\"literal\">Ordenatua</item> parametroa ez bada zehazten edo TRUE (egiazkoa) ezartzen bada, datuak goranzko ordenan ordenatu behar direla ulertzen da. Kasu horretan, <item type=\"literal\">Bilaketa-irizpidea</item> ez bada aurkitzen, hurrengo balioa itzuliko da. <item type=\"literal\">Ordenatua</item> FALSE (faltsua) edo zero bada, zehatz-mehatz bat datorrena aurkitu behar da, eta bestela errore hau emango du: <emph>Errorea: balioa ez dago eskuragarri</emph>. Hortaz, zero balioarekin ez dago datuak gorantz ordenatu beharrik."
#. 8FhyJ
#: 04060109.xhp
@@ -19274,7 +19274,7 @@ msgctxt ""
"par_id3153389\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Gelaxka baten edukia ematen du errenkada bateko nahiz zutabe bateko barruti batetik edo matrize batetik.</ahelp> Nahi izanez gero, esleitutako balioa (indize berekoa) beste errenkada eta zutabe baten emango da. <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> eta <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link> funtzioetan ez bezala, bilaketa eta emaitza bektoreak kokagune desberdinetan egon daitezke; ez dute zertan ondoz ondokoak izan. Gainera, LOOKUP funtzioaren bilaketa-bektoreak ordenatuta egon behar du, bestela bilaketak ez baitu emaitza erabilgarririk emango."
+msgstr "<ahelp hid=\"HID_FUNC_VERWEIS\">Gelaxka baten edukia ematen du errenkada bateko nahiz zutabe bateko barruti batetik edo matrize batetik.</ahelp> Nahi izanez gero, esleitutako balioa (indize berekoa) beste errenkada eta zutabe baten emango da. <link href=\"text/scalc/01/04060109.xhp#Section9\" name=\"VLOOKUP\">VLOOKUP</link> eta <link href=\"text/scalc/01/04060109.xhp#Section17\" name=\"HLOOKUP\">HLOOKUP</link> funtzioetan ez bezala, bilaketa eta emaitza bektoreak kokagune desberdinetan egon daitezke; ez dute zertan elkarren ondokoak izan. Gainera, LOOKUP funtzioaren bilaketa-bektoreak ordenatuta egon behar du, bestela bilaketak ez baitu emaitza erabilgarririk emango."
#. 3jevg
#: 04060109.xhp
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Zenbakia testu gisa itzultzen du dezimalen eta aukerako milako bereizleen kopuru jakin batekin.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXED(Zenbakia; Dezimalak [; MilakoenBereizlerikEz])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Zenbakia</emph>: formatua eman beharreko zenbakia."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Dezimalak</emph>: bistaratuko den dezimal kopurua."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>MilakoenBereizlerikEz</emph> (aukerakoa): milakoen bereizlea erabiliko den edo ez zehazten du. Parametroa 0 ez den zenbaki bat bada, milakoen bereizlea kendu egingo da. Parametroa 0 bada edo zehazten ez bada, zure <link href=\"text/shared/optionen/01140000.xhp\" name=\"uneko ezarpen lokala\">uneko ezarpen lokala</link>ren milakoen bereizleak bistaratuko dira."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567,89;3)</item>: 1.234.567,890 ematen du testu gisa."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567,89;3;1)</item>: 1234567,890 ematen du testu-kate gisa."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
@@ -45527,7 +45563,7 @@ msgctxt ""
"par_idN109D1\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Sar ezazu horizontalean luzetara inprimatzeko gehienezko orrialde kopurua.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Sar ezazu horizontalean luzetara inprimatzeko gehieneko orrialde kopurua.</ahelp>"
#. JpChS
#: 05070500.xhp
@@ -45545,7 +45581,7 @@ msgctxt ""
"par_idN109EB\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Sar ezazu bertikalean pilatuta inprimatzeko gehienezko orrialde kopurua.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Sar ezazu bertikalean pilatuta inprimatzeko gehieneko orrialde kopurua.</ahelp>"
#. RmjkY
#: 05070500.xhp
@@ -45581,7 +45617,7 @@ msgctxt ""
"par_id3144507\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Sar ezazu inprimatzeko gehienezko orrialde kopurua.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Sar ezazu inprimatzeko gehieneko orrialde kopurua.</ahelp>"
#. fBFBx
#: 05080000.xhp
diff --git a/source/eu/helpcontent2/source/text/scalc/04.po b/source/eu/helpcontent2/source/text/scalc/04.po
index 00c3b60bef7..474b6ceedf8 100644
--- a/source/eu/helpcontent2/source/text/scalc/04.po
+++ b/source/eu/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textscalc04/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1556007671.000000\n"
#. NQkD7
@@ -563,7 +563,7 @@ msgctxt ""
"par_id3154847\n"
"help.text"
msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
-msgstr "Kurtsorea kokatutako datu-barrutia hautatzen du. Barruti bat datuak dituen ondoz ondoko gelaxken multzoa da, hutsik dauden errenkada eta zutabeek mugatzen dutenea."
+msgstr "Kurtsorea kokatutako datu-barrutia hautatzen du. Barruti bat datuak dituen elkarren ondoko gelaxken multzoa da, hutsik dauden errenkada eta zutabeek mugatzen dutenea."
#. 9Ae2w
#: 01020000.xhp
diff --git a/source/eu/helpcontent2/source/text/scalc/guide.po b/source/eu/helpcontent2/source/text/scalc/guide.po
index 114b716a2d1..759b7b4e1ad 100644
--- a/source/eu/helpcontent2/source/text/scalc/guide.po
+++ b/source/eu/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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562054410.000000\n"
#. NXy6S
@@ -1373,7 +1373,7 @@ msgctxt ""
"hd_id3150769\n"
"help.text"
msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
-msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Serieak automatikoki kalkulatzea\">Ondoz ondoko gelaxketan oinarritutako datuak automatikoki betetzea</link></variable>"
+msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Elkarren ondoko gelaxketan oinarritutako datuak automatikoki betetzea</link></variable>"
#. C6vL5
#: calc_series.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_idN106EE\n"
"help.text"
msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
-msgstr "Ondoz ondoko egunen zerrenda bat sortzeko berehala, idatzi <item type=\"literal\">Astelehena</item> gelaxka batean, eta arrastatu betetze-heldulekua."
+msgstr "Elkarren ondoko egunen zerrenda bat sortzeko berehala, idatzi <item type=\"literal\">Astelehena</item> gelaxka batean, eta arrastatu betetze-heldulekua."
#. a2oGa
#: calc_series.xhp
@@ -1877,7 +1877,7 @@ msgctxt ""
"par_id633869\n"
"help.text"
msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
-msgstr "Ikusi <link href=\"text/scalc/guide/calc_series.xhp\">Ondoz ondoko gelaxketan oinarritutako datuak automatikoki betetzea</link>."
+msgstr "Ikusi <link href=\"text/scalc/guide/calc_series.xhp\">Elkarren ondoko gelaxketan oinarritutako datuak automatikoki betetzea</link>."
#. 5GQRe
#: cell_protect.xhp
@@ -3488,7 +3488,7 @@ msgctxt ""
"par_id3150538\n"
"help.text"
msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed."
-msgstr "Helburu-barrutiko gelaxka-erreferentziak elkarren segidako errenkadetan txertatzen dira. Gelaxka horiek automatikoki ordenatu eta ezkutatzen dira, eta, hautatutako funtzioa oinarri hartuta, azken emaitza bakarrik erakusten da."
+msgstr "Helburu-barrutiko gelaxka-erreferentziak elkarren ondoko errenkadetan txertatzen dira. Gelaxka horiek automatikoki ordenatu eta ezkutatzen dira, eta, hautatutako funtzioa oinarri hartuta, azken emaitza bakarrik erakusten da."
#. UubEm
#: consolidate.xhp
@@ -11390,7 +11390,7 @@ msgctxt ""
"par_id3159154\n"
"help.text"
msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
-msgstr "Ordenatze-zerrendak erabiliz, gelaxka batean informazio jakin bat idatz dezakezu eta gero arrastatu, ondoz ondoko elementuen zerrenda batekin betetzeko."
+msgstr "Ordenatze-zerrendak erabiliz, gelaxka batean informazio jakin bat idatz dezakezu eta gero arrastatu, elkarren ondoko elementuen zerrenda batekin betetzeko."
#. BEsCh
#: sorted_list.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index c12533bb9d1..86dea847964 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-20 17:36+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562054310.000000\n"
#. 3B8ZN
@@ -536,7 +536,7 @@ msgctxt ""
"hd_id811616711038538\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Utzi"
#. TcFYz
#: 00000001.xhp
@@ -545,7 +545,7 @@ msgctxt ""
"par_id651616711045219\n"
"help.text"
msgid "Closes dialog and discards changes on all tabs. If <emph>Apply</emph> was used, then changes after the last use of Apply are discarded."
-msgstr ""
+msgstr "Elkarrizketa-koadroa ixten du eta fitxa guztietako aldaketak baztertzen ditu. <emph>Aplikatu</emph> erabili bada, komando hori erabili ondoko aldaketak baztertuko dira."
#. wFkFQ
#: 00000001.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"hd_id601616709204188\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Berrezarri"
#. YmYPB
#: 00000001.xhp
@@ -563,7 +563,7 @@ msgctxt ""
"par_id691616710270371\n"
"help.text"
msgid "Resets modified values on the current tab back to the values when the dialog was opened. If <emph>Apply</emph> is used before closing the dialog, then values are reset to those after the last use of Apply."
-msgstr ""
+msgstr "Uneko fitxan aldatu diren balioak berrezartzen ditu elkarrizketa-koadroa ireki zenean zituzten balioetara. <emph>Aplikatu</emph> erabili bada, komando hori erabili ondoko aldaketak baztertuko dira."
#. emuSf
#: 00000001.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"hd_id541616711560721\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Aplikatu"
#. pjHJH
#: 00000001.xhp
@@ -581,7 +581,7 @@ msgctxt ""
"par_id691616711586248\n"
"help.text"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with <emph>Reset</emph>."
-msgstr ""
+msgstr "Fitxa guztietako aldaketak aplikatzen ditu elkarrizketa-koadroa itxi gabe. Ezin da atzera bota <emph>Berrezarri</emph> erabilita."
#. A8G37
#: 00000001.xhp
@@ -590,7 +590,7 @@ msgctxt ""
"hd_id851616061478033\n"
"help.text"
msgid "Reset to Parent"
-msgstr ""
+msgstr "Berrezarri gurasoan"
#. WGWyN
#: 00000001.xhp
@@ -599,7 +599,7 @@ msgctxt ""
"par_id581616061494132\n"
"help.text"
msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Uneko fitxako balioak antolatzaileko 'Heredatu hemendik' atalean zehaztutako estiloan dagozkien balioekin ezartzen dira. Kasu guztietan, 'Heredatu hemendik' atalean 'Bat ere ez' ezarrita badago ere, 'Dauka' atalean fitxa honetarako dauden balioak kendu egingo dira."
#. 3brfZ
#: 00000001.xhp
@@ -608,7 +608,7 @@ msgctxt ""
"par_id131583023830621\n"
"help.text"
msgid "This option appears only for Paragraph Style, Character Style, and Frame Style."
-msgstr ""
+msgstr "Aukera hori paragrafo-estiloetan, marko-estiloetan eta karaktere-estiloetan soilik agertzen da."
#. wUEEa
#: 00000001.xhp
@@ -869,7 +869,7 @@ msgctxt ""
"par_id291525000873676\n"
"help.text"
msgid "An EPUB publication is delivered as a single file and is an unencrypted zipped archive containing a website. It includes HTML files, images, CSS style sheets, and other assets such as metadata, multimedia and interactivity."
-msgstr "EPUB argitalpen bat fitxategi bakar modura banatzen da eta barruan webgune bat duen zifratu gabeko fitxategi konprimitua da. HTML fitxategiak, irudiak, CSS estilo-orriak, metadatuak, multimedia-elementuak eta elkarrekintzetarako elementuak ditu."
+msgstr "EPUB argitalpen bat fitxategi bakar modura banatzen da eta barruan webgune bat duen zifratu gabeko fitxategi konprimatua da. HTML fitxategiak, irudiak, CSS estilo-orriak, metadatuak, multimedia-elementuak eta elkarrekintzetarako elementuak ditu."
#. SZipe
#: 00000002.xhp
@@ -1553,7 +1553,7 @@ msgctxt ""
"par_idN1074C\n"
"help.text"
msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
-msgstr "Onartutako gehienezko edo gutxieneko balioa ezartzeko, egin klik uneko balioan eta ondoren sakatu <item type=\"keycode\">Page Up</item> edo <item type=\"keycode\">Page Down</item> tekla."
+msgstr "Onartutako gehieneko edo gutxieneko balioa ezartzeko, egin klik uneko balioan eta ondoren sakatu <item type=\"keycode\">Page Up</item> edo <item type=\"keycode\">Page Down</item> tekla."
#. EDSDr
#: 00000004.xhp
@@ -4451,7 +4451,7 @@ msgctxt ""
"par_id3149649\n"
"help.text"
msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
-msgstr "OpenDocument fitxategi-formatuko dokumentuak XML fitxategiak dituzten zip artxibo konprimitu gisa gordetzen dira. XML fitxategi horiek ikusteko, deskonprimitzeko programa batekin ireki dezakezu OpenDocument fitxategia. Fitxategi eta direktorio hauek egoten dira OpenDocument fitxategietan:"
+msgstr "OpenDocument fitxategi-formatuko dokumentuak XML fitxategiak dituzten zip artxibo konprimatu gisa gordetzen dira. XML fitxategi horiek ikusteko, deskonprimitzeko programa batekin ireki dezakezu OpenDocument fitxategia. Fitxategi eta direktorio hauek egoten dira OpenDocument fitxategietan:"
#. gxFHu
#: 00000021.xhp
@@ -4523,7 +4523,7 @@ msgctxt ""
"par_id3153368\n"
"help.text"
msgid "Additional files and folders can be contained in the packed file format."
-msgstr "Fitxategi-formatu konprimituan fitxategi eta karpeta gehiago egon daitezke."
+msgstr "Fitxategi-formatu konprimatuan fitxategi eta karpeta gehiago egon daitezke."
#. XTjqF
#: 00000021.xhp
@@ -4937,7 +4937,7 @@ msgctxt ""
"par_id993159201\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimitutako irudiak onartzen baditu inprimagailuak.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimatutako irudiak onartzen baditu inprimagailuak.</ahelp>"
#. EZteg
#: 00000200.xhp
@@ -5513,7 +5513,7 @@ msgctxt ""
"par_id3153827\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Ondoz ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Elkarren ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu.</ahelp>"
#. kzXfC
#: 00000208.xhp
@@ -10832,7 +10832,7 @@ msgctxt ""
"par_id3156011\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>) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Ikusi - Estiloak</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), aurkezpen-estilo baten laster-menua (atzeko planoan salbu), eta ondoren aukeratu <menuitem>Berria/Aldatu - Zenbakitzea</menuitem> fitxa."
#. tbLJG
#: 00040500.xhp
@@ -10841,7 +10841,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "Choose <menuitem>Format - Bullets and Numbering - Ordered</menuitem> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Buletak eta zenbakitzea - Ordenatua</menuitem> fitxa."
#. Rak4H
#: 00040500.xhp
@@ -10850,7 +10850,7 @@ msgctxt ""
"par_id3129011\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>) - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Ikusi - Estiloak</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), joan zerrenda-estilo baten laster-menura eta aukeratu <menuitem>Berria/Aldatu - Ordenatua</menuitem> fitxa."
#. 2XAFx
#: 00040500.xhp
@@ -10859,7 +10859,7 @@ msgctxt ""
"par_id3146019\n"
"help.text"
msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Ikusi - Kudeatu estiloak</menuitem>, ireki zerrenda-estilo bsaten laster-menua eta aukeratu <menuitem>Berria/Aldatu - Ordenatua</menuitem> fitxa."
#. 4AKhs
#: 00040500.xhp
@@ -10877,7 +10877,7 @@ msgctxt ""
"par_id3155848\n"
"help.text"
msgid "Choose <menuitem>Format - Bullets and Numbering - Outline</menuitem> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Buletak eta zenbakitzea - Eskema</menuitem> fitxa."
#. 8cr6F
#: 00040500.xhp
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3148733\n"
"help.text"
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 ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Aukeratu <menuitem>Estiloak - Kudeatu estiloak</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), ireki zerrenda-estilo baten sarreraren laster-menua eta aukeratu <emph>Berria/Aldatua</emph>.</caseinline></switchinline>"
#. gfMdA
#: 00040500.xhp
@@ -10904,7 +10904,7 @@ msgctxt ""
"par_id3153812\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Ikusi - Estiloak</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), aukeratu zerrenda-estiloak, joan sarrera baten laster-menura eta aukeratu <menuitem>Berria/Aldatu</menuitem> - <emph>Kokagunea</emph> fitxa."
#. t8uTF
#: 00040500.xhp
@@ -12623,7 +12623,7 @@ msgctxt ""
"par_id3145365\n"
"help.text"
msgid "Choose <menuitem>Format - Object and Shape - Area - Transparency</menuitem> tab (presentation documents)."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Objektua eta forma - Area - Gardentasuna</menuitem> fitxa (aurkezpen-dokumentuak)."
#. KXq32
#: 00040502.xhp
@@ -13181,7 +13181,7 @@ msgctxt ""
"par_id3155377\n"
"help.text"
msgid "Choose <menuitem>Format - Spacing</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Tartea</menuitem>."
#. AJWAM
#: 00040502.xhp
@@ -13190,7 +13190,7 @@ msgctxt ""
"par_id3154475\n"
"help.text"
msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Tartea - Lerroartea: 1</menuitem>."
#. TKPgq
#: 00040502.xhp
@@ -13199,7 +13199,7 @@ msgctxt ""
"par_id3150478\n"
"help.text"
msgid "Choose <menuitem>Format - Spacing - Line Spacing: 1.5</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Tartea - Lerroartea: 1,5</menuitem>."
#. nxrCX
#: 00040502.xhp
@@ -13208,7 +13208,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "Choose <menuitem>Format - Spacing - Line Spacing: 2</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Tartea - Lerroartea: 2</menuitem>."
#. eLguF
#: 00040502.xhp
@@ -13217,7 +13217,7 @@ msgctxt ""
"par_id3146978\n"
"help.text"
msgid "Choose <menuitem>Format - Align Text - Left</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Lerrokatu testua - Ezkerrean</menuitem>."
#. reirq
#: 00040502.xhp
@@ -13253,7 +13253,7 @@ msgctxt ""
"par_id3155823\n"
"help.text"
msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Lerrokatu testua - Eskuinean</menuitem>."
#. 2MorN
#: 00040502.xhp
@@ -13289,7 +13289,7 @@ msgctxt ""
"par_id3149189\n"
"help.text"
msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Lerrokatu testua - Erdian</menuitem>."
#. YutM3
#: 00040502.xhp
@@ -13325,7 +13325,7 @@ msgctxt ""
"par_id3146151\n"
"help.text"
msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Lerrokatu testua - Justifikatua</menuitem>."
#. Mj8VD
#: 00040502.xhp
@@ -13388,7 +13388,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "Choose <menuitem>Shape - Group - Group</menuitem>"
-msgstr ""
+msgstr "Aukeratu <menuitem>Forma - Elkartu - Elkartu</menuitem>."
#. dXNCq
#: 00040502.xhp
@@ -13397,7 +13397,7 @@ msgctxt ""
"par_id3157985\n"
"help.text"
msgid "Choose <menuitem>Format - Group - Group</menuitem>"
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Elkartu - Elkartu</menuitem>."
#. w3EVK
#: 00040502.xhp
@@ -13406,7 +13406,7 @@ msgctxt ""
"par_id3149508\n"
"help.text"
msgid "Open context menu - choose <menuitem>Group</menuitem> (for text box and shapes)."
-msgstr ""
+msgstr "Ireki laster-menua eta aukeratu <menuitem>Elkartu</menuitem> (testu-koadroetan eta formetan)."
#. ibZAV
#: 00040502.xhp
@@ -13433,7 +13433,7 @@ msgctxt ""
"par_id3163378\n"
"help.text"
msgid "Choose <menuitem>Shape - Group - Ungroup</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Forma - Elkartu - Banandu</menuitem>."
#. K7UZY
#: 00040502.xhp
@@ -13442,7 +13442,7 @@ msgctxt ""
"par_id3153023\n"
"help.text"
msgid "Choose <menuitem>Format - Group - Ungroup</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Elkartu - Banandu</menuitem>."
#. 9k3ef
#: 00040502.xhp
@@ -13478,7 +13478,7 @@ msgctxt ""
"par_id3145678\n"
"help.text"
msgid "Choose <menuitem>Shape - Group - Exit Group</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Forma - Elkartu - Atera taldetik</menuitem>."
#. fZQDA
#: 00040502.xhp
@@ -13487,7 +13487,7 @@ msgctxt ""
"par_id3153109\n"
"help.text"
msgid "Choose <menuitem>Format - Group - Exit Group</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Elkartu - Atera taldetik</menuitem>."
#. Bszjv
#: 00040502.xhp
@@ -13523,7 +13523,7 @@ msgctxt ""
"par_id3145354\n"
"help.text"
msgid "Choose <menuitem>Shape - Group - Enter Group</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Forma - Elkartu - Sartu taldean</menuitem>."
#. vuF7P
#: 00040502.xhp
@@ -13532,7 +13532,7 @@ msgctxt ""
"par_id3149129\n"
"help.text"
msgid "Choose <menuitem>Format - Group - Enter Group</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Elkartu - Sartu taldean</menuitem>."
#. 4rTmw
#: 00040502.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index 2f3bc934c1f..fc82ccbbb89 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/eu/>\n"
"Language: eu\n"
@@ -3074,7 +3074,7 @@ msgctxt ""
"hd_id751513634008094\n"
"help.text"
msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Export As</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As\">Esportatu honela</link>"
#. yQFCE
#: 01070002.xhp
@@ -3092,7 +3092,7 @@ msgctxt ""
"par_id971513634212601\n"
"help.text"
msgid "Choose <emph>File - Export As</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Fitxategia - Esportatu honela</emph>."
#. 5EMoa
#: 01070002.xhp
@@ -3785,7 +3785,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "Number of contiguous ranges in a column with same formula."
-msgstr "Zutabe batean, formula bera duten ondoz ondoko barrutien kopurua."
+msgstr "Zutabe batean, formula bera duten elkarren ondoko barrutien kopurua."
#. LU85G
#: 01100400.xhp
@@ -15062,7 +15062,7 @@ msgctxt ""
"par_id341616754767611\n"
"help.text"
msgid "The following buttons appear only for Paragraph Style and Character Style."
-msgstr ""
+msgstr "Hurrengo botoiak paragrafo-estiloetan eta karaktere-estiloetan soilik agertzen da."
#. ZqG5G
#: 05020100.xhp
@@ -20210,7 +20210,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Enter the percentage of the font width by which to horizontally stretch or compress the selected text.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Sartu hautatutako testuaren letra-tipoa zein ehunekotan tiratu edo konprimituko den, horizontalean.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Sartu hautatutako testuaren letra-tipoa zein ehunekotan tiratu edo konprimatuko den, horizontalean.</ahelp>"
#. CH5Cb
#: 05020500.xhp
@@ -20246,7 +20246,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the spacing between the characters of the selected text.</ahelp> Enter the amount by which you want to expand or condense the text in the spin button."
-msgstr "<ahelp hid=\".\">Hautatutako testuaren karaktereen arteko tartea zehazten du.</ahelp> Sartu kopurua biratze-botoian, testua zenbat zabaldu edo konprimitu nahi duzun adierazteko."
+msgstr "<ahelp hid=\".\">Hautatutako testuaren karaktereen arteko tartea zehazten du.</ahelp> Sartu kopurua biratze-botoian, testua zenbat zabaldu edo konprimatu nahi duzun adierazteko."
#. wSGzU
#: 05020500.xhp
@@ -21677,7 +21677,7 @@ msgctxt ""
"par_idN109BA\n"
"help.text"
msgid "Merge adjacent line styles"
-msgstr "Fusionatu ondoz ondoko marra-estiloak"
+msgstr "Fusionatu elkarren ondoko marra-estiloak"
#. xBTmG
#: 05030500.xhp
@@ -22694,7 +22694,7 @@ msgctxt ""
"par_id3147305\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargGut\">Enter the amount of space to leave between the left edge of the page and the left margin. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner page margin and the inner edge of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/spinMargGut\">Sartu zenbat leku utzi behar den orrialdearen ezker ertzaren eta ezkerreko marjinaren artean. <emph>Ispilatua</emph> orrialde-diseinua erabiltzen ari bazara, sartu zenbat leku utzi behar den orrialdearen barneko testu-marjinaren eta orrialdearen barneko ertzaren artean.</ahelp>"
#. EPeDb
#: 05040200.xhp
@@ -22928,7 +22928,7 @@ msgctxt ""
"par_id0522200809473733\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboGutterPosition\">Allows choosing if the current document's gutter shall be positioned at the left of the document's pages (default) or at top of the document's pages when the document is displayed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboGutterPosition\">Uneko dokumentua bistaratzen denean, dokumentuaren erretena dokumentuaren orrialdeen ezkerrean (lehenetsia) ala dokumentuen orrialdeen goian kokatuko den aukeratzea ahalbidetzen du.</ahelp>"
#. niqBy
#: 05040200.xhp
@@ -25297,14 +25297,14 @@ msgctxt ""
msgid "New Style from Selection"
msgstr "Estilo berria hautapenetik"
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
-msgstr "Sortu estilo berriak <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragrafo, karaktere, marko, orrialde, zerrenda eta tauletarako</caseinline><caseinline select=\"CALC\">gelaxka eta orrietarako</caseinline> <defaultinline>grafikoetarako</defaultinline></switchinline><switchinline select=\"appl\"><caseinline select=\"WRITER\"> sortu nahi den estiloaren ezaugarriak edukitzeko eskuz formatua eman zaien objektuetatik abiatuta.</caseinline><caseinline select=\"CALC\"> eskuz formatua eman zaien gelaxka edo orrietatik abiatuta.</caseinline> <defaultinline> sortu nahi den estiloaren ezaugarriak edukitzeko eskuz formatua eman zaien objektuetatik abiatuta.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgstr ""
#. 5nxxW
#: 05140100.xhp
@@ -25358,7 +25358,7 @@ msgctxt ""
"par_id411608260881855\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the Styles sidebar, select the desired style category at the top of Styles deck, then click the <emph>Styles action menu</emph> icon at the top right corner, and choose <menuitem>New Style from Selection</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Ikusi - Estiloak</menuitem> edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> 'Estiloak' alboko barra irekitzeko, hautatu nahi duzun estilo-kategoria 'Estiloak' panelaren goiko aldean eta egin klik <emph>Estiloen ekintza-menua</emph> ikonoan goiko eskuineko izkinan, eta aukeratu <menuitem>Estilo berria hautapenetik</menuitem>."
#. Z4co9
#: 05140100.xhp
@@ -25376,7 +25376,7 @@ msgctxt ""
"par_id751608262329946\n"
"help.text"
msgid "Choose <menuitem>Styles - Manage Styles</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the Styles sidebar, select the desired style category at the top of Styles deck, then click the <emph>New Style from Selection</emph> icon."
-msgstr ""
+msgstr "Aukeratu <menuitem>Estiloak - Kudeatu estiloak</menuitem> edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> 'Estiloak' alboko barra irekitzeko, hautatu nahi duzun estilo-kategoria 'Estiloak' panelaren goiko aldean eta egin klik <emph>Estilo berria hautapenetik</emph> ikonoan."
#. 9Cz2g
#: 05140100.xhp
@@ -25385,7 +25385,7 @@ msgctxt ""
"par_id791608262979620\n"
"help.text"
msgid "Choose <menuitem>View - Styles</menuitem> or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the Styles sidebar, then click the <emph>New Style from Selection</emph> icon at the top of the Styles deck."
-msgstr ""
+msgstr "Aukeratu <menuitem>Ikusi - Estiloak</menuitem> edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> 'Estiloak' alboko barra irekitzeko, eta ondoren, egin klik 'Estiloak' paneleko <emph>Estilo berria hautapeneik</emph> ikonoan."
#. xeDUe
#: 05140100.xhp
@@ -28967,7 +28967,7 @@ msgctxt ""
"bm_id3149988\n"
"help.text"
msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value><bookmark_value>shapes; control points</bookmark_value><bookmark_value>draw objects; control points</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>marrazki-objektuak inklinatzea</bookmark_value><bookmark_value>marrazki-objektuak; inklinatzea</bookmark_value><bookmark_value>areak; inklinatzea</bookmark_value><bookmark_value>formak; kontrol-puntuak</bookmark_value><bookmark_value>marrazki-objektuak; kontrol-puntuak</bookmark_value>"
#. DxadW
#: 05230400.xhp
@@ -36365,7 +36365,7 @@ msgctxt ""
"hd_id871612310182014\n"
"help.text"
msgid "Correct accidental use of cAPS LOCK key"
-msgstr ""
+msgstr "Zuzendu bLOK mAIUS teklaren nahi gabeko erabilera"
#. 2m6cj
#: 06040100.xhp
@@ -36716,7 +36716,7 @@ msgctxt ""
"par_id3150420\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Converts paragraphs that start with a hyphen (-), a plus sign (+), or an asterisk (*) directly followed by a space or a tab, to bulleted lists. This option only works on paragraphs that are formatted with the \"Default Paragraph Style\". To change the bullet style that is used, select this option, and then click <emph>Edit</emph>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Marratxoarekin (-), plus ikurrarekin (+) edo izartxoarekin (*) hasi eta jarraian zuriune edo tabulazio bat dituzten paragrafoak buletdun zerrenda bihurtzen ditu. Aukera honek 'Paragrafo-estilo lehenetsia' paragrafo-estiloen formatua duten paragrafoetan bakarrik funtzionatuko du. Erabilitako buletaren estiloa aldatzeko, hautatu aukera hau eta ondoren sakatu <emph>Editatu</emph>.</caseinline></switchinline>"
#. vbwez
#: 06040100.xhp
@@ -36869,7 +36869,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/acorreplacepage/origtext\">Enter the word, abbreviation or word part that you want to replace while you type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/acorreplacepage/origtext\">Sartu hemen testua idatzi ahala ordeztuko den hitza, laburpena edo hitz-zatia.</ahelp>"
#. dvXnc
#: 06040200.xhp
@@ -36905,7 +36905,7 @@ msgctxt ""
"par_id881613146528171\n"
"help.text"
msgid "Autocorrected Result"
-msgstr ""
+msgstr "Autozuzendutako emaitza"
#. YjRj8
#: 06040200.xhp
@@ -36914,7 +36914,7 @@ msgctxt ""
"par_id311613146528171\n"
"help.text"
msgid "<literal>i18ns</literal>"
-msgstr ""
+msgstr "<literal>i18ns</literal>"
#. 9TnFj
#: 06040200.xhp
@@ -36941,7 +36941,7 @@ msgctxt ""
"par_id771613147188280\n"
"help.text"
msgid "internationalization"
-msgstr ""
+msgstr "internazionalizazioa"
#. avJCH
#: 06040200.xhp
@@ -36950,7 +36950,7 @@ msgctxt ""
"par_id91613147197169\n"
"help.text"
msgid "<literal>i18nized</literal>"
-msgstr ""
+msgstr "<literal>i18nized</literal>"
#. 5LuBF
#: 06040200.xhp
@@ -36959,7 +36959,7 @@ msgctxt ""
"par_id301613146528171\n"
"help.text"
msgid "internationalized"
-msgstr ""
+msgstr "internazionalizatua"
#. XW3x3
#: 06040200.xhp
@@ -37116,12 +37116,13 @@ msgstr "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">Automatikoki zuzendu ez
#. uA6HA
#: 06040300.xhp
+#, fuzzy
msgctxt ""
"06040300.xhp\n"
"hd_id3151110\n"
"help.text"
msgid "Words with TWo INitial CApitals or sMALL iNITIAL"
-msgstr ""
+msgstr "Hasierako bi MAiuskula edo hASIERAKO mINUSKULA dituzten hitz berriak"
#. DNmoc
#: 06040300.xhp
@@ -37742,7 +37743,7 @@ msgctxt ""
"par_id3159414\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/wordcompletionpage/maxentries\">Enter the maximum number of words that you want to store in the Word Completion list.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/wordcompletionpage/maxentries\">Sartu hitz-osaketaren zerrendan gorde nahi duzun gehienezko hitz kopurua.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/wordcompletionpage/maxentries\">Sartu hitz-osaketaren zerrendan gorde nahi duzun gehieneko hitz kopurua.</ahelp>"
#. aXmEc
#: 06040600.xhp
@@ -37940,7 +37941,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Unordered (Lists)"
-msgstr ""
+msgstr "Ordenatu gabea (zerrendak)"
#. hzByB
#: 06050100.xhp
@@ -37958,7 +37959,7 @@ msgctxt ""
"hd_id3150502\n"
"help.text"
msgid "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Unordered</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Ordenatu gabea</link>"
#. eGidZ
#: 06050100.xhp
@@ -38579,7 +38580,7 @@ msgctxt ""
"par_id3145746\n"
"help.text"
msgid "The availability of the following fields depends on the numbering scheme that you select in the <emph>Number</emph> box."
-msgstr ""
+msgstr "Ondorengo eremuen erabilgarritasuna <emph>Zenbakia</emph> koadroan hautatzen den estiloaren araberakoa da."
#. iqVUE
#: 06050500.xhp
@@ -38669,7 +38670,7 @@ msgctxt ""
"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 ordered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Sartu karaktere edo testu bat zenbakiaren ondoren bistaratzeko zerrendan. \"1.)\" estiloa erabiltzen duen zerrenda ordenatu bat sortu nahi baduzu, idatzi \".)\" koadro honetan.</ahelp>"
#. FWEse
#: 06050500.xhp
@@ -38687,7 +38688,7 @@ msgctxt ""
"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 scheme.</ahelp></defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Hautatu kolore bat uneko zenbakitze-eskemarako.</ahelp></defaultinline></switchinline>"
#. JQB8P
#: 06050500.xhp
@@ -38831,7 +38832,7 @@ msgctxt ""
"hd_id3155852\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Consecutive numbering</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Ondoz ondoko zenbakitzea</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Elkarren ondoko zenbakitzea</caseinline></switchinline>"
#. 4ssXo
#: 06050500.xhp
@@ -38849,7 +38850,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Position (Lists)"
-msgstr ""
+msgstr "Kokagunea (zerrendak)"
#. pbtfH
#: 06050600.xhp
@@ -38858,7 +38859,7 @@ msgctxt ""
"hd_id3150467\n"
"help.text"
msgid "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link></variable>"
-msgstr ""
+msgstr "<variable id=\"positionh1\"><link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Kokagunea</link></variable>"
#. ZuAPU
#: 06050600.xhp
@@ -38867,7 +38868,7 @@ msgctxt ""
"par_id3158397\n"
"help.text"
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 ""
+msgstr "<variable id=\"positioninfo\">Ezarri zerrenda ordenatu zein ordenatu gabeetan zenbakitze-ikurrek (zenbakiek zein buletek) izango dituzten koskak, tarteak eta lerrokatzeak.</variable>"
#. itRYD
#: 06050600.xhp
@@ -38885,7 +38886,7 @@ msgctxt ""
"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”."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Hautatu aldatuko diren mailak.</ahelp> Aukerak maila guztiei aplikatzeko, hautatu “1-10”."
#. qAm3f
#: 06050600.xhp
@@ -40811,7 +40812,7 @@ msgctxt ""
"par_id341603930297058\n"
"help.text"
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 ""
+msgstr "Hautatutako funtzioak dagoeneko laster-tekla bat badu, <emph>Teklak</emph> zerrendan bistaratuko da. Posible da funtzio berak laster-tekla bat baino gehiago izan dezan."
#. a7WFE
#: 06140200.xhp
@@ -40820,7 +40821,7 @@ msgctxt ""
"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 ""
+msgstr "Aplikazioetako batean laster-tekla bat esleitzen bada, horrek gainidatzi egiten du %PRODUCTNAME suiteak aplikazio guztietarako ezarritako laster-tekla."
#. Fi6Jn
#: 06140200.xhp
@@ -40847,7 +40848,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Lists the shortcut keys and the associated commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/shortcuts\">Laster-teklak eta haiei esleitutako komandoak zerrendatzen ditu.</ahelp>"
#. GWDEX
#: 06140200.xhp
@@ -40901,7 +40902,7 @@ msgctxt ""
"par_id3159148\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/accelconfigpage/function\">Lists functions that can be assigned to a shortcut key.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/accelconfigpage/function\">Laster-tekla bati esleitu dakizkiokeen funtzioak zerrendatzen ditu.</ahelp>"
#. Gfzcs
#: 06140200.xhp
@@ -41054,7 +41055,7 @@ msgctxt ""
"par_id261603929349350\n"
"help.text"
msgid "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">Shortcut Keys in %PRODUCTNAME</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/main0400.xhp\" name=\"frequentkeys\">%PRODUCTNAME suiteko laster-teklak</link>"
#. fybrb
#: 06140300.xhp
@@ -41063,7 +41064,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Context Menus (Customizing)"
-msgstr ""
+msgstr "Laster-menuak (pertsonalizazioa)"
#. PGanB
#: 06140300.xhp
@@ -41108,7 +41109,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <menuitem>Tools - Customize - Context Menus</menuitem> tab."
-msgstr ""
+msgstr "Aukeratu <menuitem>Tresnak - Personalizatu - Laster-menuak</menuitem> fitxa."
#. dTLGx
#: 06140300.xhp
@@ -41198,7 +41199,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "Select the Context Menu where the customization is to be applied."
-msgstr ""
+msgstr "Hautatu pertsonalizazioa aplikatuko zaion laster-menua."
#. DLGB3
#: 06140300.xhp
@@ -41252,7 +41253,7 @@ msgctxt ""
"hd_id381604852428742\n"
"help.text"
msgid "Customize"
-msgstr ""
+msgstr "Pertsonalizatu"
#. ASEww
#: 06140300.xhp
@@ -41812,14 +41813,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Esleitu makroa"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\"><link href=\"text/shared/01/06130000.xhp\">Makro-hautatzailea</link> irekitzen du hautatutako gertaerari makro bat esleitzeko.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
@@ -43871,7 +43872,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and email of signer."
-msgstr ""
+msgstr "Sinadura-marrak marra horizontal bat, kokagune-marka bat eta sinatzailearen izena, izenburua eta posta-helbidea bistaratzen ditu."
#. auwte
#: addsignatureline.xhp
@@ -45158,7 +45159,7 @@ msgctxt ""
"par_idN1057B\n"
"help.text"
msgid "Display Snap Guides"
-msgstr ""
+msgstr "Bistaratu doitze-gidak"
#. jQwEy
#: guides.xhp
@@ -45176,7 +45177,7 @@ msgctxt ""
"par_idN105C6\n"
"help.text"
msgid "Snap Guides to Front"
-msgstr ""
+msgstr "Orrialde batean objektuak lerrokatzeko erabili nahi dituzun doitze-lerroak bistaratzen edo ezkutatzen ditu."
#. euVcC
#: guides.xhp
@@ -45185,7 +45186,7 @@ msgctxt ""
"par_idN105CA\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the snap guides in front of the objects on the <switchinline select=\"appl\"><caseinline select=\"DRAW\">page</caseinline><caseinline select=\"IMPRESS\">slide</caseinline><defaultinline>page</defaultinline></switchinline>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Doirtze-gidak bistaratzen ditu objektuen aurrean, <switchinline select=\"appl\"><caseinline select=\"DRAW\">orrialdean</caseinline><caseinline select=\"IMPRESS\">diapositiban</caseinline><defaultinline>orrialdean</defaultinline></switchinline>.</ahelp>"
#. FELMB
#: image_compression.xhp
@@ -45194,7 +45195,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Compress Image"
-msgstr "Konprimitu irudia"
+msgstr "Konprimatu irudia"
#. xfK5C
#: image_compression.xhp
@@ -45239,7 +45240,7 @@ msgctxt ""
"par_id511534716948194\n"
"help.text"
msgid "Image compression can be lossless or lossy. Lossless compression allows the original image to be perfectly reconstructed from the compressed data. In contrast, lossy compression permits reconstruction only of an approximation of the original image, therefore with some loss of quality, though usually with improved compression rates (and therefore reduced file sizes)."
-msgstr ""
+msgstr "Irudien konpresioa galerarik gabekoa edo galeraduna izan daiteke. Galerarik gabeko konpresioarekin, jatorrizko irudia akatsik gabe berreraiki daiteke konprimatutako datuetatik abiatuta. Galeradun konpresioan, berriz, jatorrizko irudiaren hurbilketa bat berreraikitzea ahalbidetzen du, eta kalitatea galtzen da; horren truke, konpresio-tasak handiagoak dira (eta fitxategi-tamainak, txikiagoak)."
#. YAF9S
#: image_compression.xhp
@@ -45248,7 +45249,7 @@ msgctxt ""
"par_id701534530496585\n"
"help.text"
msgid "Select the image, choose <item type=\"menuitem\">Format - Image - Compress</item>."
-msgstr ""
+msgstr "Hautatu irudia eta aukeratu <item type=\"menuitem\">Formatua - Irudia - Konprimatu</item>."
#. kUBEn
#: image_compression.xhp
@@ -45257,7 +45258,7 @@ msgctxt ""
"par_id611534528851319\n"
"help.text"
msgid "Select the image, open the context menu and choose <item type=\"menuitem\">Compress</item>."
-msgstr ""
+msgstr "Hautatu irudia, ireki laster-menua eta aukeratu <item type=\"menuitem\">Konprimatu</item>"
#. 4WmeG
#: image_compression.xhp
@@ -45338,7 +45339,7 @@ msgctxt ""
"par_id761534716504198\n"
"help.text"
msgid "Check to change the dimensions of the compressed image."
-msgstr "Markatu konprimitutako irudiaren dimentsioak aldatzeko."
+msgstr "Markatu konprimatutako irudiaren dimentsioak aldatzeko."
#. 3eHCf
#: image_compression.xhp
@@ -45860,7 +45861,7 @@ msgctxt ""
"par_id0120200912190940\n"
"help.text"
msgid "If the icon is arranged on the background, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> while you click."
-msgstr ""
+msgstr "Ikonoa atzeko planoan antolatu bada, eutsi sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> teklari klik egitean."
#. YHe2b
#: moviesound.xhp
@@ -46004,7 +46005,7 @@ msgctxt ""
"hd_id190920161731349683\n"
"help.text"
msgid "<link href=\"text/shared/01/notebook_bar.xhp\">User Interface</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\">Erabiltzaile-interfazea</link>"
#. 5eu7G
#: notebook_bar.xhp
@@ -46022,7 +46023,7 @@ msgctxt ""
"par_id190920161732262244\n"
"help.text"
msgid "<ahelp hid=\".\">The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents for a quicker usage and better user experience.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Koaderno-barrak kontrolak eta ikonoak antolatzeko beste modu bat erakusten du, ez ikonoen errenkada zuzen modura, baizik eta komandoen eta edukien taldeak testuinguruaren arabera bistaratuta, erabilera errazagoa izan dadin eta erabiltzaile-esperientzia hobetu dadin.</ahelp>"
#. eBXFy
#: notebook_bar.xhp
@@ -46049,7 +46050,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The <emph>User Interface</emph> entry defines which user interface elements are visible."
-msgstr ""
+msgstr "<emph>Erabiltzaile-interfazea</emph> sarrerak definitzen du erabiltzaile-interfazeko zein elementu egongo diren ikusgai."
#. Y4ACs
#: notebook_bar.xhp
@@ -46058,7 +46059,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "Standard toolbar"
-msgstr ""
+msgstr "Tresna-barra estandarra"
#. XREwu
#: notebook_bar.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/02.po b/source/eu/helpcontent2/source/text/shared/02.po
index 5152aafd2b3..049a1cbe07a 100644
--- a/source/eu/helpcontent2/source/text/shared/02.po
+++ b/source/eu/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-23 11:44+0100\n"
-"PO-Revision-Date: 2021-01-30 17:47+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559627231.000000\n"
#. Edm6o
@@ -11264,7 +11264,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Character Highlighting Color"
-msgstr "Karaktere-nabarmentzearen kolorea"
+msgstr "Karaktereak nabarmentzeko kolorea"
#. 5GRDP
#: 02160000.xhp
@@ -11282,7 +11282,7 @@ msgctxt ""
"par_id3154927\n"
"help.text"
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 ""
+msgstr "<variable id=\"highlight_color\"><ahelp hid=\".uno:BackColor\">Uneko nabarmentze-kolorea aplikatzen dio <switchinline select=\"appl\"><caseinline select=\"WRITER\">karaktere-estiloari edo</caseinline></switchinline> testu-hautapenari.</ahelp></variable>"
#. KrAa6
#: 02160000.xhp
@@ -11318,7 +11318,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 "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149177\">Karaktere-nabarmentzearen kolorea ikonoa</alt></image>"
+msgstr "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149177\">Karaktereak nabarmentzeko kolorea ikonoa</alt></image>"
#. zJCAE
#: 02160000.xhp
@@ -11327,7 +11327,7 @@ msgctxt ""
"par_id3147210\n"
"help.text"
msgid "Character Highlighting Color icon"
-msgstr "Karaktere-nabarmentzearen kolorearen ikonoa"
+msgstr "Karaktereak nabarmentzeko kolorearen ikonoa"
#. 4M9HV
#: 02160000.xhp
@@ -11336,7 +11336,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 "Nabarmentzearen kolorea aldatzeko, egin klik <emph>Karaktere-nabarmentzearen kolorea</emph> ikonoan eta egin klik erabili nahi den kolorean."
+msgstr "Nabarmentzearen kolorea aldatzeko, egin klik <emph>Karaktereak nabarmentzeko kolorea</emph> ikonoan eta egin klik erabili nahi den kolorean."
#. ZBF5S
#: 02160000.xhp
@@ -11408,7 +11408,7 @@ msgctxt ""
"par_idN1072B\n"
"help.text"
msgid "On the <emph>Formatting</emph> bar, click the <emph>Character Highlighting Color</emph> icon."
-msgstr "<emph>Formatua</emph> barran, egin klik <emph>Karaktere-nabarmentzearen kolorea</emph> ikonoan."
+msgstr "<emph>Formatua</emph> barran, egin klik <emph>Karaktereak nabarmentzeko kolorea</emph> ikonoan."
#. qfcjf
#: 02160000.xhp
@@ -11453,7 +11453,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 "Nabarmentze-kurtsorea desaktibatzeko, egin klik <emph>Karaktere-nabarmentzearen kolorea</emph> ikonoan berriro, edo sakatu <keycode>Esc</keycode>."
+msgstr "Nabarmentze-kurtsorea desaktibatzeko, egin klik <emph>Karaktereak nabarmentzeko kolorea</emph> ikonoan berriro, edo sakatu <keycode>Esc</keycode>."
#. CnFYE
#: 02160000.xhp
@@ -11498,7 +11498,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 "Hautapen anitz badaude, egin klik <emph>Karaktere-nabarmentzearen kolorea</emph> ikonoan <emph>Betegarririk ez</emph> aukerarekin, hautatu kenduko den nabarmentzea eta amaitu ikonoan berriro klik eginda edo <keycode>Esc</keycode> sakatuta."
+msgstr "Hautapen anitz badaude, egin klik <emph>Karaktereak nabarmentzeko kolorea</emph> ikonoan <emph>Betegarririk ez</emph> aukerarekin, hautatu kenduko den nabarmentzea eta amaitu ikonoan berriro klik eginda edo <keycode>Esc</keycode> sakatuta."
#. fRhjf
#: 02170000.xhp
@@ -12362,7 +12362,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Toggle Unordered List"
-msgstr ""
+msgstr "Txandakatu ordenatu gabeko zerrenda"
#. CCrby
#: 06120000.xhp
@@ -12371,7 +12371,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Toggle Unordered List</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/06120000.xhp\" name=\"Bullets On/Off\">Txandakatu ordenatu gabeko zerrenda</link>"
#. GQ9yd
#: 06120000.xhp
@@ -12425,7 +12425,7 @@ msgctxt ""
"par_id3150355\n"
"help.text"
msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Ikonoa</alt></image>"
#. TEain
#: 06120000.xhp
@@ -12434,7 +12434,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "Toggle Unordered List"
-msgstr ""
+msgstr "Txandakatu ordenatu gabeko zerrenda"
#. 6UAmF
#: 07010000.xhp
@@ -12839,7 +12839,7 @@ msgctxt ""
"par_id511616406933483\n"
"help.text"
msgid "Choose <menuitem>Insert - Hyperlink</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Txertatu - Hiperesteka</menuitem>."
#. CFNbD
#: 09070000.xhp
@@ -12848,7 +12848,7 @@ msgctxt ""
"par_id771616410590648\n"
"help.text"
msgid "Choose <menuitem>Edit - Hyperlink</menuitem>, when the cursor is placed in a hyperlink."
-msgstr ""
+msgstr "Aukeratu <menuitem>Txertatu - Hiperesteka</menuitem> kurtsorea hiperesteka batean kokatzen denean."
#. E6FB3
#: 09070000.xhp
@@ -12857,7 +12857,7 @@ msgctxt ""
"par_id161616407054506\n"
"help.text"
msgid "On <link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Standard</emph></link> bar, click"
-msgstr ""
+msgstr "<link href=\"text/shared/main0201.xhp\" name=\"Standard Bar\"><emph>Estandarra</emph></link> barran, egin klik"
#. MSjJA
#: 09070000.xhp
@@ -12866,7 +12866,7 @@ msgctxt ""
"par_id3154927\n"
"help.text"
msgid "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3093440\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3093440\" src=\"cmd/sc_hyperlinkdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3093440\">Ikonoa</alt></image>"
#. Dty7B
#: 09070000.xhp
@@ -13406,7 +13406,7 @@ msgctxt ""
"bm_id551615667308718\n"
"help.text"
msgid "<bookmark_value>hyperlinks;to files</bookmark_value> <bookmark_value>hyperlinks;to folders</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>hiperestekak;fitxategietara</bookmark_value> <bookmark_value>hiperestekak;karpetetara</bookmark_value>"
#. RCfpV
#: 09070300.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/06.po b/source/eu/helpcontent2/source/text/shared/06.po
index a47279306b4..07e5532b186 100644
--- a/source/eu/helpcontent2/source/text/shared/06.po
+++ b/source/eu/helpcontent2/source/text/shared/06.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-12-03 12:49+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
-"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_help-master/textshared06/eu/>\n"
+"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textshared06/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1536301319.000000\n"
#. EUcrc
@@ -464,7 +464,7 @@ msgctxt ""
"par_id431534783734366\n"
"help.text"
msgid "<image src=\"media/screenshots/svx/ui/compressgraphicdialog/CompressGraphicDialog.png\" id=\"img_id131534783734367\"><alt id=\"alt_id271534783734367\">Compress Image Dialog</alt></image>"
-msgstr "<image src=\"media/screenshots/svx/ui/compressgraphicdialog/CompressGraphicDialog.png\" id=\"img_id131534783734367\"><alt id=\"alt_id271534783734367\">'Konprimitu irudia' elkarrizketa-koadroa</alt></image>"
+msgstr "<image src=\"media/screenshots/svx/ui/compressgraphicdialog/CompressGraphicDialog.png\" id=\"img_id131534783734367\"><alt id=\"alt_id271534783734367\">'Konprimatu irudia' elkarrizketa-koadroa</alt></image>"
#. AW8Pn
#: youtubevideos.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/autopi.po b/source/eu/helpcontent2/source/text/shared/autopi.po
index c5cdb2b0455..a53531ce1eb 100644
--- a/source/eu/helpcontent2/source/text/shared/autopi.po
+++ b/source/eu/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2021-01-09 18:36+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautopi/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563085973.000000\n"
#. hCAzG
@@ -212,7 +212,7 @@ msgctxt ""
"par_id3149669\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZARD_CREATE\">According to your selections, the wizard creates a new document template and saves it on your hard disk.</ahelp> $[officename] creates a new document based on the existing templates with the \"Untitled X\" name (X stands for the consecutive numbering) and displays it on the work area."
-msgstr "<ahelp hid=\"HID_LTRWIZARD_CREATE\">Zure hautapenen arabera, morroiak txantiloi berri bat sortzen du eta disko gogorrean gordetzen du.</ahelp> $[officename](e)k dokumentu berri bat sortzen du lehendik dauden txantiloietan oinarrituta \"Untitled X\" izenarekin (X ondoz ondoko zenbakitzea adierazten du) eta laneko arean bistaratzen du."
+msgstr "<ahelp hid=\"HID_LTRWIZARD_CREATE\">Zure hautapenen arabera, morroiak txantiloi berri bat sortzen du eta disko gogorrean gordetzen du.</ahelp> $[officename](e)k dokumentu berri bat sortzen du lehendik dauden txantiloietan oinarrituta \"Untitled X\" izenarekin (X ikurrak elkarren ondoko zenbakitzea adierazten du) eta laneko arean bistaratzen du."
#. k2a98
#: 01010000.xhp
@@ -5504,7 +5504,7 @@ msgctxt ""
"par_id4653767\n"
"help.text"
msgid "<ahelp hid=\".\">The files are exported as PNG files. PNG files are compressed without loss of data, and can contain more than 256 colors.</ahelp>"
-msgstr "<ahelp hid=\".\">Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimituak dira, eta 256 kolore baino gehiago izan ditzakete.</ahelp>"
+msgstr "<ahelp hid=\".\">Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimatuak dira, eta 256 kolore baino gehiago izan ditzakete.</ahelp>"
#. P79eu
#: 01110300.xhp
@@ -5531,7 +5531,7 @@ msgctxt ""
"hd_id3154306\n"
"help.text"
msgid "JPG - Compressed file format"
-msgstr "JPG - Fitxategi-formatu konprimitua"
+msgstr "JPG - Fitxategi-formatu konprimatua"
#. RArrL
#: 01110300.xhp
@@ -5540,7 +5540,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/jpgRadiobutton\">The files are exported as JPEG files. JPEG files are compressed, with adjustable compression and can contain more than 256 colors.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/jpgRadiobutton\">Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimituak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/jpgRadiobutton\">Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimatuak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete.</ahelp>"
#. GBfMf
#: 01110300.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/explorer/database.po b/source/eu/helpcontent2/source/text/shared/explorer/database.po
index c0a9f80665a..142f993bfee 100644
--- a/source/eu/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/eu/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-29 10:37+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563085513.000000\n"
#. rxCsN
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "Maximum number of records"
-msgstr "Erregistroen gehienezko kopurua"
+msgstr "Erregistroen gehieneko kopurua"
#. AUVCH
#: dabapropadd.xhp
@@ -1895,7 +1895,7 @@ msgctxt ""
"par_idN106F3\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the maximum number of records that you want to load when you access the LDAP server.</ahelp>"
-msgstr "<ahelp hid=\".\">Idatzi LDAP zerbitzarian sartzean kargatzea nahi duzun erregistroen gehienezko kopurua.</ahelp>"
+msgstr "<ahelp hid=\".\">Idatzi LDAP zerbitzarian sartzean kargatzea nahi duzun erregistroen gehieneko kopurua.</ahelp>"
#. K5mtr
#: dabapropadd.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/guide.po b/source/eu/helpcontent2/source/text/shared/guide.po
index c2c916b5b21..719450b1099 100644
--- a/source/eu/helpcontent2/source/text/shared/guide.po
+++ b/source/eu/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1561194957.000000\n"
#. iharT
@@ -4874,7 +4874,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "CorelDRAW"
-msgstr ""
+msgstr "CorelDRAW"
#. rTQKQ
#: convertfilters.xhp
@@ -8168,7 +8168,7 @@ msgctxt ""
"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/sdatabase/05020000.xhp\" name=\"relations\">relations</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new table, edit table structure\">sortu taula berria, editatu taularen egitura</link>, <link href=\"text/sdatabase/05010100.xhp\" name=\"index\">index</link>, <link href=\"text/sdatabase/05020000.xhp\" name=\"relations\">erlazioak</link>"
#. AENyR
#: database_main.xhp
@@ -14621,7 +14621,7 @@ msgctxt ""
"par_id3149587\n"
"help.text"
msgid "If the <emph>Select</emph> icon is selected and you press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Enter</keycode>, the first object in the image window gets selected."
-msgstr ""
+msgstr "<emph>Hautatu</emph> ikonoa hautatuta badago eta <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+⏎</keycode> sakatzen bada, irudi-leihoko lehen objektua hautatuko da."
#. 3Wh8W
#: keyboard.xhp
@@ -14639,7 +14639,7 @@ msgctxt ""
"par_id3147073\n"
"help.text"
msgid "Use <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> in the image window to select the next point. Use <keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Tab</keycode> to select the previous point."
-msgstr ""
+msgstr "Erabili <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+↹</keycode> iirudi-leihoan hurrengo puntua hautatzeko. Erabili <keycode>⇧+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+↹</keycode> aurreko puntua hautatzeko."
#. 7BdLu
#: keyboard.xhp
@@ -14693,7 +14693,7 @@ msgctxt ""
"par_id3155537\n"
"help.text"
msgid "Press Enter to execute the selected hyperlink."
-msgstr "Sakatu 'Enter' hautatutako hiperesteka exekutatzeko."
+msgstr "Sakatu ⏎ hautatutako hiperesteka exekutatzeko."
#. 3G77H
#: keyboard.xhp
@@ -14702,7 +14702,7 @@ msgctxt ""
"par_id3154912\n"
"help.text"
msgid "Press Backspace above the Enter key to return to the previous help page."
-msgstr "Sakatu 'Enter' teklaren gaineko 'Backspace' tekla, aurreko laguntza-orrialdera itzultzeko."
+msgstr "Sakatu ⏎ teklaren gaineko ⌫ tekla, aurreko laguntza-orrialdera itzultzeko."
#. DGCD3
#: keyboard.xhp
@@ -14738,7 +14738,7 @@ msgctxt ""
"par_id3151000\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Right Arrow</keycode>: jump to the previous or to the next split"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+←</keycode> edo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+→</keycode>: joan aurreko edo hurrengo zatiketara"
#. a7Hg8
#: keyboard.xhp
@@ -14747,7 +14747,7 @@ msgctxt ""
"par_id3159203\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Right Arrow</keycode>: move a split one position to the left or to the right"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+⇧+←</keycode> edo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+⇧+→</keycode>: mugitu zatiketa batposizio bat ezkerrera edo eskuinera"
#. xVvaL
#: keyboard.xhp
@@ -14864,7 +14864,7 @@ msgctxt ""
"par_id3150780\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Right Arrow</keycode>: move focus to the left or to the right column (does not change selection)"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+←</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+→</keycode>: mugitu fokua ezkerreko edo eskuineko zutabera (ez du hautapena aldatzen)"
#. FySem
#: keyboard.xhp
@@ -14882,7 +14882,7 @@ msgctxt ""
"par_id3146962\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Left Arrow</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+Right Arrow</keycode>: expand or shrink the selected range (does not change other selections)"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+⇧+←</keycode> edo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+⇧+→</keycode>: hedatu edo uzkurtu hautatutako barrutia (ez ditu beste hautapenak aldatzen)"
#. DbNiK
#: keyboard.xhp
@@ -14891,7 +14891,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "<keycode>Home</keycode> or <keycode>End</keycode>: select the first or the last column (use <keycode>Shift</keycode> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> as with cursor keys)"
-msgstr ""
+msgstr "<keycode>Home</keycode> edo <keycode>End</keycode>: hautatu lehen edo azken zutabea (erabili <keycode>⇧</keycode> edo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> kurtsore-teklak bezala)"
#. 8F5dq
#: keyboard.xhp
@@ -15755,7 +15755,7 @@ msgctxt ""
"par_id3791924\n"
"help.text"
msgid "Install the language pack. Unpack tar.gz file and install the packages according to standard practice on your platform."
-msgstr "Instalatu hizkuntza-paketea. Deskonprimitu tar.gz fitxategia eta instalatu paketeak zure plataforman erabiltzen duzun prozedura estandarra jarraituz."
+msgstr "Instalatu hizkuntza-paketea. Deskonprimatu tar.gz fitxategia eta instalatu paketeak zure plataforman erabiltzen duzun prozedura estandarra jarraituz."
#. 8fo6o
#: language_select.xhp
@@ -19139,7 +19139,7 @@ msgctxt ""
"par_id3147335\n"
"help.text"
msgid "Under <emph>Margins</emph> you can define the maximum or minimum possible value for the page margins (left, right, top, and bottom). Click into the respective control, then press the Page Up or Page Down key. The preview displays a dashed line around the printable range."
-msgstr "<emph>Marjinak</emph> eremuan, orrialde-marjinentzako (ezkerra, eskuina, goia eta behea) gehienezko eta gutxieneko balioak zehaztu ditzakezu. Horretarako, egin klik dagokion biratze-koadroan eta sakatu Page Up (Orrialdea gora) edo Page Down (Orrialdea bera) tekla. Aurrebistak marra eten bat bistaratuko du area inprimagarrian."
+msgstr "<emph>Marjinak</emph> eremuan, orrialde-marjinentzako (ezkerra, eskuina, goia eta behea) gehieneko eta gutxieneko balioak zehaztu ditzakezu. Horretarako, egin klik dagokion biratze-koadroan eta sakatu Page Up (Orrialdea gora) edo Page Down (Orrialdea bera) tekla. Aurrebistak marra eten bat bistaratuko du area inprimagarrian."
#. PsXtZ
#: pageformat_max.xhp
@@ -24323,7 +24323,7 @@ msgctxt ""
"par_id171607689516049\n"
"help.text"
msgid "<image src=\"sfx2/res/actionview010.png\" id=\"img_id201607689516049\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id71607689516049\">Import Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"sfx2/res/actionview010.png\" id=\"img_id201607689516049\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id71607689516049\">Inportatu ikonoa</alt></image>"
#. VBNy8
#: template_manager.xhp
@@ -24332,7 +24332,7 @@ msgctxt ""
"par_id651607689516049\n"
"help.text"
msgid "Import button"
-msgstr ""
+msgstr "'Inportatu' botoia"
#. cP5Sj
#: template_manager.xhp
@@ -24341,7 +24341,7 @@ msgctxt ""
"hd_id041620170723501627\n"
"help.text"
msgid "Extensions"
-msgstr ""
+msgstr "Hedapenak"
#. CU9Ag
#: template_manager.xhp
@@ -24350,7 +24350,7 @@ msgctxt ""
"par_id041620170723503494\n"
"help.text"
msgid "<ahelp hid=\".\">To browse for more templates online, click on the Extensions icon at the bottom right to open a search window. You can also search for templates at <link href=\"https://extensions.libreoffice.org/?Tags%5B%5D=118\">https://extensions.libreoffice.org</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Txantiloi gehiago arakatu nahi badituzu, egin klik behean eskuinean dagoen 'Hedapenak' botoian bilaketa-leiho bat irekitzeko. <link href=\"https://extensions.libreoffice.org/?Tags%5B%5D=118\">https://extensions.libreoffice.org</link> gunera ere joan zaitezke txantiloiak bilatzeko.</ahelp>"
#. PrQ6K
#: template_manager.xhp
@@ -24359,7 +24359,7 @@ msgctxt ""
"par_id431607690468509\n"
"help.text"
msgid "<image src=\"cmd/lc_additionsdialog.png\" id=\"img_id461607690468509\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891607690468509\">Extensions Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_additionsdialog.png\" id=\"img_id461607690468509\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891607690468509\">Hedapenak ikonoa</alt></image>"
#. pmxCc
#: template_manager.xhp
@@ -24368,7 +24368,7 @@ msgctxt ""
"par_id41607690468510\n"
"help.text"
msgid "Extensions icon"
-msgstr ""
+msgstr "'Hedapenak' ikonoa"
#. ddVcH
#: template_manager.xhp
@@ -24377,7 +24377,7 @@ msgctxt ""
"hd_id501607689762479\n"
"help.text"
msgid "Actions with Individual Templates"
-msgstr ""
+msgstr "Ekintzak banakako txantiloiekin"
#. anVjc
#: template_manager.xhp
@@ -24404,7 +24404,7 @@ msgctxt ""
"par_id721608222737939\n"
"help.text"
msgid "You can also use the <widget>Open</widget> button on the bottom left to open a new document using the selected template."
-msgstr ""
+msgstr "Behean ezkerrean dagoen <widget>Ireki</widget> botoia ere erabili daiteke hautatutako txantiloia erabilita dokumentu berria irekitzeko."
#. V9DEC
#: template_manager.xhp
@@ -24485,7 +24485,7 @@ msgctxt ""
"par_id141607690272821\n"
"help.text"
msgid "Built-in templates cannot be edited, renamed or deleted."
-msgstr ""
+msgstr "Integratutako txantiloiak ezin dira editatu, izenez aldatu edo ezabatu."
#. bF5Yb
#: template_manager.xhp
@@ -24539,7 +24539,7 @@ msgctxt ""
"par_id041620170723518765\n"
"help.text"
msgid "Choose one of the templates from the main window by double-clicking on it or select and press <keycode>Enter</keycode>."
-msgstr ""
+msgstr "Aukeratu leiho nagusiko txantiloietako bat bere gainean klik eginda edo hura hautatuta eta <keycode>⏎</keycode> sakatuta."
#. jDpef
#: template_manager.xhp
@@ -24593,7 +24593,7 @@ msgctxt ""
"par_id041620170723512689\n"
"help.text"
msgid "Click on the Extensions icon to browse for online templates."
-msgstr ""
+msgstr "Egin klik 'Hedapenak' ikonoak txantiloi gehiago bilatzeko linean."
#. v6rBQ
#: template_manager.xhp
@@ -24728,7 +24728,7 @@ msgctxt ""
"par_id041620170723523966\n"
"help.text"
msgid "See <link href=\"text/shared/guide/standard_template.xhp\">Creating a Document Template</link> for related information."
-msgstr ""
+msgstr "Ikusi <link href=\"text/shared/guide/standard_template.xhp\">Dokumentu-txantiloi bat sortzea</link> horri buruzko informazio gehiagorako."
#. BKHDD
#: template_manager.xhp
@@ -24864,6 +24864,8 @@ msgctxt ""
"help.text"
msgid "<variable id=\"textmode_change\"> <link href=\"text/shared/guide/textmode_change.xhp\" name=\"Switching Between Insert Mode and Overwrite Mode\">Switching Between Insert Mode and Overwrite Mode</link> </variable>"
msgstr ""
+"<variable id=\"textmode_change\"> \n"
+"<link href=\"text/shared/guide/textmode_change.xhp\" name=\"Switching Between Insert Mode and Overwrite Mode\">Txertatu eta gainidatzi moduen artean txandakatzea</link> </variable>"
#. qhFEZ
#: textmode_change.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 65f197cc00b..ec387182601 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-15 20:36+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1563085522.000000\n"
#. PzSYs
@@ -6152,7 +6152,7 @@ msgctxt ""
"par_id3144433\n"
"help.text"
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 ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optfonttabpage/listbox\"><emph>Zerrenda</emph> paragrafo-estiloaren letra-tipoa eta letra-tamaina zehazten ditu. Estilo horretatik eratorritako estilo guztiek heredatuko dituzte ezaugarri horiek.</ahelp>"
#. aQFY4
#: 01040300.xhp
@@ -6161,7 +6161,7 @@ msgctxt ""
"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\"><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 ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/06050000.xhp\" name=\"Format - Numbering/Bullets\"><menuitem>Formatua - Buletak eta zenbakitzea</menuitem></link></caseinline><defaultinline><menuitem>Formatua - Buletak eta zenbakitzea</menuitem></defaultinline></switchinline> aukeratzen bada testu-dokumentu bateko paragrafo bat zenbakiekin edo buletekin formateatzeko, programak paragrafo-estilo horiek automatikoki esleitzen ditu."
#. 3nSZ5
#: 01040300.xhp
@@ -13658,7 +13658,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 "Itzaleztadurak RGB kolore guztiak beste Office karaktere-atributuetara esportazen ditu. Horri esker, koloreen fideltasunari eusten zaio $[officename] eta Microsoft Office dokumentuen artean, baina Office erabiltzaileek karaktere-atributu hori editatzeko, Office aplikazioetan aurkitzeko erraza ez den tresna bat erabili behar dute. Hau da ezarpen lehenetsia $[officename] 7.0 bertsiotik aurrera."
#. mnCpY
#: 01130200.xhp
@@ -13667,7 +13667,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>Karaktereak nabarmentzeko kolorea</emph> elkarrizketa-koadroak Microsoft Office aplikazioko nabarmentze-koloreak eskaintzen ditu. Erabili kolore horiek eta aukeratu <emph>Esportatu honela: Nabarmentzea</emph> kolore-fideltasuna eta Office erabiltzaileek koloreak erraz editatu ditzaten nahi baduzu."
#. hpDE5
#: 01130200.xhp
@@ -14000,7 +14000,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 "Eredu guztietarako, bi digituko urteen sarrera interpretatzeko, <link href=\"text/shared/optionen/01010600.html#jahreszahlen\" name=\"twodigityears\">Tresnak - Aukerak - Orokorra - Urtea (bi digitu)</link> ezarpena erabiltzen da."
#. 9RYTi
#: 01140000.xhp
@@ -14351,7 +14351,7 @@ msgctxt ""
"hd_id3155419\n"
"help.text"
msgid "Compress only punctuation"
-msgstr "Konprimitu puntuazioa bakarrik"
+msgstr "Konprimatu puntuazioa bakarrik"
#. G3GEF
#: 01150100.xhp
@@ -14369,7 +14369,7 @@ msgctxt ""
"hd_id3151245\n"
"help.text"
msgid "Compress punctuation and Japanese Kana"
-msgstr "Konprimitu puntuazioa eta Kana japoniarra"
+msgstr "Konprimatu puntuazioa eta Kana japoniarra"
#. kUcVR
#: 01150100.xhp
@@ -15953,7 +15953,7 @@ msgctxt ""
"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 ""
+msgstr "Ziurtatu %PRODUCTNAME arkitekturarekin bateragarria den JRE bat instalatzen dela: 64 biteko JRE bertsioa 64 biteko %PRODUCTNAME aplikaziorako eta 32 biteko JRE bertsioa 32 biteko %PRODUCTNAME aplikaziorako."
#. BBqDy
#: java.xhp
@@ -17456,7 +17456,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "On the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, click the <emph>Server Authentication</emph> button to specify the server security settings."
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Posta-konbinazioaren helbidea</link> fitxa-orrian, egin klik <emph>Zerbitzariaren autentifikazioa</emph> botoian zerbitzari-segurtasunaren ezarpenak zehazteko."
#. QEP5M
#: serverauthentication.xhp
@@ -17681,7 +17681,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Hobespenak</caseinline><defaultinline>Tresnak - Aukerak</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - posta-konbinazioaren helbidea</link> fitxa-orrian ezarpenak sartzen direnean, <emph>Probatu ezarpenak</emph> botoia sakatu daiteke ezarpenak probatzeko."
#. 4AK5G
#: testaccount.xhp
diff --git a/source/eu/helpcontent2/source/text/simpress/guide.po b/source/eu/helpcontent2/source/text/simpress/guide.po
index 8b2ab58b979..3248db28497 100644
--- a/source/eu/helpcontent2/source/text/simpress/guide.po
+++ b/source/eu/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-29 10:37+0000\n"
+"PO-Revision-Date: 2021-04-06 06:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1555928226.000000\n"
#. S83CC
@@ -662,7 +662,7 @@ msgctxt ""
"par_id4524674\n"
"help.text"
msgid "If the Custom Animation Panel is visible, the motion paths of all effects of the current slide are drawn as a transparent overlay on the slide. All paths are visible all the time, therefore animations with consecutive paths can be created easily."
-msgstr "Animazio pertsonalizatuaren panela ikusgai badago, uneko diapositibako efektu guztien ibilbideak gainjarritako irudi garden gisa marraztuko dira diapositiban. Ibilbide guztiak ikusgai daude denbora guztian eta, beraz, elkarren segidako ibilbideak dauzkaten animazioak erraz sor daitezke."
+msgstr "Animazio pertsonalizatuaren panela ikusgai badago, uneko diapositibako efektu guztien ibilbideak gainjarritako irudi garden gisa marraztuko dira diapositiban. Ibilbide guztiak ikusgai daude denbora guztian eta, beraz, elkarren ondoko ibilbideak dauzkaten animazioak erraz sor daitezke."
#. teBif
#: animated_objects.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>Lehendik dauden diapositibak</emph> atalean, hautatu diapositiba-aurkezpenari gehitu zaizkion diapositibak eta egin klik <widget>>></widget> botoian. Eutsi sakatuta <keycode>⇧</keycode> elkarren ondoan dauden diapositiben barruti bat edo <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> banakako diapositiba anitz hautatzeko."
#. KyDj4
#: individual.xhp
@@ -2777,7 +2777,7 @@ msgctxt ""
"par_id3150650\n"
"help.text"
msgid "To start a slide show from the beginning, press <keycode>F5</keycode>."
-msgstr ""
+msgstr "Diapositiba-aurkezpen bat hasieratik hasteko, sakatu <keycode>F5</keycode>."
#. WaqYV
#: keyboard.xhp
@@ -3164,7 +3164,7 @@ msgctxt ""
"par_id3150210\n"
"help.text"
msgid "Bézier curve segments and straight line segments can be joined to form more complex Bézier curves. Three different transitions can be applied to join adjacent segments:"
-msgstr "Bézier kurben segmentuak eta marra zuzenen segmentuak elkartu daitezke Bézier kurba konplexuagoak osatzeko. Hiru trantsizio desberdin aplika daitezke elkarren segidako segmentuak elkartzeko."
+msgstr "Bézier kurben segmentuak eta marra zuzenen segmentuak elkartu daitezke Bézier kurba konplexuagoak osatzeko. Hiru trantsizio desberdin aplika daitezke elkarren ondoko segmentuak elkartzeko."
#. fiDsk
#: line_draw.xhp
diff --git a/source/eu/helpcontent2/source/text/smath/01.po b/source/eu/helpcontent2/source/text/smath/01.po
index 00f53d4c51c..bd3cea316ff 100644
--- a/source/eu/helpcontent2/source/text/smath/01.po
+++ b/source/eu/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-02-15 15:36+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1548161696.000000\n"
#. QmNGE
@@ -266,7 +266,7 @@ msgctxt ""
"bm_id3147340\n"
"help.text"
msgid "<bookmark_value>views; maximum size</bookmark_value><bookmark_value>maximum formula size</bookmark_value><bookmark_value>formulas; maximum size</bookmark_value>"
-msgstr "<bookmark_value>ikuspegiak; gehienezko tamaina</bookmark_value><bookmark_value>formulen gehienezko tamaina</bookmark_value><bookmark_value>formulak; gehienezko tamaina</bookmark_value>"
+msgstr "<bookmark_value>ikuspegiak; gehieneko tamaina</bookmark_value><bookmark_value>formulen gehieneko tamaina</bookmark_value><bookmark_value>formulak; gehieneko tamaina</bookmark_value>"
#. Nq3Ci
#: 03060000.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter.po b/source/eu/helpcontent2/source/text/swriter.po
index 3d429d4dcdb..39e00c859bf 100644
--- a/source/eu/helpcontent2/source/text/swriter.po
+++ b/source/eu/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-20 17:37+0000\n"
+"PO-Revision-Date: 2021-04-02 05:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1546972994.000000\n"
#. P7iNX
@@ -2588,7 +2588,7 @@ msgctxt ""
"par_id3154277\n"
"help.text"
msgid "<ahelp hid=\"HID_NUM_TOOLBOX\">The <emph>Bullets and Numbering</emph> bar contains functions to modify the structure of list paragraphs, including changing their order and list level.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NUM_TOOLBOX\"><emph>Buletak eta zenbakitzea</emph> barrak zerrenda-paragrafoen egitura aldatzeko funtzioak ditu, haien ordena eta zerrenda-maila aldatzeko funtzioak barne.</ahelp>"
#. do6CG
#: main0208.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 2b79fcfa492..5b5985b4971 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-02-04 20:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/eu/>\n"
"Language: eu\n"
@@ -491,7 +491,7 @@ msgctxt ""
"par_id3149286\n"
"help.text"
msgid "<variable id=\"autoabstracttext\"><ahelp hid=\".uno:CreateAbstract\">Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents.</ahelp> You can specify the number of outline levels as well as the number of paragraphs displayed therein. All levels and paragraphs under the respective settings are hidden.</variable>"
-msgstr "<variable id=\"autoabstracttext\"><ahelp hid=\".uno:CreateAbstract\">Dokumentu aktiboko izenburuak eta elkarren segidako paragrafo batzuk autolaburpeneko testu-dokumentu berri batean kopiatzen ditu. Autolaburpena erabilgarria da dokumentu luzeen ikuspegi orokorra lortzeko.</ahelp> Kapitulu-maila eta hor bistaratutako paragrafo kopuru batzuk zehaztu ditzakezu. Ezarpen horietako mailak eta paragrafoak ezkutatuta daude.</variable>"
+msgstr "<variable id=\"autoabstracttext\"><ahelp hid=\".uno:CreateAbstract\">Dokumentu aktiboko izenburuak eta elkarren ondoko paragrafo batzuk autolaburpeneko testu-dokumentu berri batean kopiatzen ditu. Autolaburpena erabilgarria da dokumentu luzeen ikuspegi orokorra lortzeko.</ahelp> Kapitulu-maila eta hor bistaratutako paragrafo kopuru batzuk zehaztu ditzakezu. Ezarpen horietako mailak eta paragrafoak ezkutatuta daude.</variable>"
#. Hi8kE
#: 01160300.xhp
@@ -527,7 +527,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/abstractdialog/paras\">Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading.</ahelp> All of the paragraphs up to the maximum defined are included until the next paragraph with a Heading Style is reached."
-msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/paras\">Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren segidako gehienezko paragrafo kopurua zehazten du.</ahelp> Definitutako gehienezko kopurua bitarteko paragrafo guztiak sartzen dira Izenburua estiloko paragrafora iritsi arte."
+msgstr "<ahelp hid=\"modules/swriter/ui/abstractdialog/paras\">Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren ondoko gehieneko paragrafo kopurua zehazten du.</ahelp> Definitutako gehieneko kopurua bitarteko paragrafo guztiak sartzen dira izenburu-estiloko paragrafora iritsi arte."
#. UafWg
#: 01160400.xhp
@@ -626,7 +626,7 @@ msgctxt ""
"par_id3149801\n"
"help.text"
msgid "Consecutive numbers are added to the file name if more than one HTML document is created. The titles of the HTML pages are created from the topmost chapter heading."
-msgstr "Fitxategi-izenari elkarren segidako zenbakiak gehitzen zaizkio HTML dokumentu bat baino gehiago sortzen badira. HTML orrien tituluak goi-goiko kapitulu-izenburutik sortzen dira."
+msgstr "Fitxategi-izenari elkarren ondoko zenbakiak gehitzen zaizkio HTML dokumentu bat baino gehiago sortzen badira. HTML orrien tituluak goi-goiko kapitulu-izenburutik sortzen dira."
#. nFA6X
#: 01160500.xhp
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_id3145420\n"
"help.text"
msgid "<ahelp hid=\".\">Type a name for the new section.</ahelp> By default, $[officename] automatically assigns the name \"Section X\" to new sections, where X is a consecutive number."
-msgstr "<ahelp hid=\".\">Idatzi sekzio berriaren izena.</ahelp> Lehenespenez, $[officename] aplikazioak \"X sekzioa\" izena esleitzen die sekzio berriei. X ondoz ondoko zenbakia da."
+msgstr "<ahelp hid=\".\">Idatzi sekzio berriaren izena.</ahelp> Lehenespenez, $[officename] aplikazioak \"X sekzioa\" izena esleitzen die sekzio berriei. X elkarren ondoko zenbakia da."
#. hCR5y
#: 04020100.xhp
@@ -9293,7 +9293,7 @@ msgctxt ""
"par_id3155861\n"
"help.text"
msgid "You can use the \"Next record\" field to insert the contents of consecutive records between the mail merge fields in a document."
-msgstr "\"Hurrengo erregistroa\" eremua erabil dezakezu elkarren segidako erregistroen edukia txertatzeko dokumentuko posta-konbinazioko eremuen artean."
+msgstr "\"Hurrengo erregistroa\" eremua erabil dezakezu elkarren ondoko erregistroen edukia txertatzeko dokumentuko posta-konbinazioko eremuen artean."
#. B3Coy
#: 04090006.xhp
@@ -12218,7 +12218,7 @@ msgctxt ""
"par_id3145825\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\".</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Elkarren segidako orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Elkarren ondoko orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira.</ahelp>"
#. 9NZbj
#: 04120212.xhp
@@ -15674,7 +15674,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/spinMaxNum\">Enter the maximum number of consecutive lines that can be hyphenated.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/textflowpage/spinMaxNum\">Sartu zatitu daitezkeen elkarren segidako gehienezko lerro kopurua.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/textflowpage/spinMaxNum\">Sartu zatitu daitezkeen elkarren ondoko gehieneko lerro kopurua.</ahelp>"
#. RQLep
#: 05030200.xhp
@@ -17474,7 +17474,7 @@ msgctxt ""
"par_id3151308\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/textgridpage/spinNF_LINESPERPAGE\">Enter the maximum number of lines that you want on a page.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/spinNF_LINESPERPAGE\">Sartu orrialdean agertzea nahi duzun gehienezko lerro kopurua.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/spinNF_LINESPERPAGE\">Sartu orrialdean agertzea nahi duzun gehieneko lerro kopurua.</ahelp>"
#. xGFdw
#: 05040800.xhp
@@ -17492,7 +17492,7 @@ msgctxt ""
"par_id3153674\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/textgridpage/spinNF_CHARSPERLINE\">Enter the maximum number of characters that you want on a line.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/spinNF_CHARSPERLINE\">Sartu lerro batean agertzea nahi duzun gehienezko karaktere kopurua.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/spinNF_CHARSPERLINE\">Sartu lerro batean agertzea nahi duzun gehieneko karaktere kopurua.</ahelp>"
#. 3cicV
#: 05040800.xhp
@@ -17501,7 +17501,7 @@ msgctxt ""
"hd_id3149684\n"
"help.text"
msgid "Max. base text size"
-msgstr "Oinarri-testuaren gehienezko tamaina"
+msgstr "Oinarri-testuaren gehieneko tamaina"
#. XLF6W
#: 05040800.xhp
@@ -17510,7 +17510,7 @@ msgctxt ""
"par_id3154193\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/textgridpage/spinMF_TEXTSIZE\">Enter the maximum base text size. A large value results in less characters per line.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/spinMF_TEXTSIZE\">Sartu oinarri-testuaren gehienezko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/textgridpage/spinMF_TEXTSIZE\">Sartu oinarri-testuaren gehieneko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira.</ahelp>"
#. 2B276
#: 05040800.xhp
@@ -17519,7 +17519,7 @@ msgctxt ""
"hd_id3155182\n"
"help.text"
msgid "Max. Ruby text size"
-msgstr "Ruby testuaren gehienezko tamaina"
+msgstr "Ruby testuaren gehieneko tamaina"
#. D9iLL
#: 05040800.xhp
@@ -24332,7 +24332,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "<ahelp hid=\".\">Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph.</ahelp>"
-msgstr "<ahelp hid=\".\">Elkarren segidako bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe.</ahelp>"
+msgstr "<ahelp hid=\".\">Elkarren ondoko bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe.</ahelp>"
#. Eop64
#: 05200000.xhp
@@ -24341,7 +24341,7 @@ msgctxt ""
"par_id3146325\n"
"help.text"
msgid "If you choose this command when the cursor is in the middle of three consecutive tables, you are prompted to select the table that you want to merge with."
-msgstr "Komando hori kurtsorea elkarren segidako hiru taulen erdian dagoenean hautatzen baduzu, batu nahi duzun taula hautatzeko eskatuko zaizu."
+msgstr "Komando hori kurtsorea elkarren ondoko hiru taulen erdian dagoenean hautatzen baduzu, batu nahi duzun taula hautatzeko eskatuko zaizu."
#. F9Yb9
#: 06030000.xhp
@@ -28592,23 +28592,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Hautatu zerrendako elementu bat eta egin klik gezi-botoi batean elementua lekuz aldatzeko.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mezu elektronikoa"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mezu elektronikoa"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28925,14 +28925,14 @@ msgctxt ""
msgid "Properties"
msgstr "Propietateak"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\"><link href=\"text/swriter/01/mm_emabod.xhp\">Posta elektronikoko mezua</link> elkarrizketa-koadroa irekitzen du, eta hor eranskin gisa bidaliko diren posta-konbinazioko fitxategietarako posta-mezua sar dezakezu.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/02.po b/source/eu/helpcontent2/source/text/swriter/02.po
index 933302035de..664df034576 100644
--- a/source/eu/helpcontent2/source/text/swriter/02.po
+++ b/source/eu/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-04 23:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1531771814.000000\n"
#. sqxGb
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3145249\n"
"help.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 ""
+msgstr "<ahelp hid=\".uno:NumberingStart\" visibility=\"visible\">Zerrendaren zenbakitzea 1 zenbakian hasten du.</ahelp> Komando hau aktibo izateko, kurtsoreak zerrenda baten barruan egon behar du."
#. 89Xm9
#: 06140000.xhp
@@ -815,7 +815,7 @@ msgctxt ""
"par_id631616370838434\n"
"help.text"
msgid "Choose <menuitem>Format - Lists - Restart Numbering</menuitem>."
-msgstr ""
+msgstr "Aukeratu <menuitem>Formatua - Zerrendak - Hasi berriro zenbakitzea</menuitem>."
#. fh5aw
#: 06140000.xhp
@@ -824,7 +824,7 @@ msgctxt ""
"par_id31616370717930\n"
"help.text"
msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
-msgstr ""
+msgstr "Kokatu kurtsorea zerrenda-paragrafo batean, egin eskuineko klik eta aukeratu <menuitem>Zerrenda - Hasi berriro zenbakitzea</menuitem>."
#. RgibL
#: 06140000.xhp
@@ -833,7 +833,7 @@ msgctxt ""
"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 ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"BulletsNumbering\"><emph>Buletak eta zenbakitzea</emph></link> barran, sakatu"
#. SLjuC
#: 06140000.xhp
@@ -860,7 +860,7 @@ msgctxt ""
"par_id761616370463787\n"
"help.text"
msgid "To remove the numbering restart, apply the command again in the paragraph where the numbering was restarted."
-msgstr ""
+msgstr "Zenbakitzearen hasieraren berrezartzea kentzeko, aplikatu komandoa berriro zenbakitzea hasi den paragrafoan."
#. 7h49d
#: 06140000.xhp
@@ -869,7 +869,7 @@ msgctxt ""
"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 - Paragraph - </menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
-msgstr ""
+msgstr "Zenbakitzea 1 baino handiagoa den zenbaki batekin berriro hasteko, egin eskuineko klik zenbakitzea berrabiarazi nahi den paragrafoan, aukeratu <menuitem>Paragrafoa - Paragrafoa -</menuitem><embedvar href=\"text/swriter/01/05030800.xhp#outlinelisth1\"/> fitxa, hautatu <menuitem>Hasi berriro zenbakitzea paragrafo honetan</menuitem> eta sartu hasierako zenbakia <menuitem>Hasi honekin</menuitem> aukeran."
#. qCdhk
#: 08010000.xhp
@@ -3344,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>Orrialde kopurua</emph> komandoa erabili txertatutako eremuaren formatua <link href=\"text/swriter/01/02140000.xhp\" name=\"Edit - Field\"><menuitem>Editatu - Eremuak</menuitem></link> komandoa erabilita aldatu daiteke."
#. iqoa4
#: 18030400.xhp
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_id231614069215429\n"
"help.text"
msgid "Include selected paragraphs, whether a list item or not, as part of a list."
-msgstr ""
+msgstr "Sartu hautatutako paragrafoak, zerrenda bateko elementu izan zein ez, zerrenda bateko atal gisa."
#. pxcFF
#: add_to_list.xhp
@@ -3956,7 +3956,7 @@ msgctxt ""
"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 ""
+msgstr "Zerrendaren etiketak eta koskak aplikatzen zaizkie hautatutako paragrafoei. Paragrafoek dokumentuan duten kokagunea ez da aldatzen."
#. pADj5
#: add_to_list.xhp
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id491615988072533\n"
"help.text"
msgid "Select paragraphs, whether in a list or not, to be added to a list."
-msgstr ""
+msgstr "Hautatu zerrenda bati gehitu zaizkion paragrafoak, berdin dio zerrenda batean dauden ala ez."
#. smjtz
#: add_to_list.xhp
@@ -3983,7 +3983,7 @@ msgctxt ""
"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 ""
+msgstr "Hautapen anitz egiteko, sakatu eta eutsi sakatuta <keycode>Ctrl</keycode> tekla lehen hautapena egin ondoren. <keycode>Ctrl</keycode> tekla askatu egin daiteke hautapena galde gabe, baina berriro sakatu behar da dokumentuan klik egitean."
#. gwgyD
#: add_to_list.xhp
@@ -3992,7 +3992,7 @@ msgctxt ""
"par_id551615985719902\n"
"help.text"
msgid "Press and hold the <keycode>Ctrl</keycode> key, then place cursor in the list."
-msgstr ""
+msgstr "Sakatu eta eutsi sakatuta <keycode>Ctrl</keycode> tekla eta kokatu kurtsorea zerrendan."
#. 3VT7j
#: add_to_list.xhp
@@ -4001,7 +4001,7 @@ msgctxt ""
"par_id901615999151001\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Egin honako ekintzetako bat:"
#. qPKKN
#: add_to_list.xhp
@@ -4037,7 +4037,7 @@ msgctxt ""
"par_id861614074931979\n"
"help.text"
msgid "This procedure works for ordered and unordered lists."
-msgstr ""
+msgstr "Prozedura honek ordenatu gabeko zein ordenatutako zerrendatan funtzionatzen du."
#. L9RdM
#: add_to_list.xhp
@@ -4046,7 +4046,7 @@ msgctxt ""
"hd_id441616017998739\n"
"help.text"
msgid "Add Consecutive List Entries to an Immediately Prior List"
-msgstr ""
+msgstr "Gehitu elkarren ondoko sarrerak justu aurretik datorren zerrenda bati"
#. GJuBD
#: add_to_list.xhp
@@ -4055,7 +4055,7 @@ msgctxt ""
"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 ""
+msgstr "Hautatu elkarren ondoko zerrenda-sarrera bat edo gehiago, lehen sarreratik hasita, justu aurretik dagoen zerrendari gehitzeko."
#. g9LRR
#: add_to_list.xhp
@@ -4073,7 +4073,7 @@ msgctxt ""
"par_id811616018796902\n"
"help.text"
msgid "Use this procedure to combine two lists."
-msgstr ""
+msgstr "Erabili prozedura hau bi zerrenda konbinatzeko."
#. JsrhA
#: word_count_stb.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index 5cdda777837..dd84fc93c92 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-17 03:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/eu/>\n"
"Language: eu\n"
@@ -619,14 +619,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Esaldi baten lehen letra maiuskulaz jartzeari uzteko"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Aukeratu <menuitem>Tresnak - Autozuzenketa aukerak</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
@@ -1355,7 +1355,7 @@ msgctxt ""
"par_idN10A56\n"
"help.text"
msgid "<link href=\"text/shared/02/02160000.xhp\">Character Highlighting Color icon</link>"
-msgstr "<link href=\"text/shared/02/02160000.xhp\">Karaktere-nabarmentzearen kolorearen ikonoa</link>"
+msgstr "<link href=\"text/shared/02/02160000.xhp\">Karaktereak nabarmentzeko kolorearen ikonoa</link>"
#. 7cNgF
#: background.xhp
@@ -3038,7 +3038,7 @@ msgctxt ""
"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 ""
+msgstr "<variable id=\"captions_numbers\"><link href=\"text/swriter/guide/captions_numbers.xhp\" name=\"Adding Chapter Numbers to Captions\">Kapitulu-zenbakiak gehitzea epigrafeei</link></variable>"
#. 5efvj
#: captions_numbers.xhp
@@ -3335,7 +3335,7 @@ msgctxt ""
"par_id3155891\n"
"help.text"
msgid "In the <menuitem>Paragraph style</menuitem> box, select the heading style that you want to add chapter numbers to."
-msgstr ""
+msgstr "<menuitem>Paragrafo-estiloa</menuitem> koadroan, hautatu kapitulu-zenbakiak gehitu nahi dizkiezun izenburu-estiloak."
#. EZW6q
#: chapter_numbering.xhp
@@ -3344,7 +3344,7 @@ msgctxt ""
"par_id3150513\n"
"help.text"
msgid "In the <menuitem>Number</menuitem> box, select the numbering scheme that you want to use, and then click <menuitem>OK</menuitem>."
-msgstr ""
+msgstr "<menuitem>Zenbakia</menuitem> koadroan, hautatu erabiliko den zenbakitze-eskema, eta ondoren egin klik <menuitem>Ados</menuitem> aukeran."
#. EChDL
#: chapter_numbering.xhp
@@ -3371,7 +3371,7 @@ msgctxt ""
"par_idN107D9\n"
"help.text"
msgid "Press the <keycode>Backspace</keycode> key to delete the number."
-msgstr ""
+msgstr "Sakatu <keycode>⌫</keycode> tekla (atzerako tekla) zenbakia ezabatzeko."
#. ycK3V
#: chapter_numbering.xhp
@@ -3380,7 +3380,7 @@ msgctxt ""
"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 ""
+msgstr "Sakatu <keycode>⇧+⌫</keycode> kurtsorea izenburuaren hasieran dagoela, zenbakia itzultzeko."
#. itdUu
#: chapter_numbering.xhp
@@ -5486,7 +5486,7 @@ msgctxt ""
"par_id3150517\n"
"help.text"
msgid "Click a numbering scheme in the <menuitem>Format</menuitem> list."
-msgstr ""
+msgstr "Egin klik <menuitem>Formatua</menuitem> zerrendako zenbakitze-eskema batean."
#. 9YJwh
#: footer_nextpage.xhp
@@ -6953,7 +6953,7 @@ msgctxt ""
"par_id3155874\n"
"help.text"
msgid "Choose <menuitem>Tools - Chapter Numbering.</menuitem>"
-msgstr ""
+msgstr "Aukeratu <menuitem>Tresnak - Kapitulu-zenbakitzea</menuitem>."
#. B8P3C
#: header_with_chapter.xhp
@@ -6971,7 +6971,7 @@ msgctxt ""
"par_id3147124\n"
"help.text"
msgid "Select the numbering scheme for the chapter titles in the <menuitem>Number</menuitem> box, for example, \"1,2,3...\"."
-msgstr ""
+msgstr "<menuitem>Zenbakia</menuitem> koadroan, hautatu kapitulu-izenburuetarako zenbakitze-eskema, esaterako \"1,2,3...\"."
#. AHCua
#: header_with_chapter.xhp
@@ -8942,7 +8942,7 @@ msgctxt ""
"par_id3146896\n"
"help.text"
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 ""
+msgstr "Aurkibide-sarreretan beste paragrafo-estilo bat erabili nahi baduzu, hautatu <menuitem>Beste estilo batzuk</menuitem> kontrol-laukia <menuitem>Sortu hemendik:</menuitem> arean, eta ondoren egin klik koadroaren alboan dagoen <menuitem>Esleitu estiloak</menuitem> botoian. <menuitem>Esleitu estiloak</menuitem> elkarrizketa-koadroan, egin klik zerrendako estilo batean eta ondoren sakatu <menuitem>>></menuitem> edo <menuitem><<</menuitem> botoia, paragrafo-estiloaren eskema-maila definitzeko."
#. mXE4E
#: indices_toc.xhp
@@ -9563,7 +9563,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the List Level of a List Paragraph"
-msgstr ""
+msgstr "Zerrenda-paragrafo baten zerrenda-maila aldatzea"
#. NDiP8
#: insert_tab_innumbering.xhp
@@ -9581,7 +9581,7 @@ msgctxt ""
"hd_id3145078\n"
"help.text"
msgid "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Changing the List Level of a List Paragraph</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_tab_innumbering\"><link href=\"text/swriter/guide/insert_tab_innumbering.xhp\" name=\"Changing the Outline Level of Numbered and Bulleted Lists\">Zerrenda-paragrafo baten zerrenda-maila aldatzea</link></variable>"
#. epGvP
#: insert_tab_innumbering.xhp
@@ -9590,7 +9590,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph down one list level, click at the beginning of the paragraph, and then press <keycode>Tab</keycode>."
-msgstr ""
+msgstr "Zenbakidun edo buletdun paragrafo bat kapitulu-maila bat jaisteko, egin klik paragrafoaren hasieran eta sakatu <keycode>Tab</keycode>."
#. 9onR5
#: insert_tab_innumbering.xhp
@@ -9599,7 +9599,7 @@ msgctxt ""
"par_id3155859\n"
"help.text"
msgid "To move a numbered or bulleted list paragraph up one list level, click at the beginning of the paragraph, and then press <keycode>Shift+Tab</keycode>."
-msgstr ""
+msgstr "Zenbakidun edo buletdun paragrafo bat kapitulu-maila bat igotzeko, egin klik paragrafoaren hasieran eta sakatu <keycode>⇧+Tab</keycode>."
#. A6CtC
#: insert_tab_innumbering.xhp
@@ -9626,7 +9626,7 @@ msgctxt ""
"bm_id3150495\n"
"help.text"
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>zenbakitzea; konbinatzea</bookmark_value> <bookmark_value>konbinatzea;zerrenda zenbakidunak</bookmark_value> <bookmark_value>bateratzea;zerrenda zenbakidunak</bookmark_value> <bookmark_value>zerrendak;zerrenda zenbakidunak konbinatzea</bookmark_value> <bookmark_value>paragrafoak;elkarren segidakoak ez direnak zenbakitzea</bookmark_value>"
+msgstr "<bookmark_value>zenbakitzea; konbinatzea</bookmark_value> <bookmark_value>konbinatzea;zerrenda zenbakidunak</bookmark_value> <bookmark_value>bateratzea;zerrenda zenbakidunak</bookmark_value> <bookmark_value>zerrendak;zerrenda zenbakidunak konbinatzea</bookmark_value> <bookmark_value>paragrafoak;elkarren ondokoak ez direnak zenbakitzea</bookmark_value>"
#. uwK2S
#: join_numbered_lists.xhp
@@ -9635,7 +9635,7 @@ msgctxt ""
"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 Ordered Lists</link></variable>"
-msgstr ""
+msgstr "<variable id=\"join_numbered_lists\"><link href=\"text/swriter/guide/join_numbered_lists.xhp\" name=\"Combining Numbered Lists\">Ordenatutako zerrendak konbinatzea</link></variable>"
#. kFGF5
#: join_numbered_lists.xhp
@@ -9644,7 +9644,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "You can combine two ordered lists into a single list."
-msgstr ""
+msgstr "Bi zerrenda ordenatu zerrenda bakarrean konbinatu daitezke."
#. 2mCAG
#: join_numbered_lists.xhp
@@ -9653,7 +9653,7 @@ msgctxt ""
"hd_id3149452\n"
"help.text"
msgid "To Combine Two Ordered Lists"
-msgstr ""
+msgstr "Bi zerrenda ordenatu konbinatzeko"
#. e25XR
#: join_numbered_lists.xhp
@@ -9671,7 +9671,7 @@ msgctxt ""
"par_id3155911\n"
"help.text"
msgid "On the <menuitem>Formatting</menuitem> Bar, click the <menuitem>Toggle Ordered List</menuitem> icon twice."
-msgstr ""
+msgstr "<menuitem>Formatua</menuitem> barran, egin klik <menuitem>Txandakatu ordenatutako zerrenda</menuitem> ikonoan bi aldiz."
#. yCERR
#: join_numbered_lists.xhp
@@ -9680,7 +9680,7 @@ msgctxt ""
"hd_id3155870\n"
"help.text"
msgid "To Create a Ordered List From Non-consecutive Paragraphs"
-msgstr ""
+msgstr "Elkarren ondokoak ez diren paragrafoekin zerrenda zenbakitu bat sortzeko"
#. 3fmSg
#: join_numbered_lists.xhp
diff --git a/source/eu/nlpsolver/src/locale.po b/source/eu/nlpsolver/src/locale.po
index 609abe8397f..e2157fd726f 100644
--- a/source/eu/nlpsolver/src/locale.po
+++ b/source/eu/nlpsolver/src/locale.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-21 21:37+0200\n"
-"PO-Revision-Date: 2019-12-17 11:21+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
-"Language-Team: Basque <https://weblate.documentfoundation.org/projects/libo_ui-master/nlpsolversrclocale/eu/>\n"
+"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/nlpsolversrclocale/eu/>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.9.1\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1511688456.000000\n"
#. sv3GB
@@ -266,7 +266,7 @@ msgctxt ""
"NLPSolverStatusDialog.Message.StopIteration\n"
"property.text"
msgid "Maximum iterations reached."
-msgstr "Gehienezko iterazio-kopurua osatu da."
+msgstr "Gehieneko iterazio-kopurua osatu da."
#. LgEvY
#: NLPSolverStatusDialog_en_US.properties
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
index a95b8617f75..1562f761806 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-22 13:07+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/eu/>\n"
"Language: eu\n"
@@ -12614,7 +12614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Compress"
-msgstr "Konprimitu"
+msgstr "Konprimatu"
#. Li8rn
#: Effects.xcu
@@ -19084,7 +19084,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Compress Image"
-msgstr "Konprimitu irudia"
+msgstr "Konprimatu irudia"
#. AdsrC
#: GenericCommands.xcu
@@ -20676,7 +20676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Character Highlighting Color"
-msgstr "Karaktereen nabarmentzearen kolorea"
+msgstr "Karaktereak nabarmentzeko kolorea"
#. h68Rw
#: GenericCommands.xcu
@@ -20686,7 +20686,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr "Karaktereen nabarmentzearen kolorea (testu-koadroetan eta formetan)"
+msgstr "Karaktereak nabarmentzeko kolorea (testu-koadroetan eta formetan)"
#. SPsxZ
#: GenericCommands.xcu
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Kokagunea eta tamaina"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30056,7 +30066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Erakutsi eskema tolesteko botoiak"
#. 4hvcy
#: WriterCommands.xcu
@@ -30066,7 +30076,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Botoi bat erakusten du izenburu eta azpizenburu guztien alboan, eskemak tolesten laguntzeko. Botoirik gabe ere tolestu daiteke eskema nabigatzailean."
#. C5mHk
#: WriterCommands.xcu
@@ -33916,7 +33926,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Character Highlighting Color"
-msgstr "Karaktere-nabarmentzearen kolorea"
+msgstr "Karaktereak nabarmentzeko kolorea"
#. sVA9o
#: WriterCommands.xcu
@@ -35426,7 +35436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Txandakatu eskema-tolestea"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index 477a2af2bd3..35fa065c3a6 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-14 21:37+0000\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562221465.000000\n"
#. kBovX
@@ -17753,7 +17753,7 @@ msgstr "Gutxienekoa"
#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
-msgstr "Gehienezkoa"
+msgstr "Gehienekoa"
#. Q5r5c
#: sc/inc/strings.hrc:244
@@ -17850,7 +17850,7 @@ msgstr "Gutxienekoa"
#: sc/inc/strings.hrc:260
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
-msgstr "Gehienezkoa"
+msgstr "Gehienekoa"
#. RPYEG
#: sc/inc/strings.hrc:261
@@ -19576,7 +19576,7 @@ msgstr "Gutxienekoa"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:321
msgctxt "conditionalentry|Label_maximum"
msgid "Maximum"
-msgstr "Gehienezkoa"
+msgstr "Gehienekoa"
#. JcTKF
#: sc/uiconfig/scalc/ui/conditionalentry.ui:344
@@ -26233,7 +26233,7 @@ msgstr "Ezarri iterazio-urratsen gehieneko kopurua."
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:347
msgctxt "extended_tip|minchange"
msgid "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop."
-msgstr "Iterazio-urratsen bi emaitzen arteko diferentzia zehazten du. Iterazioaren emaitza aldaketa-balioaren gutxienekoa baino txikiagoa bada, iterazioa gelditu egingo da."
+msgstr "Elkarren ondoko iterazio-urratsen bi emaitzen arteko diferentzia zehazten du. Iterazioaren emaitza aldaketa-balioaren gutxienekoa baino txikiagoa bada, iterazioa gelditu egingo da."
#. UoUqA
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:369
@@ -29347,13 +29347,13 @@ msgstr "A_ltuera orrialdetan:"
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:541
msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEWIDTH"
msgid "Enter the maximum number of pages to be printed horizontally across."
-msgstr "Sar ezazu horizontalean luzetara inprimatzeko gehienezko orrialde kopurua."
+msgstr "Sar ezazu horizontalean luzetara inprimatzeko gehieneko orrialde kopurua."
#. Tpcb3
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:562
msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEHEIGHT"
msgid "Enter the maximum number of pages to be printed vertically stacked."
-msgstr "Sar ezazu bertikalean pilatuta inprimatzeko gehienezko orrialde kopurua."
+msgstr "Sar ezazu bertikalean pilatuta inprimatzeko gehieneko orrialde kopurua."
#. SeMBt
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:587
@@ -29365,7 +29365,7 @@ msgstr "Orrialde-_kopurua:"
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:607
msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGENUM"
msgid "Enter the maximum number of pages to be printed."
-msgstr "Sar ezazu inprimatzeko gehienezko orrialde kopurua."
+msgstr "Sar ezazu inprimatzeko gehieneko orrialde kopurua."
#. CvyP8
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:635
@@ -30583,7 +30583,7 @@ msgstr "Bereizlea:"
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:50
msgctxt "splitcolumnentry|max_num_columns"
msgid "Maximum Number of Columns"
-msgstr "Gehienezko zutabe kopurua"
+msgstr "Gehieneko zutabe kopurua"
#. 9SeDn
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:91
@@ -31567,7 +31567,7 @@ msgstr "Bat_u mugatzaileak"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:337
msgctxt "textimportcsv|extended_tip|mergedelimiters"
msgid "Combines consecutive delimiters and removes blank data fields."
-msgstr "Ondoz ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu."
+msgstr "Elkarren ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu."
#. fZFyK
#: sc/uiconfig/scalc/ui/textimportcsv.ui:349
diff --git a/source/eu/sd/messages.po b/source/eu/sd/messages.po
index 8bdc6a18a35..df0776ec76e 100644
--- a/source/eu/sd/messages.po
+++ b/source/eu/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 05:37+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562394047.000000\n"
#. WDjkB
@@ -5461,7 +5461,7 @@ msgstr ">>"
#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:288
msgctxt "definecustomslideshow|extended_tip|add"
msgid "Adds an existing slide to the bottom of the Selected slides list. You need to select a slide in the Existing slides list before you can use this button."
-msgstr "Lehendik dagoen diapositiba bat gehitzen du Hautatutako diapositibak zerrendaren amaierara. Lehendik dauden diapositibak zerrendako diapositiba bat hautatu behar duzu botoi hau erabili ahal izan baino lehen."
+msgstr "Lehendik dagoen diapositiba bat gehitzen du Hautatutako diapositibak zerrendaren amaierara. 'Lehendik dauden diapositibak' zerrendako diapositiba bat hautatu behar duzu botoi hau erabili ahal izan baino lehen."
#. nrzGP
#: sd/uiconfig/simpress/ui/definecustomslideshow.ui:300
@@ -8852,7 +8852,7 @@ msgstr "_PNG"
#: sd/uiconfig/simpress/ui/publishingdialog.ui:981
msgctxt "publishingdialog|extended_tip|pngRadiobutton"
msgid "The files are exported as PNG files. PNG files are compressed without loss of data, and can contain more than 256 colors."
-msgstr "Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimituak dira, eta 256 kolore baino gehiago izan ditzakete."
+msgstr "Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimatuak dira, eta 256 kolore baino gehiago izan ditzakete."
#. Ei2dJ
#: sd/uiconfig/simpress/ui/publishingdialog.ui:993
@@ -8876,7 +8876,7 @@ msgstr "_JPG"
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1023
msgctxt "publishingdialog|extended_tip|jpgRadiobutton"
msgid "The files are exported as JPEG files. JPEG files are compressed, with adjustable compression and can contain more than 256 colors."
-msgstr "Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimituak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete."
+msgstr "Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimatuak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete."
#. Sahg3
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1044
@@ -8936,13 +8936,13 @@ msgstr "Hautatu bereizmen handia kalitate oneko diapositiba bistaratzea egiteko.
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1186
msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
-msgstr ""
+msgstr "Full HD (1_920 × 1080 pixel)"
#. GuDqe
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1197
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
msgid "Select a full hd resolution for a very high quality slide display."
-msgstr ""
+msgstr "Hautatu 'Full HD' bereizmena diapositibak kalitate altuan bistaratzeko."
#. zsvW6
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1213
diff --git a/source/eu/sfx2/messages.po b/source/eu/sfx2/messages.po
index 4430deb0dc4..c21601b2bf9 100644
--- a/source/eu/sfx2/messages.po
+++ b/source/eu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/eu/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Dokumentuari informazio-eremu pertsonalizatuak esleitzeko aukera ematen du."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Itxi alboko barrako panela"
diff --git a/source/eu/svtools/messages.po b/source/eu/svtools/messages.po
index 1ed6edbb4c0..44e6a172088 100644
--- a/source/eu/svtools/messages.po
+++ b/source/eu/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-18 20:37+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559371101.000000\n"
#. fLdeV
@@ -5380,7 +5380,7 @@ msgstr "2. maila"
#: svtools/uiconfig/ui/graphicexport.ui:835
msgctxt "graphicexport|extended_tip|level2rb"
msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics."
-msgstr "Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimitutako irudiak onartzen baditu inprimagailuak."
+msgstr "Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimatutako irudiak onartzen baditu inprimagailuak."
#. JUuBZ
#: svtools/uiconfig/ui/graphicexport.ui:850
diff --git a/source/eu/svx/messages.po b/source/eu/svx/messages.po
index 046028cf5c9..e822e4aaaf9 100644
--- a/source/eu/svx/messages.po
+++ b/source/eu/svx/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-21 05:37+0000\n"
+"PO-Revision-Date: 2021-04-06 12:39+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/eu/>\n"
"Language: eu\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559371103.000000\n"
#. 3GkZj
@@ -7193,7 +7193,7 @@ msgstr "Txertatu"
#: include/svx/strings.hrc:1292
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
-msgstr ""
+msgstr "%1. Egin klik hautapen modua aldatzeko."
#. Dh5A2
#: include/svx/strings.hrc:1293
@@ -13793,7 +13793,7 @@ msgstr "Zutabea..."
#: svx/uiconfig/ui/compressgraphicdialog.ui:36
msgctxt "compressgraphicdialog|CompressGraphicDialog"
msgid "Compress Image"
-msgstr "Konprimitu irudia"
+msgstr "Konprimatu irudia"
#. eGiUL
#: svx/uiconfig/ui/compressgraphicdialog.ui:130
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index 4166d81ded8..504f93ac6f6 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-29 14:08+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/eu/>\n"
"Language: eu\n"
@@ -1538,7 +1538,7 @@ msgstr "Zerrenda-etiketaren katea"
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "Metadatauen erreferentzia"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
@@ -2291,7 +2291,7 @@ msgstr "Antolatzaileko 'Dauka' aukeran fitxa honetarako zehaztutako balioak kend
#: sw/inc/strings.hrc:29
msgctxt "STR_STANDARD_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 current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Fitxa honetako balioak antolatzaileko 'Heredatu hemendik' atalean zehaztutako estiloan dagozkien balioekin ezartzen dira. Kasu guztietan, 'Heredatu hemendik' atalean 'Bat ere ez' ezarrita badago, 'Dauka' atalean uneko fitxarako dauden balioak kendu egingo dira."
#. x2EUX
#: sw/inc/strings.hrc:30
@@ -2321,13 +2321,13 @@ msgstr "Aplikatu"
#: sw/inc/strings.hrc:34
msgctxt "STR_APPLY_TOOLTIP"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with Reset."
-msgstr ""
+msgstr "Fitxa guztietako aldaketak aplikatzen ditu elkarrizketa-koadroa itxi gabe. Ezin da atzera bota 'Berrezarri' erabilita."
#. FbPXG
#: sw/inc/strings.hrc:35
msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
-msgstr ""
+msgstr "Aldaketa guztiak aplikatzen ditu elkarrizketa-koadroa itxi gabe. Balioak gorde egingo dira eta ezin da atzera bota 'Berrezarri' erabilita."
#. MvGmf
#. Format names
@@ -3360,7 +3360,7 @@ msgstr "Horizontala"
#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
-msgstr ""
+msgstr "Zerrendarik ez"
#. mGZHb
#: sw/inc/strings.hrc:215
@@ -5882,7 +5882,7 @@ msgstr "Desaktibatuta"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Egin klik eskemaren tolestea aktibatzeko/desaktibatzeko"
#. 44jEc
#: sw/inc/strings.hrc:659
@@ -5894,7 +5894,7 @@ msgstr "Eskuineko klik azpimailak sartzeko"
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Egin klik eskemaren tolestea aktibatzeko/desaktibatzeko"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5906,7 +5906,7 @@ msgstr "Eskuineko klik azpimailak sartzeko"
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Eskema tolestea"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5918,13 +5918,13 @@ msgstr "Txandakatu"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Zabaldu dena"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Tolestu dena"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -6472,7 +6472,7 @@ msgstr "Erabiltzaileak def.5"
#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_LOCAL_FILE"
msgid "Local file"
-msgstr ""
+msgstr "Fitxategi lokala"
#. nsCwi
#: sw/inc/strings.hrc:764
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Pertsonalizatua"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -9950,7 +9962,7 @@ msgstr "Sartu dokumentu berrian kopiatu beharreko kapitulu-mailen kopurua."
#: sw/uiconfig/swriter/ui/abstractdialog.ui:183
msgctxt "abstractdialog|extended_tip|paras"
msgid "Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading."
-msgstr "Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren segidako gehienezko paragrafo kopurua zehazten du."
+msgstr "Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren ondoko gehieneko paragrafo kopurua zehazten du."
#. G6YVz
#: sw/uiconfig/swriter/ui/abstractdialog.ui:198
@@ -18858,7 +18870,7 @@ msgstr "Modua"
#: sw/uiconfig/swriter/ui/mergetabledialog.ui:151
msgctxt "mergetabledialog|extended_tip|MergeTableDialog"
msgid "Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph."
-msgstr "Elkarren segidako bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe."
+msgstr "Elkarren ondoko bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe."
#. M7mkx
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:58
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Txantiloia hautatzeko elkarrizketa-koadroa irekitzen du."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Hautatu hasierako dokumentua posta-konbinaziorako"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Zehaztu zein dokumentu erabiliko duzun posta-konbinazioko oinarri-dokumentua izateko."
@@ -20214,7 +20232,7 @@ msgstr "Ezabatu dena"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Eskema tolestea"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -21973,7 +21991,7 @@ msgstr "Esleitutako zerrenda-estiloa"
#: sw/uiconfig/swriter/ui/numparapage.ui:147
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "No List"
-msgstr ""
+msgstr "Zerrendarik ez"
#. hRgAM
#: sw/uiconfig/swriter/ui/numparapage.ui:151
@@ -24307,13 +24325,13 @@ msgstr "Paragrafoa"
#: sw/uiconfig/swriter/ui/paradialog.ui:32
msgctxt "paradialog|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "Gorde ez diren fitxa honetako aldaketak baztertuko dira."
#. Gw9vR
#: sw/uiconfig/swriter/ui/paradialog.ui:35
msgctxt "paradialog|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 "Baztertu hemen erakutsitako fitxan egindako aldaketak eta itzuli elkarrizketa-koadroa ireki denean zeuden ezarpenetara."
#. 6xRiy
#: sw/uiconfig/swriter/ui/paradialog.ui:159
@@ -27323,7 +27341,7 @@ msgstr "Antolatzailea"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
-msgstr ""
+msgstr "Izendatu eta ezkutatu erabiltzaileak definitutako estiloak"
#. 7o8No
#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
@@ -27335,7 +27353,7 @@ msgstr "Ordenatu gabea"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
-msgstr ""
+msgstr "Aukeratu bulet mota aurredefinitu bat"
#. uCBn4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:264
@@ -27347,7 +27365,7 @@ msgstr "Ordenatua"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
-msgstr ""
+msgstr "Aukeratu zerrenda ordenatu aurredefinitu bat"
#. D9oKE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:313
@@ -27359,7 +27377,7 @@ msgstr "Eskema"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:314
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
-msgstr ""
+msgstr "Aukeratu eskema-formatu aurredefinitu bat"
#. Dp6La
#: sw/uiconfig/swriter/ui/templatedialog16.ui:362
@@ -27371,7 +27389,7 @@ msgstr "Irudia"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:363
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
-msgstr ""
+msgstr "Aukeratu bulet grafikoen ikur aurredefinitu bat"
#. K55K4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:411
@@ -27383,7 +27401,7 @@ msgstr "Kokagunea"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
-msgstr ""
+msgstr "Aldatu zerrenda-zenbakien edo -ikurren koska. tarteak eta lerrokatzea"
#. g5NQF
#: sw/uiconfig/swriter/ui/templatedialog16.ui:460
@@ -27395,7 +27413,7 @@ msgstr "Pertsonalizatu"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:461
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
-msgstr ""
+msgstr "Diseinatu zure zerrenda edo eskema propioa"
#. 6ozqU
#: sw/uiconfig/swriter/ui/templatedialog2.ui:8
@@ -27767,7 +27785,7 @@ msgstr "Karaktereak lerroko:"
#: sw/uiconfig/swriter/ui/textgridpage.ui:231
msgctxt "textgridpage|extended_tip|spinNF_CHARSPERLINE"
msgid "Enter the maximum number of characters that you want on a line."
-msgstr "Sartu lerro batean agertzea nahi duzun gehienezko karaktere kopurua."
+msgstr "Sartu lerro batean agertzea nahi duzun gehieneko karaktere kopurua."
#. YoUGQ
#: sw/uiconfig/swriter/ui/textgridpage.ui:258
@@ -27779,7 +27797,7 @@ msgstr "Lerroak orrialdeko:"
#: sw/uiconfig/swriter/ui/textgridpage.ui:277
msgctxt "textgridpage|extended_tip|spinNF_LINESPERPAGE"
msgid "Enter the maximum number of lines that you want on a page."
-msgstr "Sartu orrialdean agertzea nahi duzun gehienezko lerro kopurua."
+msgstr "Sartu orrialdean agertzea nahi duzun gehieneko lerro kopurua."
#. VKRDD
#: sw/uiconfig/swriter/ui/textgridpage.ui:331
@@ -27809,7 +27827,7 @@ msgstr "Geih. tamaina oinarri-testuan:"
#: sw/uiconfig/swriter/ui/textgridpage.ui:397
msgctxt "textgridpage|extended_tip|spinMF_TEXTSIZE"
msgid "Enter the maximum base text size. A large value results in less characters per line."
-msgstr "Sartu oinarri-testuaren gehienezko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira."
+msgstr "Sartu oinarri-testuaren gehieneko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira."
#. xFWMV
#: sw/uiconfig/swriter/ui/textgridpage.ui:421
@@ -28937,7 +28955,7 @@ msgstr "Konbinatu honekin:"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:983
msgctxt "tocindexpage|extended_tip|usedash"
msgid "Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\"."
-msgstr "Elkarren segidako orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira."
+msgstr "Elkarren ondoko orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira."
#. GfaT4
#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
@@ -29315,7 +29333,7 @@ msgstr "Ezarpenak"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "_Erakutsi eskema tolesteko botoiak"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29327,7 +29345,7 @@ msgstr "Sartu az_pimailak"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Eskema tolestea"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/eu/vcl/messages.po b/source/eu/vcl/messages.po
index 68cb5592b8a..63a3549478f 100644
--- a/source/eu/vcl/messages.po
+++ b/source/eu/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-03-08 14:40+0100\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
+"PO-Revision-Date: 2021-04-05 07:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/eu/>\n"
"Language: eu\n"
@@ -996,7 +996,7 @@ msgstr "Pertsonalizatua"
#: 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 "Txertatutako testua testu-eremuaren gehienezko luzera gainditzen du. Testua trunkatu egin da."
+msgstr "Txertatutako testua testu-eremuaren gehieneko luzera gainditzen du. Testua trunkatu egin da."
#. Dk4vc
#: vcl/inc/strings.hrc:104
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Bereizlea"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/fa/cui/messages.po b/source/fa/cui/messages.po
index 29fb8272c9d..48545418b21 100644
--- a/source/fa/cui/messages.po
+++ b/source/fa/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fa/>\n"
@@ -3585,10 +3585,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9204,6 +9204,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9513,13 +9531,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14785,161 +14803,167 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
#, fuzzy
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "راهنمایی‌های مفصل"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "راهنما"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "محاوره‌های %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "محاوره‌های %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "وضعیت سند"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "بار کردن %PRODUCTNAME در حین راه‌اندازی سیستم"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17700,33 +17724,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
index d60ed3277d9..796fecb4cd6 100644
--- a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-12-25 22:25+0000\n"
"Last-Translator: Farshid Meidani <farshid.mi@gmail.com>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fa/>\n"
@@ -29080,6 +29080,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "موقعیت و ان~دازه"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/fa/sfx2/messages.po b/source/fa/sfx2/messages.po
index 59f5961c5bc..0adbdb3de6a 100644
--- a/source/fa/sfx2/messages.po
+++ b/source/fa/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fa/>\n"
@@ -2896,7 +2896,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index e1c8faa9968..3f45024178e 100644
--- a/source/fa/sw/messages.po
+++ b/source/fa/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fa/>\n"
@@ -9957,6 +9957,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "سفارشی"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20632,14 +20644,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/fa/vcl/messages.po b/source/fa/vcl/messages.po
index 3947238e6f3..9d2d8b0da4e 100644
--- a/source/fa/vcl/messages.po
+++ b/source/fa/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/fa/>\n"
@@ -1163,8 +1163,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 330595c21f9..3b08ec181ed 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-27 08:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fi/>\n"
@@ -3552,10 +3552,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8986,6 +8986,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Liitetään makro ohjelman tapahtumaan. Liitetty makro käynnistyy joka kerta, kun valittu tapahtuma esiintyy."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9287,13 +9305,13 @@ msgid "Font Features"
msgstr "Fontin ominaisuudet"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Esikatselu"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14373,157 +14391,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Fonttiasetukset HTML-, Basic- ja SQL-lähdekoodille"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Laajennetut vihjeet"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Esitetään ohjeteksti, kun hiiren osoitin on kuvakkeen, valikkokomennon tai valintaikkunan ohjausobjektin päällä."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Näytä ilmoitus, jos ohjeita ei ole asennettu"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Näytä päivän vinkki ohjelmaa käynnistettäessä"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ohje"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Käytä _%PRODUCTNAME-valintaikkunoita"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avaus- ja tallennusikkunat"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Käytä %PRODUCTNAME-valintaikkunoita"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tulostusvalintaikkunat"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "T_ulostaminen asettaa \"asiakirjaa muokattu\" -tilan"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Merkinnällä määrätään, että asiakirjan tulostus lasketaan muokkaukseksi."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Asiakirjan tila"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tulkitse vuosiksi väliltä "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Määritetään päivämäärä väli, jolta järjestelmä tunnistaa vuoden kahdesta numerosta."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Vuosi (kaksi numeroa)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kerää tietoja ohjelmiston käytöstä ja lähetä ne The Document Foundationille"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Lähetä ilmoitus ohjelman kaatumisesta The Document Foundationille"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Auta parantamaan %PRODUCTNAMEa"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Lataa %PRODUCTNAME järjestelmän käynnistyksen yhteydessä"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ota käyttöön pikakäynnistys"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME-pikakäynnistys"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windowsin oletussovellukset"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAMEn tiedostojen kytkentä"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Määritetään %PRODUCTNAME-ohjelmiston yleisasetukset."
@@ -17227,33 +17251,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Asettelu"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/fi/helpcontent2/source/auxiliary.po b/source/fi/helpcontent2/source/auxiliary.po
index 3d62e5970f3..7f36a57e216 100644
--- a/source/fi/helpcontent2/source/auxiliary.po
+++ b/source/fi/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-05-19 12:41+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-11-20 06:55+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/fi/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1532004622.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Komentohakemisto"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funktiot, lauseet ja operaattorit"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Aakkosellinen luettelo funktioista, lauseista ja operaattoreista"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared.po b/source/fi/helpcontent2/source/text/sbasic/shared.po
index 9564b79b04c..bb62cf3016f 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/fi/>\n"
@@ -9930,13 +9930,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>Basic-funktio FreeFile</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9948,24 +9948,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "FreeFile palauttaa seuraavan käytettävissä olevan tiedostonumeron avattavalle tiedostolle. Tätä funktiota käytetään tiedostoa avattaessa löytämään numero, joka ei ole jo käytössä jossakin avoimessa tiedostossa."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9975,15 +9957,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer-tyypin kokonaisluku"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9993,33 +9966,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Tällä funktiolla on käyttöä vain välittömästi Open-lauseen edellä. FreeFile palauttaa seuraavan vapaan tiedostonumeron, mutta ei varaa sitä."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Tämä on tekstirivi.\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Toinen rivi tekstiä.\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10164,6 +10110,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Tässä on toinen rivi tekstiä\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10218,14 +10191,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Tässä on toinen rivi tekstiä\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Kaikki tiedostot suljetaan\",0,\"Virhe\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10371,50 +10344,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Sijainti aloitettaessa"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Tämä on ensimmäinen rivi tekstiä\" ' Täytetään rivi tekstillä"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Tämä on toinen tekstirivi\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Kolmas rivi tekstiä\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Tämä on uusi teksti\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Tämä on teksti tietueessa 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10434,13 +10470,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input-lause</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10884,15 +10920,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Tutkitaan, onko tiedosto-osoitin saavuttanut tiedoston lopun."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10902,15 +10929,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (int_lauseke As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10920,15 +10938,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool-tyypin totuusarvo"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10947,33 +10956,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF-funktiota käytetään niiden virheiden välttämiseen, joita seuraa yritettäessä hakea tietoja tiedoston lopun jälkeen. Kun käytetään Input- tai Get-lauseita tiedoston lukemiseen, tiedosto-osoitin etenee luettuja tavuja vastaavasti. Kun tiedoston loppu on saavutettu, EOF palauttaa arvon \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Tämä on tekstirivi.\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Toinen rivi tekstiä.\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11118,15 +11100,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Lof palauttaa avoimen tiedoston koon tavuina."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11136,15 +11109,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (tiedostonro1)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11154,15 +11118,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11181,78 +11136,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Jos halutaan selvittää koko tiedostosta, joka ei ole auki, käytetään <emph>FileLen</emph>-funktiota."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Täytyy olla variant-(yleis)tyyppiä"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Sijainti aloitettaessa"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Tämä on ensimmäinen rivi tekstiä\" REM Täytetään rivi tekstillä"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Tämä on toinen tekstirivi\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Kolmas rivi tekstiä\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,, \"Tämä on toinen tekstirivi\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Tämä on teksti tietueessa 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11937,15 +11820,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Katso myös: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11955,15 +11829,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr ((tiedostonro1 As Integer, attribuutti1 As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11973,15 +11838,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer-tyypin kokonaisluku"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12072,15 +11928,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (tiedosto avattu binääritilaan)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12090,23 +11937,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Tämä on tekstirivi.\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Saantitapa\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Tiedostoattribuutti\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12666,15 +12513,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Poistaa tiedoston levyltä."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12684,15 +12522,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill tiedosto1 As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12702,23 +12531,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Tiedosto1:</emph> merkkijonolauseke, joka määrittää tiedoston yksikäsitteisesti. Voidaan käyttää myös <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL-esitysmuotoa</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Tiedosto pitää olla luotu etukäteen"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17760,15 +17580,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Lause tekee mahdolliseksi virheen myöhemmin tapahtuessa virheenkäsittelyrutiiniin siirtymisen tai ohjelman jatkamisen."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17787,15 +17598,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17841,15 +17643,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "On Error GoTo -lausetta käytetään vastamaan makrossa tapahtuneisiin virheisiin."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17859,14 +17652,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Tämä on tekstirivi.\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Kaikki tiedostot suljetaan\",0,\"Virhe\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19299,149 +19092,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>operaattori MOD (matemaattinen)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Mod palauttaa jakolaskun jakojäännöksen."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaksi:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "tulos = lauseke1 MOD lauseke2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Palautusarvo:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer-tyypin kokonaisluku"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrit:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Tulos:</emph> numeerinen muuttuja, johon MOD-operaation tulos sijoitetaan."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Lauseke1, lauseke2:</emph> mitkä tahansa numeeriset lausekkeet, joilla halutaan suorittaa jakolasku."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Esimerkki:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "tulos = lauseke1 MOD lauseke2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 ' palauttaa arvon 0 (tai 1 pyöristyksen vuoksi)"
+msgid "Integer"
+msgstr "Integer-tyypin kokonaisluku"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 ' palauttaa arvon 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 ' palauttaa arvon 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 ' palauttaa arvon 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 ' palauttaa arvon 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 ' palauttaa arvon 0,5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30288,33 +30090,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Vertailuoperaattorit"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Vertailuoperaattorit</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Käytettävissä olevat vertailuoperaattorit kuvaillaan oheisena."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared/03.po b/source/fi/helpcontent2/source/text/sbasic/shared/03.po
index 49c537a900a..1b43060c335 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/fi/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/scalc/01.po b/source/fi/helpcontent2/source/text/scalc/01.po
index 197b8e96129..d040864a9e7 100644
--- a/source/fi/helpcontent2/source/text/scalc/01.po
+++ b/source/fi/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/fi/>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr ""
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index b9d89d82695..22fb6da7d34 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-11-06 12:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/fi/>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Määritä makro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/fi/helpcontent2/source/text/swriter/01.po b/source/fi/helpcontent2/source/text/swriter/01.po
index c7853c4589d..dacfc487358 100644
--- a/source/fi/helpcontent2/source/text/swriter/01.po
+++ b/source/fi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/fi/>\n"
@@ -28592,23 +28592,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Luettelosta valittua kohdetta siirretään nuolipainikkeista napsauttaen nuolen suuntaan.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Sähköpostiviesti"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Sähköpostiviesti"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28925,13 +28925,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index b79584a2128..58633f89776 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-05 01:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/fi/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Virkkeen ensimmäinen kirjaimen isoksi muuttamisen lopettaminen"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
index a2d560e87da..5b6d1072bc4 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-13 13:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fi/>\n"
@@ -28720,6 +28720,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Sijainti ja koko"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index 4a62b7714f7..33de3d36d75 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fi/>\n"
@@ -2920,7 +2920,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Käyttäjän sallitaan sijoittaa asiakirjaansa muokattuja tietokenttiä."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 7d0023a71ec..8ab76859e05 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-13 13:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fi/>\n"
@@ -9786,6 +9786,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Mukautettu"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20034,14 +20046,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Valitse asiakirja pohjaksi joukkokirjeeseen"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/fi/vcl/messages.po b/source/fi/vcl/messages.po
index d2491bbdd56..a78ac7628be 100644
--- a/source/fi/vcl/messages.po
+++ b/source/fi/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-04 19:36+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/fi/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Erotin"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index d7d3b04eb45..d08d0c8dbac 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-12-22 06:36+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fr/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Assigne des macros à des événements de programme. La macro assignée s'éxécute automatiquement chaque fois que l'événement sélectionné intervient."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Caractéristiques des polices"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Aperçu"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Sélectionnez et appliquez des fonctionnalités typographiques de polices à des caractères."
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Paramétrages de police pour les sources HTML, Basic et SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Infoballons"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Affiche un texte d'aide lorsque vous placez le curseur sur une icône, une commande de menu ou un contrôle de boîte de dialogue."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Afficher l'alerte « L'aide locale n'est pas installée »"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Afficher la boîte de dialogue « Astuces du jour » au démarrage"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Aide"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utiliser les boîtes de dialogue %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boîtes de dialogue ouvrir/enregistrer"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utiliser les boîtes de _dialogue %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Boîtes de dialogue Imprimer"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impression : spécification du statut « Document modifié »"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Spécifie si l'impression du document est considérée comme une modification."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Statut du document"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpréter _comme années entre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Définit une plage de dates, dans laquelle le système reconnaît une année à deux chiffres."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "et "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Années (deux chiffres)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collecter des données d'utilisation et les envoyer à The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Envoyer les données d'utilisation pour aider The Document Foundation à améliorer l'utilisabilité du logiciel."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Envoyer les rapports de crash à The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Aider à améliorer %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Charger %PRODUCTNAME lors du démarrage du système"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activer le démarrage rapide de la zone de notification"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Démarrage rapide de %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Applications par défaut Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Associations de fichiers %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Spécifie les paramètres généraux de %PRODUCTNAME."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Paramètres de mise en page"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/fr/helpcontent2/source/auxiliary.po b/source/fr/helpcontent2/source/auxiliary.po
index 6b9ab0dfa57..227b543f7db 100644
--- a/source/fr/helpcontent2/source/auxiliary.po
+++ b/source/fr/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-05-23 22:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/fr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562257292.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Références des commandes"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Fonctions, déclarations et opérateurs"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Liste alphabétique des fonctions, déclarations et opérateurs"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared.po b/source/fr/helpcontent2/source/text/sbasic/shared.po
index 7814f146875..a9c356f7dae 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-02-21 17:36+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/fr/>\n"
@@ -9928,14 +9928,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile, fonction</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">Fonction FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9946,24 +9946,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Renvoie le prochain numéro de fichier disponible en vue de l'ouverture d'un fichier. Cette fonction permet d'ouvrir un fichier en affectant à celui-ci un numéro non utilisé par un fichier déjà ouvert."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valeur de retour :"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9973,15 +9955,6 @@ msgctxt ""
msgid "Integer"
msgstr "Nombre entier"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9991,33 +9964,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Cette fonction ne peut être employée qu'immédiatement avant une instruction Open. FreeFile renvoie le prochain numéro de fichier disponible, mais ne le réserve pas."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Première ligne de texte\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Autre ligne de texte\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10162,6 +10108,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Ceci est une autre ligne de texte.\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10216,14 +10189,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Ceci est une nouvelle ligne de texte.\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Tous les fichiers seront fermés.\",0,\"Erreur\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10369,50 +10342,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Position au début"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Ceci est la première ligne de texte\" ' Remplir la ligne avec du texte"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Ceci est la seconde ligne de texte.\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Ceci est la troisième ligne de texte.\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Ceci est un nouveau texte.\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Ceci est le texte de l'enregistrement 20.\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10432,14 +10468,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input, instruction</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Instruction Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10882,15 +10918,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Détermine si le pointeur de fichier a atteint la fin d'un fichier."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10900,15 +10927,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valeur de retour :"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10918,15 +10936,6 @@ msgctxt ""
msgid "Bool"
msgstr "Logique (Bool)"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10945,33 +10954,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Servez-vous de la fonction EOF pour éviter de produire des erreurs dues à des tentatives de saisie au-delà de la fin d'un fichier. Lorsque vous utilisez l'instruction Input ou Get pour lire dans un fichier, le pointeur de fichier avance en fonction du nombre d'octets lus. Une fois la fin du fichier atteinte, la fonction EOF renvoie la valeur \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Première ligne de texte\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Autre ligne de texte\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11116,15 +11098,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Renvoie la taille d'un fichier ouvert, en octets."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11134,15 +11107,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valeur de retour :"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11152,15 +11116,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11179,78 +11134,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Pour connaître la longueur d'un fichier qui n'est pas ouvert, servez-vous de la fonction <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Doit être un variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position au démarrage"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Ceci est la première ligne de texte.\" REM Remplir la ligne avec du texte"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Ceci est la seconde ligne de texte.\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Ceci est la troisième ligne de texte.\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Ceci est une nouvelle ligne de texte.\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Ceci est le texte de l'enregistrement 20.\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11935,15 +11818,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Voir aussi : <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open.\">Open.</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11953,15 +11827,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valeur de retour :"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11971,15 +11836,6 @@ msgctxt ""
msgid "Integer"
msgstr "Nombre entier"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12070,15 +11926,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (fichier ouvert en mode binaire)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12088,23 +11935,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ceci est une ligne de texte.\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Mode d'accès\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Attribut de fichier\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12664,15 +12511,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Supprime un fichier d'un disque."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12682,15 +12520,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12700,23 +12529,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File :</emph> expression au format chaîne de caractères contenant une spécification de fichier non ambiguë. Vous pouvez également utiliser la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"notation URL\">notation URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Le fichier doit être créé à l'avance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17758,15 +17578,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Active une routine de gestion des erreurs suite à une erreur, ou reprend l'exécution du programme."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17785,15 +17596,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17839,15 +17641,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "L'instruction On Error GoTo est utilise pour réagir aux erreurs qui surviennent dans une macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemple :"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17857,14 +17650,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ceci est une ligne de texte.\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Tous les fichiers seront fermés.\",0,\"Erreur\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19297,149 +19090,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD opérateur (mathématique)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Opérateur Mod\">Opérateur Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Renvoie le reste entier d'une division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntaxe :"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valeur de retour :"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Nombre entier"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paramètres :"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
+"help.text"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
+
+#. tjLmf
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result :</emph> toute variable numérique contenant le résultat de l'opération MOD."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. uVobi
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id3147560\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2 :</emph> toute expression numérique à diviser."
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. PEAiU
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3153380\n"
"help.text"
-msgid "Example:"
-msgstr "Exemple :"
+msgid "Integer"
+msgstr "Nombre entier"
-#. ucwCQ
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 mod 2.5 ' renvoie 0"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' renvoie 4"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 mod 5 ' renvoie 0"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' renvoie 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 mod 10 ' renvoie 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' renvoie 0,5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30286,33 +30088,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr "Fonctions <link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> et <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link>"
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Opérateurs de comparaison"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Opérateurs de comparaison\">Opérateurs de comparaison</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Cette section décrit les opérateurs de comparaison disponibles."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared/03.po b/source/fr/helpcontent2/source/text/sbasic/shared/03.po
index 83172d308f9..a2ea319bb5e 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/fr/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-02-09 20:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/fr/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/01.po b/source/fr/helpcontent2/source/text/scalc/01.po
index f5184dff969..c29f6ebd288 100644
--- a/source/fr/helpcontent2/source/text/scalc/01.po
+++ b/source/fr/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-05 01:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/fr/>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "CTXT"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Renvoie un nombre en tant que texte avec un nombre défini de décimales et des séparateurs de milliers facultatifs.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "CTXT(nombre;décimales[;pas_de_séparateurs_de_milliers])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>nombre</emph> représente le nombre qui doit être formaté."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>décimales</emph> représente le nombre de décimales à afficher."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>pas_de_séparateurs_de_milliers</emph> (facultatif) détermine si le séparateur de milliers est utilisé. Si ce paramètre est un nombre différent de 0, le séparateur de milliers est supprimé. Si ce paramètre est égal à 0 ou s'il est manquant, le séparateur de milliers de votre <link href=\"text/shared/optionen/01140000.xhp\" name=\"paramétrage local actuel\">paramétrage local actuel</link> est affiché."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=CTXT(1234567,89;3)</item> renvoie 1 234 567,890 comme chaîne de texte."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=CTXT(1234567,89;3;1)</item> renvoie 1234567,890 comme chaîne de texte."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index f4ed26cb870..fa794a2e11a 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-30 10:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/fr/>\n"
@@ -25298,13 +25298,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41813,14 +41813,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assigner une macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Ouvre le <link href=\"text/shared/01/06130000.xhp\">Sélecteur de macro</link> afin d'assigner une macro à l'événement sélectionné.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/01.po b/source/fr/helpcontent2/source/text/swriter/01.po
index 39d3d779a8b..1021af40da4 100644
--- a/source/fr/helpcontent2/source/text/swriter/01.po
+++ b/source/fr/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-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-01-21 14:36+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/fr/>\n"
@@ -28592,23 +28592,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Sélectionnez un élément dans la liste et cliquez sur l'un des boutons fléchés pour déplacer cet élément.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28925,14 +28925,14 @@ msgctxt ""
msgid "Properties"
msgstr "Propriétés"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
-msgstr "<ahelp hid=\".\">Ouvre la boîte de dialogue <link href=\"text/swriter/01/mm_emabod.xhp\">Courriel</link> dans laquelle vous pouvez rédiger les courriel des fichiers de publipostage qui sont envoyés comme pièces jointes.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgstr ""
#. bARe2
#: mm_emailmergeddoc.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/guide.po b/source/fr/helpcontent2/source/text/swriter/guide.po
index b258cf59076..727c670e1d3 100644
--- a/source/fr/helpcontent2/source/text/swriter/guide.po
+++ b/source/fr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-19 16:40+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/fr/>\n"
@@ -620,14 +620,14 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Pour arrêter la mise en majuscule de la première lettre d'une phrase"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
-msgstr "Choisissez <menuitem>Outils - Options d'AutoCorrection</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
+msgstr ""
#. 6TQxg
#: auto_off.xhp
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
index 47fe895f0c6..1101d434a86 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-14 22:09+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fr/>\n"
@@ -28719,6 +28719,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Position et taille"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/fr/sfx2/messages.po b/source/fr/sfx2/messages.po
index 4a3e5df2a07..918faef7dba 100644
--- a/source/fr/sfx2/messages.po
+++ b/source/fr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-12-31 19:36+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fr/>\n"
@@ -2928,7 +2928,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Permet d'assigner des champs d'informations personnalisées au document."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index 3781e732f75..e052dd11a06 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-17 01:50+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fr/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personnaliser"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Ouvre une boîte de dialogue pour la sélection d'un modèle."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Sélectionner le document de base pour le publipostage"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Spécifiez le document à utiliser comme base pour le document de mailing."
diff --git a/source/fr/vcl/messages.po b/source/fr/vcl/messages.po
index ef8e41f1d5f..082800a6f54 100644
--- a/source/fr/vcl/messages.po
+++ b/source/fr/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2020-12-14 08:58+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/fr/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Séparateur"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/fur/cui/messages.po b/source/fur/cui/messages.po
index be288d20c7a..b0398ce7d4a 100644
--- a/source/fur/cui/messages.po
+++ b/source/fur/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-01-15 15:40+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fur/>\n"
@@ -3550,10 +3550,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8985,6 +8985,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Al assegne lis macro a events dal program. Lis macros assegnadis a vegnin eseguidis in automatic ogni volte che si verifiche l'event selezionât."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9286,13 +9304,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14369,157 +14387,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr ""
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr ""
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17221,33 +17245,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po
index 6a0d59619f5..57eb9e78ea0 100644
--- a/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fur/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-05-25 18:05+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fur/>\n"
@@ -28720,6 +28720,16 @@ msgctxt ""
msgid "Position and Size"
msgstr ""
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/fur/sfx2/messages.po b/source/fur/sfx2/messages.po
index 474c13957af..5271755fc5d 100644
--- a/source/fur/sfx2/messages.po
+++ b/source/fur/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2851,7 +2851,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/fur/sw/messages.po b/source/fur/sw/messages.po
index 28fddfa8bb0..dcce5741430 100644
--- a/source/fur/sw/messages.po
+++ b/source/fur/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9776,6 +9776,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr ""
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20021,14 +20033,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/fur/vcl/messages.po b/source/fur/vcl/messages.po
index d0cf5c395e3..a2771f3fe7e 100644
--- a/source/fur/vcl/messages.po
+++ b/source/fur/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1156,8 +1156,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index 1ba124bb768..b13eacf38a9 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fy/>\n"
@@ -3548,11 +3548,11 @@ 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 "De Groepearre ynterfaasje ferskaft tagong ta funksjes yn groepen, mei ikoanen foar de meast brûkte funksjes en dellûk menu's foar oaren. Dizze folsleine fariant jout de foarkar oan funksjes en wat grutter dan de oaren."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "De Groepearre kompakt ynterfaasje jout tagong ta funksjes yn groepen, mei ikoanen foar de meast brûkte funksjes en dellûk menu's foar oaren. Dizze kompakte fariant jouty de foarkar oan fertikale romte."
+msgid "The Groupedbar 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
@@ -8985,6 +8985,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Wiist makro's ta oan programma barren. De tawiisde makro wurdt hieltyd útfierd wannear it selektearre barren him foardocht."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9286,13 +9304,13 @@ msgid "Font Features"
msgstr "Lettertype funksjes"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Foarbyld"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Selektearje typpografyske kernmerken foar lettertypen en pas se ta."
@@ -14371,157 +14389,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Lettertype ynstellingen foar HTML-, Basic- en SQL-boarnen"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Utwreide help"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Lit in Help tekst sjen as jo it rinnerke op in ikoan, menu opdracht of bestjoerring elemint yn in dialoochskerm sette."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "\"Gjin help help sûnder ferbining ynstallearre\" popup sjen litte"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Lit \"Tip fan de dei\" dialoochskerm sjen by it úteinsetten"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME dialoochskerm br_ûke"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoochskerm Iepenje/Bewarje"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _dialoochskerm brûke"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoochskerm printsje"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printsje set de tastân op \"dokumint feroare\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Jout oan of it printsjen fan in dokumint as in feroaring jild."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumint tastân"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Ynterpretearren as jierren tusken "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Beskaat in datum berik, wêryn it systeem in twa-sifer jier werkend."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jier (twa sifers)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Gegevens brûkme fersamelje en stjoer it nei The Dokument Foudation ta"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Stjoe_r ferûngelike rapporten nei The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te ferbetterjen"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME lade as it systeem úteinset"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Fluchstarter op systeembalke ynskeakelje"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Fluchstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows standert apps"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME triem assosjaasjes"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17222,33 +17246,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Yndieling ynstellingen"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index e81e12545b6..118903a8aaf 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/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-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fy/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posysje en grutte"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/fy/sfx2/messages.po b/source/fy/sfx2/messages.po
index 5c0ab7e8040..cef0109f4fb 100644
--- a/source/fy/sfx2/messages.po
+++ b/source/fy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-11 05:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fy/>\n"
@@ -2928,7 +2928,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Hjir kinne jo fjilden mei brûkers ynformaasje oan jo dokumint tawize."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index 31048192ca1..27374c9c15b 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-22 13:07+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fy/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Oanpast"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Iepenet in dialoochskerm om in sjabloan te selektearjen."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Begjin dokumint foar standertbrief selektearje"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "It dokumint dat jo as basis foar de standertbrief brûke wolle oantsjutte."
diff --git a/source/fy/vcl/messages.po b/source/fy/vcl/messages.po
index 1cdd5492d3f..ee52dfb7822 100644
--- a/source/fy/vcl/messages.po
+++ b/source/fy/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-24 20:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/fy/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Skiedingsteken"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/ga/cui/messages.po b/source/ga/cui/messages.po
index 5acc184d96b..a92f392e0a1 100644
--- a/source/ga/cui/messages.po
+++ b/source/ga/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ga/>\n"
@@ -3549,10 +3549,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8982,6 +8982,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9283,13 +9301,13 @@ msgid "Font Features"
msgstr "Clóghnéithe"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Réamhamharc"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14368,157 +14386,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Socruithe Cló d'Fhoinsí HTML, Basic agus SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "L_eideanna breisithe"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Taispeáin preabfhuinneog \"Níl cabhair as líne suiteáilte\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cabhair"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ú_sáid dialóga %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialóga Oscail/Sábháil"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ú_sáid dialóga %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialóga Priontála"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Socraíonn _priontáil an stádas \"cáipéis athraithe\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stádas na Cáipéise"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Léigh mar bhliain idir "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "agus "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bliain (Dhá Dhigit)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Bailigh sonraí úsáide agus seol chuig The Document Foundation iad"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Cabhraigh linn %PRODUCTNAME a fheabhsú"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Luchtaigh %PRODUCTNAME i rith thosú an chórais"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Cumasaigh an meardhúisire i dtráidire an chórais"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Meardhúisire %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17219,33 +17243,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Socruithe an Leagain Amach"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
index e8f1bddf6b4..20f9b5acffe 100644
--- a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-08-15 22:35+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ga/>\n"
@@ -28719,6 +28719,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Ionad agus Méid"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/ga/sfx2/messages.po b/source/ga/sfx2/messages.po
index 9c83c461fbc..8eca3dc57a6 100644
--- a/source/ga/sfx2/messages.po
+++ b/source/ga/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ga/>\n"
@@ -2915,7 +2915,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index ff7077754a8..abaa58e17d1 100644
--- a/source/ga/sw/messages.po
+++ b/source/ga/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ga/>\n"
@@ -9803,6 +9803,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Saincheaptha"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20043,14 +20055,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Roghnaigh cáipéis tosaigh le haghaidh postchumaisc"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/ga/vcl/messages.po b/source/ga/vcl/messages.po
index bb387acec63..7622b604e9a 100644
--- a/source/ga/vcl/messages.po
+++ b/source/ga/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ga/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/gd/cui/messages.po b/source/gd/cui/messages.po
index 7e9d0b8e014..5671e520ff6 100644
--- a/source/gd/cui/messages.po
+++ b/source/gd/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2019-08-21 12:42+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3546,10 +3546,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8979,6 +8979,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9280,13 +9298,13 @@ msgid "Font Features"
msgstr "Gleusan chruthan-clò"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Ro-shealladh"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14365,157 +14383,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Roghainnean nan cruthan-clò airson tùsan HTML, Basic is SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Gliocasan l_eudaichte"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Seall a’ phriob-uinneag “Cha deach a’ chobhair far loidhne a stàladh”"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cobhair"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Cle_achd còmhraidhean %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Còmhraidhean fosglaidh ⁊ sàbhalaidh"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Cleach_d còmhraidhean %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Còmhraidhean a' chlò-bhualaidh"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Suidhichidh an clò-bhualadh a' choir \"sgrìobhainn air atharrachadh\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Staid na sgrìobhainne"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Leugh mar àireamh de bhliadhna eadar "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "agus "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bliadhna (dà fhigear)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Cruinnich dàta cleachdaidh is cuir gun Document Foundation e"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Cuidich leinn a’ leasachadh %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Luchdaich %PRODUCTNAME rè tòiseachadh an t-siostaim"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Cuir an grad-thòisiche an comas ann an treidhe an t-siostaim"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Grad-thòisiche %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17216,33 +17240,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Roghainnean na co-dhealbhachd"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
index 78b65e9011b..9a45f179eb2 100644
--- a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-08-21 09:56+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -28719,6 +28719,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Ionad is meud"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/gd/sfx2/messages.po b/source/gd/sfx2/messages.po
index 02494ed83f0..a9b726a7adb 100644
--- a/source/gd/sfx2/messages.po
+++ b/source/gd/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-08-21 09:40+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2915,7 +2915,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index 1736922d609..8ebc9e2627b 100644
--- a/source/gd/sw/messages.po
+++ b/source/gd/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-04-23 08:16+0000\n"
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
"Language-Team: Gaelic <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/gd/>\n"
@@ -9796,6 +9796,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Gnàthaichte"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20036,14 +20048,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Tagh an sgrìobhainn tòiseachaidh airson co-aonadh a' phuist"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/gd/vcl/messages.po b/source/gd/vcl/messages.po
index 11d64093bf2..edbfd69cfac 100644
--- a/source/gd/vcl/messages.po
+++ b/source/gd/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2019-08-21 09:31+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index 38c5b458e58..f6362969b55 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/gl/>\n"
"Language: gl\n"
@@ -3548,11 +3548,11 @@ 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 "A interface de barra agrupada fornece acceso ás funcións en grupos, con iconas para as funcionalidades máis frecuentes e menús despregábeis para as demais. Esta variante completa dálle preferencia ás funcións e é lixeiramente maior que as demais."
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 "A interface de barra agrupada compacta fornece acceso a funcións en grupos, con iconas para as funcións máis empregadas e menús despregábeis para as demais. Esta variante compacta dálle preferencia ao espazo vertical."
+msgid "The Groupedbar 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
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr " Atribúe macros para programar eventos. A macro atribuída é executada automaticamente cada vez que o evento seleccionado ocorrer."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Características do tipo de letra"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Vista previa"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Seleccione e aplique recursos tipográficos de tipo de letra aos caracteres."
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Configuración de tipos de letra para HTML, Basic e SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Suxestións a_dicionais"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Mostra un texto de axuda ao pousar o apuntador sobre unha icona, un menú de ordes ou un control dunha caixa de diálogo."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Mostrar alerta cando a axuda local non estiver instalada"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Mostrar a «Suxestión do día» no inicio"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Axuda"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilizar as caixas de diálogo de %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Opcións de Abrir/Gardar"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar os _diálogos de %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialogos de impresión"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A im_presión do documento define o estado de «documento modificado»"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Especifica se a impresión do documento conta como modificación."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado do documento"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como anos entre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Define un intervalo de data, dentro do cal o sistema recoñece anos de dous díxitos."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ano (dous díxitos)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recoller datos de uso e envialos a The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Enviar datos de uso para axudar a The Document Foundation a mellorar a facilidade de uso do software."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "_Enviar informes de fallo a The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Axude a mellorar o %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME durante o arrinque do sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar o Iniciador rápido da barra de tarefas"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Iniciador rápido de %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Aplicacións predeterminadas do Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Asociacións de ficheiros do %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Especifica a configuración xeral de %PRODUCTNAME."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Arriba"
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
-msgstr ""
+msgstr "O fondo cobre as marxes"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
-msgstr ""
+msgstr "Calquera fondo cobre tamén as marxes da páxina"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
-msgstr ""
+msgstr "Se está activado, calquera fondo cobre a páxina enteira, incluídas as marxes. Se está desactivado, calquera fondo cobre a páxina só dentro das marxes."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Configuración da disposición"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -18317,14 +18347,14 @@ msgstr "O texto a partir do cal xerar o código QR."
#: cui/uiconfig/ui/qrcodegen.ui:132
msgctxt "qrcodegen|label_text"
msgid "URL/Text:"
-msgstr ""
+msgstr "URL/Texto:"
#. FoKEY
#. Set Margin around QR
#: cui/uiconfig/ui/qrcodegen.ui:147
msgctxt "qrcodegen|label_margin"
msgid "Margin:"
-msgstr ""
+msgstr "Marxe:"
#. i2kkj
#. Error Correction Level of QR code
@@ -18337,7 +18367,7 @@ msgstr "Corrección de erros:"
#: cui/uiconfig/ui/qrcodegen.ui:200
msgctxt "edit margin"
msgid "The margin surrounding the QR code."
-msgstr ""
+msgstr "A marxe na volta do código QR."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:217
diff --git a/source/gl/helpcontent2/source/auxiliary.po b/source/gl/helpcontent2/source/auxiliary.po
index 47beeb5c760..49a293a2fdc 100644
--- a/source/gl/helpcontent2/source/auxiliary.po
+++ b/source/gl/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-12 21:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/gl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547507552.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referencia das ordes"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funcións, instrucións e operadores"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Lista alfabética de funcións, instrucións e operadores"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared.po b/source/gl/helpcontent2/source/text/sbasic/shared.po
index 3cc4ac04547..4a08044f113 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-10-14 20:35+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Galician <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/gl/>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>Function DateValue</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">Function FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Devolve o seguinte número de ficheiro dispoñíbel para abrir un ficheiro. Utilice esta función para abrir un ficheiro usando un número que non estea en uso por un ficheiro aberto."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enteiro"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Esta función só pode usarse inmediatamente antes dunha instrución Open. FreeFile devolve o seguinte número de ficheiro dispoñíbel, mais non o reserva."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumero, \"Esta é unha nova liña de texto\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumero,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Esta é a primeira liña do texto\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Esta é a segunda liña do texto\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Esta é a terceira liña do texto\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumero,,\"Isto é un texto novo\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Este é o texto do rexistro 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Instrución Input</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Instrución Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determina se o apuntador de ficheiro chegou ao final do ficheiro."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (ExpresiónEnteiro As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF utilízase para evitar erros ao tentar obter datos despois do final dun ficheiro. Cando usa a instrución Input ou Get para ler dun ficheiro, o apuntador do ficheiro avanza de acordo co número de bytes lidos. Cando chega ao final do ficheiro, EOF devolve o valor \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Devolve o tamaño dun ficheiro aberto en bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (NúmeroFicheiro)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr ""
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sTexto As Variant REM debe ser unha variante"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumero,1 REM Posición ao comezo"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumero,, \"Esta é a primeira liña de texto\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Esta é a segunda liña do texto\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Esta é a terceira liña do texto\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumero,,\"Esta é unha nova liña de texto\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Este é o texto do rexistro 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (NúmeroFicheiro As Integer, Atributo As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Enteiro"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (ficheiro aberto en modo binario)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumero, 1 ),0,\"Modo de acceso\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumero, 2 ),0,\"Atributo de ficheiro\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Elimina un ficheiro do disco."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Ficheiro As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Activa unha rutina de tratamento de erros tras producirse un erro, ou retoma a execución do programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr "On [Local] Error {GoTo NomeEtiqueta | GoTo 0 | Resume Next}"
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>Operador MOD (matemático)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Devolve o resto enteiro dunha división."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxe:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultado = Expresión1 MOD Expresión2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Enteiro"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expresión1, Expresión2:</emph> Calquera parella de expresións numéricas que queira dividir."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Exemplo:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultado = Expresión1 MOD Expresión2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM devolve 0"
+msgid "Integer"
+msgstr "Enteiro"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM devolve 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM devolve 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM devolve 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM devolve 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM devolve 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30285,33 +30087,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadores de comparación"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Operadores de comparación</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Os operadores de comparación dispoñíbeis descríbense aquí."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared/03.po b/source/gl/helpcontent2/source/text/sbasic/shared/03.po
index 79008aa8775..e3a92a72a58 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/gl/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-02-25 09:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/gl/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index aabf7ae4a53..5b435fd4cc0 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-21 21:37+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/gl/>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXO"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\"> Devolve un número como texto cun número especificado de cifras decimais e miles separadores opcionais. </ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
-msgstr "FIXO(Número; Decimais [; SenSeparadorDeMillares])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
+msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph> Número </emph> refírese ao número a ser formatado."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph> Decimals </emph> refírese ao número de cifras decimais a mostrar."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph> NoThousandsSeparators </emph> (opcional) determina se a miles separador se usa. Se o parámetro é un número diferente de 0, o separador de milleiros suprímese. Se o parámetro é igual a 0 ou se está ausente por completo, os separadores de millares da súa <link href=\"text/shared/optionen/01140000.xhp\" name =\"locale actual configuración\"> configuración de localidade actual </link> aparecen."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">= FIXO (1.234.567,89; 3) </item> dá 1,234,567.890 como unha cadea de texto."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">= FIXO (1.234.567,89; 3; 1) </item> dá 1.234.567,890 como unha cadea de texto."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index e10191d6b9b..fdcfc4b7875 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-03 16:37+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/gl/>\n"
"Language: gl\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -40307,7 +40307,7 @@ msgctxt ""
"par_id991514298399076\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lets you customize %PRODUCTNAME menus for all modules.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Permite personalizar os menús do %PRODUCTNAME para todos os módulos.</ahelp>"
#. Mw7Ez
#: 06140100.xhp
@@ -40316,7 +40316,7 @@ msgctxt ""
"par_id3146873\n"
"help.text"
msgid "You can add new commands, modify existing commands, or rearrange the menu items. You can also add commands executed by macros and apply all kind of styles directly from the menu."
-msgstr ""
+msgstr "Pódense engadir ordes novas, modificar as existentes ou reorganizar os elementos do menú. Tamén é posíbel engadir ordes executadas por macros e aplicar todo tipo de estilos directamente desde o menú."
#. 5Pqu2
#: 06140100.xhp
@@ -40325,7 +40325,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <menuitem>Tools - Customize - Menus</menuitem> tab."
-msgstr ""
+msgstr "Escolla a lapela <menuitem>Ferramentas - Personalizar - Menús</menuitem>."
#. nzad5
#: 06140100.xhp
@@ -41090,7 +41090,7 @@ msgctxt ""
"par_id991514298399076\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lets you customize %PRODUCTNAME context menus for all modules.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Permite personalizar os menús do %PRODUCTNAME para todos os módulos.</ahelp>"
#. 6sEqB
#: 06140300.xhp
@@ -41099,7 +41099,7 @@ msgctxt ""
"par_id3146873\n"
"help.text"
msgid "You can add new commands, modify existing commands, or rearrange the context menu items. You can also add commands executed by macros and apply all kind of styles directly from the context menu."
-msgstr ""
+msgstr "Pódense engadir ordes novas, modificar as existentes ou reorganizar os elementos do menú. Tamén é posíbel engadir ordes executadas por macros e aplicar todo tipo de estilos directamente desde o menú."
#. bSfPs
#: 06140300.xhp
@@ -41108,7 +41108,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <menuitem>Tools - Customize - Context Menus</menuitem> tab."
-msgstr ""
+msgstr "Escolla a lapela <menuitem>Ferramentas - Personalizar - Menús</menuitem>."
#. dTLGx
#: 06140300.xhp
@@ -41351,7 +41351,7 @@ msgctxt ""
"par_id3150279\n"
"help.text"
msgid "<ahelp hid=\".\">Lets you customize $[officename] toolbars.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Permite personalizar as barras de ferramentas do $[officename].</ahelp>"
#. E7v4c
#: 06140400.xhp
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Atribuír macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index ab3a5235831..6231691f428 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-23 11:02+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/gl/>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\"> Seleccione un elemento da lista e prema no botón de frecha para mover o elemento.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaxe de correspondencia electrónico"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaxe de correspondencia electrónico"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index a8b5da7310d..be39a6d56db 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-23 11:02+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/gl/>\n"
@@ -620,13 +620,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Para Parar Capitalizando a primeira letra dunha sentenza"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index 8dd37118be9..7f582949b27 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/gl/>\n"
"Language: gl\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posición e tamaño"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
@@ -30056,7 +30066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Mostrar botóns de recolla de esquema"
#. 4hvcy
#: WriterCommands.xcu
@@ -30066,7 +30076,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Shows a button next to headings and subheadings to help with outline folding. Even without the button, you can do outline folding with the Navigator."
-msgstr ""
+msgstr "Mostra un botón a carón dos títulos e subtítulos para axudar a recoller o esquema. Mesmo sen o botón, é posíbel recoller o esquema co Navegador."
#. C5mHk
#: WriterCommands.xcu
@@ -35426,7 +35436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Outline Folding"
-msgstr ""
+msgstr "Alternar recolla de esquema"
#. mByUW
#: WriterCommands.xcu
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index 83de2e9da74..05a0867c423 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-22 13:07+0000\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/gl/>\n"
"Language: gl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562230106.000000\n"
#. WDjkB
@@ -8936,13 +8936,13 @@ msgstr "Seleccione unha resolución alta para unha visualización de diapositiva
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1186
msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
-msgstr ""
+msgstr "Full HD (1_920 × 1080 píxeles)"
#. GuDqe
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1197
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
msgid "Select a full hd resolution for a very high quality slide display."
-msgstr ""
+msgstr "Seleccione unha resolución alta completa para unha visualización de diapositivas de moi alta calidade."
#. zsvW6
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1213
diff --git a/source/gl/sfx2/messages.po b/source/gl/sfx2/messages.po
index 845db44a32b..ebbdc1bda46 100644
--- a/source/gl/sfx2/messages.po
+++ b/source/gl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-27 08:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/gl/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Permite asignarlle campos de información personalizada ao documento."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Pechar panel lateral"
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index 56eacd3c1b4..34c6c2586dd 100644
--- a/source/gl/sw/messages.po
+++ b/source/gl/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/gl/>\n"
"Language: gl\n"
@@ -1538,7 +1538,7 @@ msgstr "Texto da etiqueta da lista"
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "Referencia a metadatos"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
@@ -2291,7 +2291,7 @@ msgstr "Os valores desta lapela indicados en «Contén» na lapela Organizador r
#: sw/inc/strings.hrc:29
msgctxt "STR_STANDARD_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 current tab values specified in “Contains” are removed."
-msgstr ""
+msgstr "Os valores desta lapela establécense nos correspondentes do estilo indicado en «Herdar de» da lapela Organizador. En todos os casos, e tamén cando o valor de «Herdar de» é «Ningún», tamén se retiran os valores da lapela actual indicados en «Contén»."
#. x2EUX
#: sw/inc/strings.hrc:30
@@ -2321,13 +2321,13 @@ msgstr "Aplicar"
#: sw/inc/strings.hrc:34
msgctxt "STR_APPLY_TOOLTIP"
msgid "Applies modifications on all tabs without closing dialog. Cannot be reverted with Reset."
-msgstr ""
+msgstr "Aplica modificacións a todas as lapelas sen pechar a caixa de diálogo. Non é posíbel desfacelo con Restaurar."
#. FbPXG
#: sw/inc/strings.hrc:35
msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
-msgstr ""
+msgstr "Aplica todas as modificacións sen pechar a caixa de diálogo. Os valores gárdanse e non é posíbel desfacelo con Restaurar."
#. MvGmf
#. Format names
@@ -3360,7 +3360,7 @@ msgstr "Apaisado"
#: sw/inc/strings.hrc:214
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
-msgstr ""
+msgstr "Sen lista"
#. mGZHb
#: sw/inc/strings.hrc:215
@@ -5882,7 +5882,7 @@ msgstr "Desactivado"
#: sw/inc/strings.hrc:658
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Prema para alternar a recolla do esquema"
#. 44jEc
#: sw/inc/strings.hrc:659
@@ -5894,7 +5894,7 @@ msgstr "prema co botón dereito para incluír subniveis"
#: sw/inc/strings.hrc:660
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
-msgstr ""
+msgstr "Prema para alternar a recolla do esquema"
#. rkD8H
#: sw/inc/strings.hrc:661
@@ -5906,7 +5906,7 @@ msgstr "prema co botón dereito para incluír os subniveis"
#: sw/inc/strings.hrc:662
msgctxt "STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Recolla do esquema"
#. oBH6y
#: sw/inc/strings.hrc:663
@@ -5918,13 +5918,13 @@ msgstr "Alternar"
#: sw/inc/strings.hrc:664
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
msgid "Unfold All"
-msgstr ""
+msgstr "Abrir todo"
#. Cj4js
#: sw/inc/strings.hrc:665
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
msgid "Fold All"
-msgstr ""
+msgstr "Recoller todo"
#. 9Fipd
#: sw/inc/strings.hrc:667
@@ -6472,7 +6472,7 @@ msgstr "Definido polo usuario5"
#: sw/inc/strings.hrc:763
msgctxt "STR_AUTH_TYPE_LOCAL_FILE"
msgid "Local file"
-msgstr ""
+msgstr "Ficheiro local"
#. nsCwi
#: sw/inc/strings.hrc:764
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizado"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Abre un caixa de diálogo para seleccionar un modelo."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleccione o documento inicial para a combinación de correspondencia"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Indique que documento desexa empregar como base para o documento de combinación de correspondencia."
@@ -20214,7 +20232,7 @@ msgstr "Eliminar todo"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
-msgstr ""
+msgstr "Recolla do esquema"
#. EBK2E
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209
@@ -21973,7 +21991,7 @@ msgstr "Estilo de lista asignado"
#: sw/uiconfig/swriter/ui/numparapage.ui:147
msgctxt "numparapage|comboLB_NUMBER_STYLE"
msgid "No List"
-msgstr ""
+msgstr "Sen lista"
#. hRgAM
#: sw/uiconfig/swriter/ui/numparapage.ui:151
@@ -24307,13 +24325,13 @@ msgstr "Parágrafo"
#: sw/uiconfig/swriter/ui/paradialog.ui:32
msgctxt "paradialog|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "As modificacións feitas nesta lapela que non se graven serán obviadas."
#. Gw9vR
#: sw/uiconfig/swriter/ui/paradialog.ui:35
msgctxt "paradialog|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 "Restaurar todos os cambios feitos na lapela que se mostra aquí ás opcións presentes cando se abriu esta caixa de diálogo."
#. 6xRiy
#: sw/uiconfig/swriter/ui/paradialog.ui:159
@@ -27323,7 +27341,7 @@ msgstr "Organizador"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
-msgstr ""
+msgstr "Nomear e agochar os estilos definidos polo usuario"
#. 7o8No
#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
@@ -27335,7 +27353,7 @@ msgstr "Sen ordenar"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
-msgstr ""
+msgstr "Escoller un tipo de viñeta predefinido"
#. uCBn4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:264
@@ -27347,7 +27365,7 @@ msgstr "Ordenada"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
-msgstr ""
+msgstr "Escoller unha lista ordenada predefinida"
#. D9oKE
#: sw/uiconfig/swriter/ui/templatedialog16.ui:313
@@ -27359,7 +27377,7 @@ msgstr "Esquema"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:314
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
-msgstr ""
+msgstr "Escoller un formato de esquema predefinido"
#. Dp6La
#: sw/uiconfig/swriter/ui/templatedialog16.ui:362
@@ -27371,7 +27389,7 @@ msgstr "Imaxe"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:363
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
-msgstr ""
+msgstr "Escoller un símbolo de viñeta predefinido"
#. K55K4
#: sw/uiconfig/swriter/ui/templatedialog16.ui:411
@@ -27383,7 +27401,7 @@ msgstr "Posición"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
-msgstr ""
+msgstr "Modificar o sangrado, espazamento e aliñamento dos números ou viñetas de lista"
#. g5NQF
#: sw/uiconfig/swriter/ui/templatedialog16.ui:460
@@ -27395,7 +27413,7 @@ msgstr "Personalizar"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:461
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
-msgstr ""
+msgstr "Deseñe o seu propio formato de lista ou de esquema"
#. 6ozqU
#: sw/uiconfig/swriter/ui/templatedialog2.ui:8
@@ -29315,7 +29333,7 @@ msgstr "Configuración"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:586
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "Mo_strar botóns de recolla de esquema"
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:600
@@ -29327,7 +29345,7 @@ msgstr "I_ncluír subniveis"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:619
msgctxt "viewoptionspage|outlinelabel"
msgid "Outline Folding"
-msgstr ""
+msgstr "Recolla de esquema"
#. LZT9X
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:647
diff --git a/source/gl/vcl/messages.po b/source/gl/vcl/messages.po
index 55a55b879d8..2e3cfbbfb61 100644
--- a/source/gl/vcl/messages.po
+++ b/source/gl/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-24 20:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/gl/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Separador"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/gu/cui/messages.po b/source/gu/cui/messages.po
index 0c67fa7b8a8..7e112cca7cf 100644
--- a/source/gu/cui/messages.po
+++ b/source/gu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3562,10 +3562,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9145,6 +9145,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9453,13 +9471,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14698,161 +14716,167 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "HTML માટે ફોન્ટ સુયોજનો, આધાર અને સ્ત્રોત સ્ત્રોતો"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "વઘારાની ટિપ્પણી(_E)"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "મદદ"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME સંવાદો વાપરો(_U)"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ખોલો/સંગ્રહો સંવાદ"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME સંવાદો વાપરો(_d)"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "સંવાદોને છાપો"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "\"બદલેલ દસ્તાવેજ\" સ્થિતિ સમૂહોને છાપી રહ્યા છીએ (_P)"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Specifies whether the printing of the document counts as a modification."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "દસ્તાવેજ સ્થિતિ"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "ની વચ્ચે વર્ષો તરીકે અર્ષ સમજાવો (_I) "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Defines a date range, within which the system recognizes a two-digit year."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "અને "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "વર્ષ (બે આંકડા)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "સિસ્ટમને શરૂ કરવા દરમ્યાન %PRODUCTNAME ને લાવો"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter ને સક્રિય કરો"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Specifies the general settings for %PRODUCTNAME."
@@ -17608,34 +17632,40 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "દેખાવની સુયોજના"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/gu/helpcontent2/source/auxiliary.po b/source/gu/helpcontent2/source/auxiliary.po
index b5dfa6082b4..a15df98f009 100644
--- a/source/gu/helpcontent2/source/auxiliary.po
+++ b/source/gu/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/gu/helpcontent2/source/text/sbasic/shared.po b/source/gu/helpcontent2/source/text/sbasic/shared.po
index 82b28889b1f..f3a366f073c 100644
--- a/source/gu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile function</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return values:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integers"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"This is a new line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"This is a new line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,13 +10186,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. PwUYq
@@ -10366,49 +10339,112 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
msgstr ""
#. FrzSY
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input statement</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determines if the file pointer has reached the end of a file."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return values:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"This is a new line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"This is a new line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Returns the size of an open file in bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return values:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr ""
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return values:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integers"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (file open in binary mode)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Deletes a file from a disk."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Enables an error-handling routine after an error occurs, or resumes program execution."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,13 +17647,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. YAR7R
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Return values:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integers"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM returns 0"
+msgid "Integer"
+msgstr "Integers"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
+"help.text"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
+
+#. C5zCg
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Comparison Operators"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "The available comparison operators are described here."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/sbasic/shared/03.po b/source/gu/helpcontent2/source/text/sbasic/shared/03.po
index 5af9f8f0020..0f7200a1c77 100644
--- a/source/gu/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/gu/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/scalc/01.po b/source/gu/helpcontent2/source/text/scalc/01.po
index f19a30fbdd4..d558474e264 100644
--- a/source/gu/helpcontent2/source/text/scalc/01.po
+++ b/source/gu/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>No thousands separators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index b964ef460e4..5a713af564c 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assign Macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/gu/helpcontent2/source/text/swriter/01.po b/source/gu/helpcontent2/source/text/swriter/01.po
index 9c82b470819..2a44a0b4f3e 100644
--- a/source/gu/helpcontent2/source/text/swriter/01.po
+++ b/source/gu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the entry.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail message"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail message"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/gu/helpcontent2/source/text/swriter/guide.po b/source/gu/helpcontent2/source/text/swriter/guide.po
index 1f1c368931e..d325e282934 100644
--- a/source/gu/helpcontent2/source/text/swriter/guide.po
+++ b/source/gu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "To stop capitalizing the first letter of a sentence:"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
index 99618ba0729..10f6e134eed 100644
--- a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -29070,6 +29070,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "સ્થાન અને માપ"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
#, fuzzy
diff --git a/source/gu/sfx2/messages.po b/source/gu/sfx2/messages.po
index 7caaa1708f7..926b0ca2a6f 100644
--- a/source/gu/sfx2/messages.po
+++ b/source/gu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2956,7 +2956,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Allows you to assign custom information fields to your document."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index 53550a94efb..e1324a8763c 100644
--- a/source/gu/sw/messages.po
+++ b/source/gu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9995,6 +9995,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "વૈવિધ્ય"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20442,15 +20454,21 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "મેઈલ મર્જ માટે શરૂઆતી દસ્તાવેજ પસંદ કરો"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/gu/vcl/messages.po b/source/gu/vcl/messages.po
index 2fda36c131b..fb610367c42 100644
--- a/source/gu/vcl/messages.po
+++ b/source/gu/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1157,8 +1157,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/gug/cui/messages.po b/source/gug/cui/messages.po
index 672abd560eb..17cf28aee94 100644
--- a/source/gug/cui/messages.po
+++ b/source/gug/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-09-01 16:20+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: Guarani (Paraguayan) <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/gug/>\n"
@@ -3546,10 +3546,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8990,6 +8990,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9291,13 +9309,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14389,157 +14407,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Configuración de tipos de letra HTML, BASIC ha SQL peguarã"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Ñepytyvõ'i pyso"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pytyvõ"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Puru ñemongeta %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Eavri/Ñongatu Ñemongeta"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Puru _ñemongeta %PRODUCTNAME "
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Ñemongeta Impresión"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impresión reko atýpe ''documento oñemoambue va'ekue''"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Teko Documentogui"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar mba'éicha ára mbyte "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ára (Mokõi Dígitos)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hupi %PRODUCTNAME ñepyrũ sistema jave"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Myendy ÑepyrũPya'e systray"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "ÑepyrũPya'e %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17244,33 +17268,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Tenda-moambue Ta'angahai"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/gug/helpcontent2/source/auxiliary.po b/source/gug/helpcontent2/source/auxiliary.po
index 203cdfa3347..82fb4a815a2 100644
--- a/source/gug/helpcontent2/source/auxiliary.po
+++ b/source/gug/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-15 20:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562203919.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referencia de órdenes"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funciones, instrucciones y operadores"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Lista alfabética de funciones, instrucciones y operadores"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/gug/helpcontent2/source/text/sbasic/shared.po b/source/gug/helpcontent2/source/text/sbasic/shared.po
index f344bc56e2d..1d1cbacf108 100644
--- a/source/gug/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gug/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557855034.000000\n"
#. yzYVt
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile;función</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Función FreeFile\">Función FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Devuelve el siguiente número de archivo disponible para la apertura de un archivo. Esta función se utiliza para abrir un archivo usando un número que no esté en uso por un archivo abierto actualmente ."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Esta función solo se puede usar inmediatamente delante de una instrucción Open. FreeFile devuelve el número de archivo disponible, pero no lo reserva."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumero, \"Esta es otra línea de texto\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Este es un renglón de texto nuevo\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Todos los archivos se cerrarán\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumero,1 ' Posición al principio"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Esta es la primera línea de texto\" ' Rellenar la línea con texto"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumero,,\"Esto es un texto nuevo\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input;función</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Instrucción Input#\">Instrucción Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determina si el puntero de archivo ha llegado al final de éste."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (ExpresiónEntero As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Lógico"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "EOF se utiliza para evitar errores al intentar obtener datos más allá del final de un archivo. Cuando se utiliza la instrucción Input o Get para leer de un archivo, el puntero de archivo se avanza según el número de bytes leídos. Cuando se llega al final del archivo, EOF devuelve el valor \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumero, \"Primera línea de texto\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumero, \"Otra línea de texto\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Devuelve el tamaño de un archivo abierto en bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (NúmeroArchivo)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Largo"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Para obtener la longitud de un archivo que no está abierto, se utiliza la función <emph>FileLen</emph>."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sTexto As Variant REM Debe ser una variante"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumero,1 REM Posición al principio"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumero,, \"Esta es la primera línea de texto\" REM Rellenar con texto"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Print #iNumero, \"Esta es la segunda línea de texto\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Print #iNumero, \"Esta es la tercera línea de texto\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumero,,\"Esto es una línea de texto nueva\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumero,20,\"Este es el texto del registro 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Consulte también: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (NúmeroArchivo As Integer, Atributo As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Entero"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (archivo abierto en modo binario)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Este es un renglón de texto\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumero, 1 ),0,\"Modo de acceso\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumero, 2 ),0,\"Atributo de archivo\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Borra un archivo de un disco."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Archivo As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Archivo:</emph> Cualquier expresión de cadena que contenga una especificación de archivo inequívoca. También se puede usar la <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">notación URL</link>."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' El archivo debe crearse con antelación"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -15404,7 +15224,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "Returns the number of date or time intervals between two given date values."
-msgstr ""
+msgstr "Devuelve el número de intervalos de fecha o de hora entre dos fechas que se indiquen."
#. AzmeS
#: 03030120.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Habilita una rutina de manejo de errores después de producirse éstos o continúa la ejecución del programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "La instrucción On Error GoTo se utiliza para reaccionar a los errores que se producen en una macro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Este es un renglón de texto\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Todos los archivos se cerrarán\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>operador MOD (matemático)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operador Mod\">Operador Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Devuelve el resto entero de una división."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Resultado = Expresión1 MOD Expresión2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Valor de retorno:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Entero"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Resultado:</emph> Cualquier variable numérica que contenga el resultado de la operación MOD."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Expresión1, Expresión2:</emph> Las expresiones numéricas que se desea dividir."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Ejemplo:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Resultado = Expresión1 MOD Expresión2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' devuelve 0"
+msgid "Integer"
+msgstr "Entero"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' devuelve 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' devuelve 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' devuelve 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' devuelve 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' devuelve 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operadores de comparación"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Operadores de comparación</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Los operadores de comparación disponibles se describen aquí."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/gug/helpcontent2/source/text/sbasic/shared/03.po b/source/gug/helpcontent2/source/text/sbasic/shared/03.po
index bdc6270a839..a6302c91272 100644
--- a/source/gug/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/gug/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-03-30 18:07+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/es/>\n"
"Language: es\n"
@@ -5182,15 +5182,6 @@ 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 "Las propiedades o los métodos que tienen la indicación <emph>(7.2)</emph> están disponibles a partir de la versión 7.2 de %PRODUCTNAME."
-
#. nXGkZ
#: sf_dialog.xhp
msgctxt ""
@@ -5216,7 +5207,7 @@ msgctxt ""
"par_id491583668386455\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. ByVDE
#: sf_dialog.xhp
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
@@ -5450,7 +5459,7 @@ msgctxt ""
"par_id401612628879819\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. uW85z
#: sf_dialog.xhp
@@ -5504,7 +5513,7 @@ msgctxt ""
"par_id81612629836634\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. CK5vU
#: sf_dialog.xhp
@@ -5972,7 +5981,7 @@ msgctxt ""
"par_id491583668386455\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. KRYNv
#: sf_dialogcontrol.xhp
@@ -6836,7 +6845,7 @@ msgctxt ""
"par_id401612628879819\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "De solo lectura"
#. 2A2Ex
#: sf_dialogcontrol.xhp
@@ -11489,7 +11498,7 @@ msgctxt ""
"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 ""
+msgstr "<link href=\"text/sbasic/guide/translation.xhp\" name=\"Controls Translation\">Traducción de controles en el editor de diálogos</link>"
#. Ah5Gj
#: sf_platform.xhp
@@ -11543,7 +11552,7 @@ msgctxt ""
"par_id67160078807676\n"
"help.text"
msgid "The %PRODUCTNAME version"
-msgstr ""
+msgstr "La versión de %PRODUCTNAME"
#. BrEr7
#: sf_platform.xhp
@@ -11678,7 +11687,7 @@ msgctxt ""
"par_id541600788076645\n"
"help.text"
msgid "The number of central processing units."
-msgstr ""
+msgstr "El número de unidades centrales de procesamiento."
#. 89Lo8
#: sf_platform.xhp
diff --git a/source/gug/helpcontent2/source/text/scalc/01.po b/source/gug/helpcontent2/source/text/scalc/01.po
index 8955aaf3111..f397c132196 100644
--- a/source/gug/helpcontent2/source/text/scalc/01.po
+++ b/source/gug/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
@@ -4406,7 +4406,7 @@ msgctxt ""
"bm_id3148946\n"
"help.text"
msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Asistente para funciones;bases de datos</bookmark_value><bookmark_value>funciones;funciones de bases de datos</bookmark_value><bookmark_value>bases de datos;funciones en $[officename] Calc</bookmark_value>"
#. BX97Y
#: 04060101.xhp
@@ -4424,7 +4424,7 @@ msgctxt ""
"hd_id721616440441374\n"
"help.text"
msgid "Overview"
-msgstr ""
+msgstr "Información general"
#. RGkxy
#: 04060101.xhp
@@ -4433,7 +4433,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<variable id=\"datenbanktext\">The twelve functions in the Database category help you to analyze a simple database that occupies a rectangular spreadsheet area comprising columns and rows, with the data organized as one row for each record.</variable> The header cell of each column displays the name of the column and that name usually reflects the contents of each cell in that column."
-msgstr ""
+msgstr "<variable id=\"datenbanktext\">Las doce funciones de la categoría Base de datos le ayudan a analizar una base de datos sencilla que ocupa un área rectangular en una hoja de cálculo, compuesta de columnas y de filas, con los registros individuales organizados en filas.</variable> La celda de cabecera de cada columna muestra el nombre de esta y este nombre normalmente refleja el contenido de cada celda de esa columna en particular."
#. 8NQZ9
#: 04060101.xhp
@@ -4442,7 +4442,7 @@ msgctxt ""
"par_id631615842419413\n"
"help.text"
msgid "The functions in the Database category take three arguments as follows:"
-msgstr ""
+msgstr "Las funciones de la categoría Base de datos aceptan estos tres argumentos:"
#. pmE4Y
#: 04060101.xhp
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id101615842794525\n"
"help.text"
msgid "These arguments are described more fully below."
-msgstr ""
+msgstr "Estos argumentos se describen a detalle más abajo."
#. ykxDt
#: 04060101.xhp
@@ -4676,7 +4676,7 @@ msgctxt ""
"hd_id481615892281210\n"
"help.text"
msgid "Defining Search Criteria"
-msgstr ""
+msgstr "Definir criterios de búsqueda"
#. zTQX5
#: 04060101.xhp
@@ -4748,7 +4748,7 @@ msgctxt ""
"hd_id3150329\n"
"help.text"
msgid "Examples of Database Function Use"
-msgstr ""
+msgstr "Ejemplos de uso de las funciones de base de datos"
#. hyFuY
#: 04060101.xhp
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_id3152992\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. ChBDv
#: 04060101.xhp
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_id3155532\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Grado</emph>"
#. mt5xM
#: 04060101.xhp
@@ -4784,7 +4784,7 @@ msgctxt ""
"par_id3156448\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. Svp8Q
#: 04060101.xhp
@@ -4793,7 +4793,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "<emph>Distance</emph>"
-msgstr ""
+msgstr "<emph>Distancia</emph>"
#. BShmH
#: 04060101.xhp
@@ -4802,7 +4802,7 @@ msgctxt ""
"par_id3152899\n"
"help.text"
msgid "<emph>Weight</emph>"
-msgstr ""
+msgstr "<emph>Peso</emph>"
#. FUGeA
#: 04060101.xhp
@@ -4811,7 +4811,7 @@ msgctxt ""
"par_id3151240\n"
"help.text"
msgid "Andy"
-msgstr ""
+msgstr "Andrés"
#. eQx2T
#: 04060101.xhp
@@ -4820,7 +4820,7 @@ msgctxt ""
"par_id3152870\n"
"help.text"
msgid "Betty"
-msgstr ""
+msgstr "Beatriz"
#. HKBAA
#: 04060101.xhp
@@ -4829,7 +4829,7 @@ msgctxt ""
"par_id3155596\n"
"help.text"
msgid "Charles"
-msgstr ""
+msgstr "Carlos"
#. WCaYH
#: 04060101.xhp
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_id3147296\n"
"help.text"
msgid "Daniel"
-msgstr ""
+msgstr "Daniel"
#. L3gMx
#: 04060101.xhp
@@ -4847,7 +4847,7 @@ msgctxt ""
"par_id3150456\n"
"help.text"
msgid "Eva"
-msgstr ""
+msgstr "Eva"
#. bwR2v
#: 04060101.xhp
@@ -4856,7 +4856,7 @@ msgctxt ""
"par_id3145826\n"
"help.text"
msgid "Frank"
-msgstr ""
+msgstr "Franco"
#. TwrgJ
#: 04060101.xhp
@@ -4865,7 +4865,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "Greta"
-msgstr ""
+msgstr "Greta"
#. TmomQ
#: 04060101.xhp
@@ -4874,7 +4874,7 @@ msgctxt ""
"par_id3153078\n"
"help.text"
msgid "Harry"
-msgstr ""
+msgstr "Henrique"
#. qBHps
#: 04060101.xhp
@@ -4883,7 +4883,7 @@ msgctxt ""
"par_id3148761\n"
"help.text"
msgid "Irene"
-msgstr ""
+msgstr "Irene"
#. UDuZW
#: 04060101.xhp
@@ -4892,7 +4892,7 @@ msgctxt ""
"par_id221616245476190\n"
"help.text"
msgid "The following six examples use the database table above, combined with different search criteria areas."
-msgstr ""
+msgstr "Los seis ejemplos siguientes utilizan la tabla de la base de datos anterior en combinación con distintas áreas de criterios de búsqueda."
#. sPtvb
#: 04060101.xhp
@@ -4901,7 +4901,7 @@ msgctxt ""
"hd_id861616245631924\n"
"help.text"
msgid "Example 1"
-msgstr ""
+msgstr "Ejemplo 1"
#. cEWAG
#: 04060101.xhp
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id891616245640933\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. AsoFd
#: 04060101.xhp
@@ -4919,7 +4919,7 @@ msgctxt ""
"par_id451616245640933\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Grado</emph>"
#. Dw3a2
#: 04060101.xhp
@@ -4928,7 +4928,7 @@ msgctxt ""
"par_id151616245818988\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. TdY66
#: 04060101.xhp
@@ -4937,7 +4937,7 @@ msgctxt ""
"par_id481616245878460\n"
"help.text"
msgid "<emph>Distance</emph>"
-msgstr ""
+msgstr "<emph>Distancia</emph>"
#. ggUUj
#: 04060101.xhp
@@ -4946,7 +4946,7 @@ msgctxt ""
"par_id741616245891772\n"
"help.text"
msgid "<emph>Weight</emph>"
-msgstr ""
+msgstr "<emph>Peso</emph>"
#. BdjTH
#: 04060101.xhp
@@ -4982,7 +4982,7 @@ msgctxt ""
"hd_id191616246773750\n"
"help.text"
msgid "Example 2"
-msgstr ""
+msgstr "Ejemplo 2"
#. V4PCC
#: 04060101.xhp
@@ -4991,7 +4991,7 @@ msgctxt ""
"par_id71616246804093\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. KjH3p
#: 04060101.xhp
@@ -5000,7 +5000,7 @@ msgctxt ""
"par_id41616250394431\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Grado</emph>"
#. FsLvK
#: 04060101.xhp
@@ -5027,7 +5027,7 @@ msgctxt ""
"hd_id221616251986854\n"
"help.text"
msgid "Example 3"
-msgstr ""
+msgstr "Ejemplo 3"
#. kAXbc
#: 04060101.xhp
@@ -5036,7 +5036,7 @@ msgctxt ""
"par_id141616251871487\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. CQA2G
#: 04060101.xhp
@@ -5054,7 +5054,7 @@ msgctxt ""
"hd_id71616252395407\n"
"help.text"
msgid "Example 4"
-msgstr ""
+msgstr "Ejemplo 4"
#. kNw3F
#: 04060101.xhp
@@ -5063,7 +5063,7 @@ msgctxt ""
"par_id451616252413665\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. QPqDb
#: 04060101.xhp
@@ -5072,7 +5072,7 @@ msgctxt ""
"par_id431616252540783\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Edad</emph>"
#. 5zWEA
#: 04060101.xhp
@@ -5108,7 +5108,7 @@ msgctxt ""
"hd_id561616253067881\n"
"help.text"
msgid "Example 5"
-msgstr ""
+msgstr "Ejemplo 5"
#. yvXQo
#: 04060101.xhp
@@ -5117,7 +5117,7 @@ msgctxt ""
"par_id301616253073598\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. uDvpq
#: 04060101.xhp
@@ -5144,7 +5144,7 @@ msgctxt ""
"hd_id121616253593255\n"
"help.text"
msgid "Example 6"
-msgstr ""
+msgstr "Ejemplo 6"
#. 3RcET
#: 04060101.xhp
@@ -5153,7 +5153,7 @@ msgctxt ""
"par_id731616253599063\n"
"help.text"
msgid "<emph>Name</emph>"
-msgstr ""
+msgstr "<emph>Nombre</emph>"
#. PJCE2
#: 04060101.xhp
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIJO"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Devuelve un número como texto con un número especificado de decimales y separadores de miles opcionales.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Número</emph> hace referencia al número al que se va a dar formato."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Decimales</emph> hace referencia al número de posiciones decimales que se mostrarán."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>No_separar_millares</emph> (opcional) determina si se utiliza el separador de millares. Si el parámetro es un número no igual a 0, se elimina el separador de millares. Si el parámetro es igual a 0 o si no aparece en absoluto, se muestran los separadores de millares de la <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">configuración regional actual</link>."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIJO(1234567,89;3)</item> devuelve 1.234.567,890 como cadena de texto."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIJO(1234567,89;3)</item> devuelve 1234567,890 como una cadena de texto."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/gug/helpcontent2/source/text/sdatabase.po b/source/gug/helpcontent2/source/text/sdatabase.po
index e5b7796073d..788d601b0f0 100644
--- a/source/gug/helpcontent2/source/text/sdatabase.po
+++ b/source/gug/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"PO-Revision-Date: 2021-04-02 05:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
#. ugSgG
#: 02000000.xhp
@@ -697,7 +697,7 @@ msgctxt ""
"par_id3154791\n"
"help.text"
msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
+msgstr "Si pulsa dos veces en la línea que une dos campos enlazados o selecciona la orden del menú <emph>Insertar ▸ Relación nueva</emph>, podrá especificar el tipo de relación a través del cuadro de diálogo <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relaciones</emph></link>."
#. rAkmw
#: 02010100.xhp
@@ -3172,7 +3172,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "Password"
-msgstr ""
+msgstr "Contraseña"
#. 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\">Introduzca la contraseña nueva.</ahelp>"
#. FcJVt
#: 05000003.xhp
@@ -3190,7 +3190,7 @@ msgctxt ""
"hd_id3147275\n"
"help.text"
msgid "Confirm (password)"
-msgstr ""
+msgstr "Confirmar (contraseña)"
#. xkB4S
#: 05000003.xhp
@@ -3208,7 +3208,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Diseño de tabla"
#. 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\">Diseño de tabla</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 "En la ventana <emph>Diseño de tabla</emph> puede definir tablas nuevas o editar la estructura de una tabla existente."
#. 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 "La ventana tiene su propia barra de menús. Además, contiene esta orden nueva: <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Diseño de índice</emph></link>"
#. z6hA5
#: 05010000.xhp
@@ -3244,7 +3244,7 @@ msgctxt ""
"hd_id3152551\n"
"help.text"
msgid "Table definition area"
-msgstr ""
+msgstr "Área de definición de tabla"
#. 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\">En esta zona se define la estructura de la tabla.</ahelp>"
#. FfuwA
#: 05010000.xhp
@@ -3262,7 +3262,7 @@ msgctxt ""
"hd_id3153031\n"
"help.text"
msgid "Field Name"
-msgstr ""
+msgstr "Nombre de campo"
#. GiHyW
#: 05010000.xhp
@@ -3280,7 +3280,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Tipo de campo"
#. eK4to
#: 05010000.xhp
@@ -3316,7 +3316,7 @@ msgctxt ""
"par_id3155630\n"
"help.text"
msgid "The row headers contain the following context menu commands:"
-msgstr ""
+msgstr "Las cabeceras de las filas contienen las órdenes siguientes en el menú contextual:"
#. rd8Zn
#: 05010000.xhp
@@ -3325,7 +3325,7 @@ msgctxt ""
"hd_id3156330\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Cortar"
#. GVxeZ
#: 05010000.xhp
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "Cuts the selected row to the clipboard."
-msgstr ""
+msgstr "Corta la fila seleccionada y la envía al portapapeles."
#. JxTSq
#: 05010000.xhp
@@ -3343,7 +3343,7 @@ msgctxt ""
"hd_id3159177\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Copiar"
#. ZAjhE
#: 05010000.xhp
@@ -3352,7 +3352,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "Copies the selected row to the clipboard."
-msgstr ""
+msgstr "Copia la fila seleccionada en el portapapeles."
#. Q8awG
#: 05010000.xhp
@@ -3361,7 +3361,7 @@ msgctxt ""
"hd_id3156327\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Pegar"
#. 5AQBL
#: 05010000.xhp
@@ -3370,7 +3370,7 @@ msgctxt ""
"par_id3152472\n"
"help.text"
msgid "Pastes the content of the clipboard."
-msgstr ""
+msgstr "Pega el contenido del portapapeles."
#. aQCGh
#: 05010000.xhp
@@ -3379,7 +3379,7 @@ msgctxt ""
"hd_id3144511\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Eliminar"
#. 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\">Elimina la fila seleccionada.</ahelp>"
#. pD5B3
#: 05010000.xhp
@@ -3397,7 +3397,7 @@ msgctxt ""
"hd_id3147303\n"
"help.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Insertar filas"
#. kfUXp
#: 05010000.xhp
@@ -3415,7 +3415,7 @@ msgctxt ""
"hd_id3153524\n"
"help.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Clave primaria"
#. mmwbs
#: 05010000.xhp
@@ -3469,7 +3469,7 @@ msgctxt ""
"hd_id3154948\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Decimales"
#. FgVqm
#: 05010000.xhp
@@ -4243,7 +4243,7 @@ msgctxt ""
"hd_id3145272\n"
"help.text"
msgid "Set Default"
-msgstr ""
+msgstr "Predeterminar"
#. ktJ6K
#: 05020100.xhp
@@ -4252,7 +4252,7 @@ msgctxt ""
"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 ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">Si elimina la clave primaria correspondiente, se definirá un valor fijo para todos los campos de clave externa.</ahelp>"
#. x8A6E
#: 05030000.xhp
@@ -4261,7 +4261,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copy a Table by Drag-and-Drop"
-msgstr ""
+msgstr "Copiar una tabla con el método de arrastrar y colocar"
#. VdcaB
#: 05030000.xhp
@@ -4270,7 +4270,7 @@ msgctxt ""
"hd_id3154894\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Copy Query or Table by Drag-and-Drop</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Copiar consultas o tablas con el método de arrastrar y colocar</link>"
#. nDG9W
#: 05030000.xhp
@@ -4324,7 +4324,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "You can copy within the same database or between different databases."
-msgstr ""
+msgstr "Puede copiar en la misma base de datos o entre distintas bases de datos."
#. Ed5rp
#: 05030100.xhp
@@ -4333,7 +4333,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copy Table"
-msgstr ""
+msgstr "Copiar tabla"
#. kkUkn
#: 05030100.xhp
@@ -4342,7 +4342,7 @@ msgctxt ""
"hd_id3085157\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Copy Table</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Copiar tabla</link>"
#. sBC76
#: 05030100.xhp
@@ -4351,7 +4351,7 @@ msgctxt ""
"par_id3149264\n"
"help.text"
msgid "You can copy a table by dragging and dropping the table onto the table area of a database file window. The <emph>Copy table </emph>dialog appears."
-msgstr ""
+msgstr "Puede copiar una tabla arrastrándola y colocándola en el área de tablas dela ventana de un archivo de base de datos. Se abrirá el cuadro de diálogo <emph>Copiar tabla</emph>."
#. ciK5F
#: 05030100.xhp
@@ -4360,7 +4360,7 @@ msgctxt ""
"hd_id3154926\n"
"help.text"
msgid "Table name"
-msgstr ""
+msgstr "Nombre de tabla"
#. iFF9F
#: 05030100.xhp
@@ -4369,7 +4369,7 @@ msgctxt ""
"par_id3144740\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/name\">Specifies a name for the copy.</ahelp> Some databases only accept names containing eight or fewer characters."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/name\">Especifica un nombre para la copia.</ahelp> Ciertas bases de datos aceptan únicamente nombres con ocho caracteres o menos."
#. x78x3
#: 05030100.xhp
@@ -4378,7 +4378,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#. JvNbF
#: 05030100.xhp
@@ -4387,7 +4387,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "Definition and data"
-msgstr ""
+msgstr "Definición y datos"
#. TqTmF
#: 05030100.xhp
@@ -4396,7 +4396,7 @@ msgctxt ""
"par_id3150178\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/defdata\">Creates a 1:1 copy of the database table.</ahelp> The table definition and the complete data are copied. The table definition includes the table structure and format from different data fields, including special field properties. The field contents supply the data."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/defdata\">Crea una copia exacta de la tabla de base de datos.</ahelp> Se copia la definición de la tabla y la totalidad de los datos. La definición de la tabla incluye la estructura de esta y el formato de los distintos campos, incluidas las propiedades especiales de estos. El contenido de los campos proporciona los datos."
#. hezaD
#: 05030100.xhp
@@ -4405,7 +4405,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definición"
#. b2GpC
#: 05030100.xhp
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/def\">Copies only the table definition and not the corresponding data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/def\">Copia únicamente la definición de la tabla, no los datos correspondientes.</ahelp>"
#. RCvEj
#: 05030100.xhp
@@ -4441,7 +4441,7 @@ msgctxt ""
"hd_id3155535\n"
"help.text"
msgid "Append data"
-msgstr ""
+msgstr "Anexar datos"
#. aB4JD
#: 05030100.xhp
@@ -4459,7 +4459,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table."
-msgstr ""
+msgstr "La definición de tabla debe ser exactamente la misma para que los datos puedan copiarse. Los datos no se podrán copiar si un campo de datos de la tabla de destino presenta un formato distinto del que tiene el campo equivalente en la tabla de origen."
#. ADGPK
#: 05030100.xhp
@@ -4495,7 +4495,7 @@ msgctxt ""
"bm_id3149164\n"
"help.text"
msgid "<bookmark_value>primary keys; defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>claves primarias; definir</bookmark_value>"
#. odQAJ
#: 05030100.xhp
@@ -4504,7 +4504,7 @@ msgctxt ""
"hd_id3149164\n"
"help.text"
msgid "Create primary key"
-msgstr ""
+msgstr "Crear clave primaria"
#. T7Dmr
#: 05030100.xhp
@@ -4513,7 +4513,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Automatically generates a primary key data field and fills it with values.</ahelp> You should always use this field, since a primary key must always be available in order to edit the table."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Genera automáticamente un campo de datos con clave primaria y lo rellena con valores.</ahelp> Utilice este campo siempre, ya que una clave primaria debe estar siempre disponible para poder editar la tabla."
#. EhRtD
#: 05030100.xhp
@@ -4522,7 +4522,7 @@ msgctxt ""
"hd_id3146794\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nombre"
#. v9USa
#: 05030100.xhp
@@ -4540,7 +4540,7 @@ msgctxt ""
"par_id3151056\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Página siguiente</link>"
#. DDJC9
#: 05030200.xhp
@@ -4549,7 +4549,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Apply columns"
-msgstr ""
+msgstr "Aplicar columnas"
#. FnB9J
#: 05030200.xhp
@@ -4558,7 +4558,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Apply columns</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Aplicar columnas</link>"
#. 6b9Li
#: 05030200.xhp
@@ -4576,7 +4576,7 @@ msgctxt ""
"hd_id3155552\n"
"help.text"
msgid "Existing columns"
-msgstr ""
+msgstr "Columnas existentes"
#. NDcVA
#: 05030200.xhp
@@ -4585,7 +4585,7 @@ msgctxt ""
"hd_id3154751\n"
"help.text"
msgid "Left list box"
-msgstr ""
+msgstr "Cuadro de lista izquierdo"
#. AkHFX
#: 05030200.xhp
@@ -4603,7 +4603,7 @@ msgctxt ""
"hd_id3154823\n"
"help.text"
msgid "Right list box"
-msgstr ""
+msgstr "Cuadro de lista derecho"
#. KgGGQ
#: 05030200.xhp
@@ -4612,7 +4612,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Lists the fields that you want to include in the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Muestra los campos que desea incluir en la tabla que se ha copiado.</ahelp>"
#. VyQwS
#: 05030200.xhp
@@ -4621,7 +4621,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Buttons"
-msgstr ""
+msgstr "Botones"
#. NT8C3
#: 05030200.xhp
@@ -4639,7 +4639,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Página siguiente</link>"
#. gTg68
#: 05030300.xhp
@@ -4675,7 +4675,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "List box"
-msgstr ""
+msgstr "Cuadro de lista"
#. EqDjY
#: 05030300.xhp
@@ -4702,7 +4702,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "Field name"
-msgstr ""
+msgstr "Nombre de campo"
#. MNzaq
#: 05030300.xhp
@@ -4720,7 +4720,7 @@ msgctxt ""
"hd_id3156113\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Tipo de campo"
#. MmakP
#: 05030300.xhp
@@ -4729,7 +4729,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccione un tipo de campo.</ahelp>"
#. E9Z9q
#: 05030300.xhp
@@ -4747,7 +4747,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of characters for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduzca el número de caracteres para el campo de datos.</ahelp>"
#. FqaDj
#: 05030300.xhp
@@ -4756,7 +4756,7 @@ msgctxt ""
"hd_id3159176\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Decimales"
#. 4pH6B
#: 05030300.xhp
@@ -4774,7 +4774,7 @@ msgctxt ""
"hd_id3150276\n"
"help.text"
msgid "Default value"
-msgstr ""
+msgstr "Valor predeterminado"
#. uF2x5
#: 05030300.xhp
@@ -4792,7 +4792,7 @@ msgctxt ""
"hd_id3153087\n"
"help.text"
msgid "Automatic type recognition"
-msgstr ""
+msgstr "Reconocimiento automático de tipo"
#. KTPFP
#: 05030300.xhp
@@ -4828,7 +4828,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "Auto"
-msgstr ""
+msgstr "Automático"
#. KXrRC
#: 05030300.xhp
@@ -4873,7 +4873,7 @@ msgctxt ""
"hd_id3157958\n"
"help.text"
msgid "Source table"
-msgstr ""
+msgstr "Tabla de origen"
#. XA5ur
#: 05030400.xhp
@@ -4891,7 +4891,7 @@ msgctxt ""
"hd_id3166410\n"
"help.text"
msgid "Destination table"
-msgstr ""
+msgstr "Tabla de destino"
#. CHq7j
#: 05030400.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/01.po b/source/gug/helpcontent2/source/text/shared/01.po
index fe02708274d..59c01a9b999 100644
--- a/source/gug/helpcontent2/source/text/shared/01.po
+++ b/source/gug/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-24 12:37+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
"Language: es\n"
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id6930143\n"
"help.text"
msgid "When you use <menuitem>File - Save As</menuitem> and select a template filter to save a template in a directory that is <emph>not</emph> specified in the <emph>Templates</emph> path, then the documents based on that template will <emph>not</emph> be checked."
-msgstr ""
+msgstr "Si utiliza <menuitem>Archivo ▸ Guardar como</menuitem> y selecciona un filtro de plantillas para guardar como plantilla en un directorio que <emph>no</emph> se ha especificado en la ruta <emph>Plantillas</emph>, los documentos que se basen en tal plantilla <emph>no</emph> se comprobarán."
#. 6fFQH
#: 01020000.xhp
@@ -22433,7 +22433,7 @@ msgctxt ""
"bm_id3150620\n"
"help.text"
msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value><bookmark_value>changing;page size</bookmark_value><bookmark_value>changing;page margins</bookmark_value><bookmark_value>page margins</bookmark_value><bookmark_value>margins;defining</bookmark_value><bookmark_value>page size;defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>páginas;formato y numeración</bookmark_value><bookmark_value>formato;páginas</bookmark_value><bookmark_value>formatos de papel</bookmark_value><bookmark_value>bandejas de papel</bookmark_value><bookmark_value>impresoras;bandejas de papel</bookmark_value><bookmark_value>disposición;páginas</bookmark_value><bookmark_value>espacio para encuadernación</bookmark_value><bookmark_value>márgenes;páginas</bookmark_value><bookmark_value>medianil</bookmark_value><bookmark_value>cambiar;tamaño de página</bookmark_value><bookmark_value>cambiar;márgenes de página</bookmark_value><bookmark_value>márgenes de página</bookmark_value><bookmark_value>márgenes;definir</bookmark_value><bookmark_value>tamaño de página;definir</bookmark_value>"
#. 2VdNc
#: 05040200.xhp
@@ -22685,7 +22685,7 @@ msgctxt ""
"hd_id3145745\n"
"help.text"
msgid "Gutter"
-msgstr "Margen de lomo"
+msgstr "Encuadernación"
#. rvmBG
#: 05040200.xhp
@@ -22919,7 +22919,7 @@ msgctxt ""
"hd_id3150489\n"
"help.text"
msgid "Gutter position"
-msgstr "Posición de margen de lomo"
+msgstr "Posición de encuadernación"
#. Gs9qT
#: 05040200.xhp
@@ -22928,7 +22928,7 @@ msgctxt ""
"par_id0522200809473733\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/pageformatpage/comboGutterPosition\">Allows choosing if the current document's gutter shall be positioned at the left of the document's pages (default) or at top of the document's pages when the document is displayed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/pageformatpage/comboGutterPosition\">Le permite elegir si el espacio para la encuadernación del documento actual debe ubicarse a la izquierda (opción predeterminada) o arriba de las páginas al mostrarlo.</ahelp>"
#. niqBy
#: 05040200.xhp
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,14 +41812,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Asignar macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre el <link href=\"text/shared/01/06130000.xhp\">Selector de macros</link> para asignar una macro a la acción seleccionada.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/guide.po b/source/gug/helpcontent2/source/text/shared/guide.po
index 0707705c438..4df8309ee14 100644
--- a/source/gug/helpcontent2/source/text/shared/guide.po
+++ b/source/gug/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-23 11:02+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565287876.000000\n"
#. iharT
@@ -11345,7 +11345,7 @@ msgctxt ""
"hd_id981608909383980\n"
"help.text"
msgid "To Unlock a Docked Toolbar"
-msgstr ""
+msgstr "Para desbloquear una barra de herramientas acoplada"
#. hq3GB
#: floating_toolbar.xhp
@@ -11363,7 +11363,7 @@ msgctxt ""
"hd_id911608910290237\n"
"help.text"
msgid "To Lock a Docked Toolbar"
-msgstr ""
+msgstr "Para bloquear una barra de herramientas acoplada"
#. 6DT2v
#: floating_toolbar.xhp
@@ -20417,7 +20417,7 @@ msgctxt ""
"par_id981566316947064\n"
"help.text"
msgid "The width of the margin surrounding the QR code."
-msgstr ""
+msgstr "La anchura del margen que rodea al código QR."
#. kZPNW
#: qrcode.xhp
diff --git a/source/gug/helpcontent2/source/text/simpress/guide.po b/source/gug/helpcontent2/source/text/simpress/guide.po
index 3d5ff5dc1d8..151984419ae 100644
--- a/source/gug/helpcontent2/source/text/simpress/guide.po
+++ b/source/gug/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-03-21 21:37+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1538695430.000000\n"
#. S83CC
@@ -2777,7 +2777,7 @@ msgctxt ""
"par_id3150650\n"
"help.text"
msgid "To start a slide show from the beginning, press <keycode>F5</keycode>."
-msgstr ""
+msgstr "Para iniciar un pase de diapositivas desde el principio, presione <keycode>F5</keycode>."
#. WaqYV
#: keyboard.xhp
diff --git a/source/gug/helpcontent2/source/text/smath/01.po b/source/gug/helpcontent2/source/text/smath/01.po
index 62f285101cd..619553b0510 100644
--- a/source/gug/helpcontent2/source/text/smath/01.po
+++ b/source/gug/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-19 17:31+0100\n"
-"PO-Revision-Date: 2021-03-19 16:40+0000\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559526082.000000\n"
#. QmNGE
@@ -212,7 +212,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr ""
+msgstr "<ahelp hid=\".\">Aumenta la escala de visualización de la fórmula en 25 %.</ahelp> El factor de escala actual se muestra en la barra de estado. Mediante el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"menú contextual\">menú contextual</link> se puede acceder a varias opciones de ampliación. El menú contextual del área de trabajo también contiene órdenes relacionadas."
#. EyasV
#: 03050000.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr ""
+msgstr "<ahelp hid=\".\">Disminuye la escala de visualización de la fórmula en 25 %.</ahelp> El factor de escala actual se muestra en la barra de estado. Mediante el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"menú contextual\">menú contextual</link> se puede acceder a varias opciones de ampliación. El menú contextual del área de trabajo también contiene órdenes relacionadas."
#. xSbDA
#: 03060000.xhp
@@ -284,7 +284,7 @@ msgctxt ""
"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#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 ""
+msgstr "<ahelp hid=\".\">Muestra la totalidad de la fórmula en el mayor tamaño posible para incluir todos los elementos. La fórmula se reduce o agranda para que todos sus elementos quepan en el área de trabajo.</ahelp> La escala actual aparece en la barra de estado. Mediante el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"menú contextual\">menú contextual</link> se pueden seleccionar algunos niveles de escala. El menú contextual en el área de trabajo también contiene opciones de escala. Estas opciones y sus iconos solo están disponibles en los documentos de Math, y no en los objetos incrustados de Math."
#. WGriM
#: 03070000.xhp
@@ -4658,7 +4658,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Puede escoger entre varias opciones para dar formato a una fórmula de $[officename] Math. Las opciones de formato se muestran en la parte inferior del panel Elementos. Dichas opciones además pueden encontrarse en el <link href=\"text/shared/00/00000001.xhp#contextmenu\" name=\"context menu\">menú contextual</link> del cuadro <emph>Órdenes</emph>."
#. oGTCQ
#: 03090700.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/01.po b/source/gug/helpcontent2/source/text/swriter/01.po
index 7eca382d9d1..e4535437bdc 100644
--- a/source/gug/helpcontent2/source/text/swriter/01.po
+++ b/source/gug/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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-22 13:10+0000\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
"Language: es\n"
@@ -16162,7 +16162,7 @@ msgctxt ""
"hd_id3143283\n"
"help.text"
msgid "Apply List Style"
-msgstr ""
+msgstr "Aplicar estilo de lista"
#. fFAFo
#: 05030800.xhp
@@ -16234,7 +16234,7 @@ msgctxt ""
"hd_id3151250\n"
"help.text"
msgid "Restart numbering at this paragraph"
-msgstr ""
+msgstr "Reiniciar numeración en este párrafo"
#. Fqcca
#: 05030800.xhp
@@ -16891,7 +16891,7 @@ msgctxt ""
"hd_id3154646\n"
"help.text"
msgid "Footnote area"
-msgstr "Área de la nota al pie"
+msgstr "Área de notas al pie"
#. ZmaA9
#: 05040600.xhp
@@ -22579,7 +22579,7 @@ msgctxt ""
"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 ""
+msgstr "Al momento de crear un estilo de lista, se asigna a este un nombre. El estilo de lista puede aplicarse a los párrafos o a un estilo de párrafo a través del apartado Aplicar estilo de lista de la pestaña <link href=\"text/swriter/01/05030800.xhp\" name=\"ApplyListStyle\">Esquema y lista</link>."
#. MU724
#: 05130004.xhp
@@ -25594,7 +25594,7 @@ msgctxt ""
"hd_id3148845\n"
"help.text"
msgid "Footnote area"
-msgstr "Área de la nota al pie"
+msgstr "Área de notas al pie"
#. vnEDK
#: 06080100.xhp
@@ -28593,23 +28593,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Seleccione un elemento de la lista y pulse en un botón de flecha para mover dicho elemento.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaje de correo electrónico"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Mensaje de correo electrónico"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28926,13 +28926,13 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedades"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/gug/helpcontent2/source/text/swriter/guide.po b/source/gug/helpcontent2/source/text/swriter/guide.po
index 0d516f16e4c..9c95cb41a2a 100644
--- a/source/gug/helpcontent2/source/text/swriter/guide.po
+++ b/source/gug/helpcontent2/source/text/swriter/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-03-30 16:12+0000\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
+"PO-Revision-Date: 2021-04-01 04:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235756.000000\n"
#. XAt2Y
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Para dejar de poner en mayúscula la primera letra de una frase"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
@@ -9554,7 +9554,7 @@ msgctxt ""
"par_id3153416\n"
"help.text"
msgid "Follow the scanning instructions."
-msgstr "Siga las instrucciones de escaneado."
+msgstr "Siga las instrucciones de digitalización."
#. AwAKw
#: insert_tab_innumbering.xhp
@@ -18635,7 +18635,7 @@ msgctxt ""
"par_id161615765280165\n"
"help.text"
msgid "Right-click in the list, then choose <menuitem>List - Bullets and Numbering</menuitem>."
-msgstr ""
+msgstr "Pulse con el botón secundario del ratón en la lista y elija <menuitem>Lista ▸ Numeración y viñetas</menuitem>."
#. xgmVR
#: using_numbered_lists2.xhp
@@ -18644,7 +18644,7 @@ msgctxt ""
"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 ""
+msgstr "Para cambiar la jerarquía de una lista ordenada, pulse en esta y, a continuación, utilice los iconos de la barra de herramientas <emph>Numeración y viñetas</emph>."
#. y2KEo
#: using_numbered_lists2.xhp
@@ -18671,7 +18671,7 @@ msgctxt ""
"bm_id3155174\n"
"help.text"
msgid "<bookmark_value>numbering;manually/by styles</bookmark_value><bookmark_value>list styles</bookmark_value><bookmark_value>manual numbering in text</bookmark_value><bookmark_value>paragraph styles;numbering</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>numeración;manualmente o mediante estilos</bookmark_value><bookmark_value>estilos de lista</bookmark_value><bookmark_value>numeración manual en texto</bookmark_value><bookmark_value>estilos de párrafo;numeración</bookmark_value>"
#. FizBP
#: using_numbering.xhp
@@ -18779,7 +18779,7 @@ msgctxt ""
"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 Previous List\"><menuitem>Format - Lists - Add to List</menuitem></link>."
-msgstr ""
+msgstr "Para añadir los párrafos seleccionados a una lista existente, utilice <link href=\"text/swriter/02/add_to_list.xhp\" name=\"Add to Previous List\"><menuitem>Formato ▸ Lista ▸ Añadir a lista</menuitem></link>."
#. qFAkZ
#: using_numbering.xhp
diff --git a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
index 22dcc4037cf..db8162bdf2d 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-26 16:40+0000\n"
"Last-Translator: dejesusaquino <josesitopechocho197@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28848,6 +28848,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Ñemohenda ha Tamaño"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/gug/sfx2/messages.po b/source/gug/sfx2/messages.po
index 3c3647a5efb..70abbdda008 100644
--- a/source/gug/sfx2/messages.po
+++ b/source/gug/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2895,7 +2895,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index 0d611840fd9..2c0af26114f 100644
--- a/source/gug/sw/messages.po
+++ b/source/gug/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-08-19 12:02+0200\n"
"Last-Translator: pastora <pastora.leguizamon@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9808,6 +9808,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Myatyrõ ndegustaháicha"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20090,14 +20102,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Eiporavo documento oñepyrũha mbojoaju pareha guarã"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/gug/vcl/messages.po b/source/gug/vcl/messages.po
index e6264b5e923..22cfb76e808 100644
--- a/source/gug/vcl/messages.po
+++ b/source/gug/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/he/cui/messages.po b/source/he/cui/messages.po
index 87d75caec33..019b4c93c42 100644
--- a/source/he/cui/messages.po
+++ b/source/he/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-17 08:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/he/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9060,6 +9060,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9367,13 +9385,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14611,159 +14629,165 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "הגדרת גופנים למקורות HTML,‏ Basic ו-SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "עצות מורחבות"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "עזרה"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "פתיחת/שמירת דו שיח"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "תיבות דו־שיח הדפסה"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "הדפסת המסמך משנה את מצב ה'המסמך השתנה' שלו"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "מצב מסמך"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "וגם "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "שנה (שתי ספרות)‏"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "סיוע בשיפור %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "טעינת ‏‪%PRODUCTNAME‬‏ במהלך עליית המערכת"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "הפעלת מאיץ האתחול"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "הפעלה מהירה של ‏‪%PRODUCTNAME‏"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17506,34 +17530,40 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "הגדרות מתווה"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/he/helpcontent2/source/auxiliary.po b/source/he/helpcontent2/source/auxiliary.po
index 6637c1b4100..309465c7dc3 100644
--- a/source/he/helpcontent2/source/auxiliary.po
+++ b/source/he/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-14 12:45+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/he/>\n"
@@ -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: 1532004686.000000\n"
#. fEEXD
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/he/helpcontent2/source/text/sbasic/shared.po b/source/he/helpcontent2/source/text/sbasic/shared.po
index fb2e900d65a..0550f3d852c 100644
--- a/source/he/helpcontent2/source/text/sbasic/shared.po
+++ b/source/he/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-09 21:12+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/he/>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "\\<bookmark_value\\>FreeFile function\\</bookmark_value\\>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "\\<bookmark_value\\>Input statement\\</bookmark_value\\>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Determines if the file pointer has reached the end of a file."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Returns the size of an open file in bytes."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "To obtain the length of a file that is not open, use the \\<emph\\>FileLen\\</emph\\> function."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Return value:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (file open in binary mode)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Deletes a file from a disk."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Enables an error-handling routine after an error occurs, or resumes program execution."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Example:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "\\<bookmark_value\\>MOD operator (mathematical)\\</bookmark_value\\>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Return value:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameters:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "\\<emph\\>Result:\\</emph\\> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "\\<emph\\>Expression1, Expression2:\\</emph\\> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Example:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM returns 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Comparison Operators"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr ""
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "The available comparison operators are described here."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/sbasic/shared/03.po b/source/he/helpcontent2/source/text/sbasic/shared/03.po
index 616b60ea44b..6a520bd2108 100644
--- a/source/he/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/he/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/scalc/01.po b/source/he/helpcontent2/source/text/scalc/01.po
index cd8f419ba93..764342d5aae 100644
--- a/source/he/helpcontent2/source/text/scalc/01.po
+++ b/source/he/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/he/>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "\\<emph\\>Number\\</emph\\> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "\\<emph\\>Decimals\\</emph\\> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "FIXED(1234567.89;3) returns 1,234,567.890 as a text string."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "FIXED(1234567.89;3;1) returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 4552055fef1..3940e231bdc 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Assign Macro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/he/helpcontent2/source/text/swriter/01.po b/source/he/helpcontent2/source/text/swriter/01.po
index 01ec73dc47c..f4aa1160730 100644
--- a/source/he/helpcontent2/source/text/swriter/01.po
+++ b/source/he/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr ""
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail Message"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail Message"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/he/helpcontent2/source/text/swriter/guide.po b/source/he/helpcontent2/source/text/swriter/guide.po
index 07e56d35ab7..bb590d1dcda 100644
--- a/source/he/helpcontent2/source/text/swriter/guide.po
+++ b/source/he/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "To stop capitalizing the first letter of a sentence:"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
index 44a6f77f4ca..cfc1ef50c56 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-05 18:22+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/he/>\n"
@@ -28765,6 +28765,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "מיקום וגודל"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/he/sfx2/messages.po b/source/he/sfx2/messages.po
index e8369261191..de630e1f1c2 100644
--- a/source/he/sfx2/messages.po
+++ b/source/he/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-14 21:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/he/>\n"
@@ -2938,7 +2938,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index 8b97137cd40..0573c17407a 100644
--- a/source/he/sw/messages.po
+++ b/source/he/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/he/>\n"
@@ -9913,6 +9913,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "מותאם אישי"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20410,14 +20422,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/he/vcl/messages.po b/source/he/vcl/messages.po
index bebdba7530a..c513ea6ad7d 100644
--- a/source/he/vcl/messages.po
+++ b/source/he/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-08 08:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/he/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "מפריד"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/hi/cui/messages.po b/source/hi/cui/messages.po
index bde22ebf371..b084dabf409 100644
--- a/source/hi/cui/messages.po
+++ b/source/hi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3569,10 +3569,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -9168,6 +9168,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9478,13 +9496,13 @@ msgid "Font Features"
msgstr ""
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr ""
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14752,161 +14770,167 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "HTML और बेसिक स्रोत के लिए फ़ॉन्ट की सेटिंग"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "विस्तारित संकेत (_E)"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr ""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद का प्रयोग करें (_U)"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "संवाद खोलें/सहेजें"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME डायलॉग का प्रयोग करें (_d)"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "डायलॉग छापें"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "छपाई \"दस्तावेज़ सुधार किया\" वस्तुस्थिति सेट करता है (_P)"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज़ वस्तुस्थिति"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "और "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "वर्ष (दो अंक में)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME को तंत्र प्रारंभ होने के समय लोड करें"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "सिसट्रै क्विकस्टार्टर सक्रिय करें"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME द्रुत आरंभकर्ता"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17655,34 +17679,40 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "लेआउट सेटिंग"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/hi/helpcontent2/source/auxiliary.po b/source/hi/helpcontent2/source/auxiliary.po
index edc9e5a6f9b..02d7ec9a31a 100644
--- a/source/hi/helpcontent2/source/auxiliary.po
+++ b/source/hi/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-19 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,22 +52,22 @@ msgctxt ""
msgid "Command Reference"
msgstr ""
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
+msgid "Functions, Statements and Operators"
msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
+msgid "Alphabetic List of Functions, Statements and Operators"
msgstr ""
#. jhVCB
diff --git a/source/hi/helpcontent2/source/text/sbasic/shared.po b/source/hi/helpcontent2/source/text/sbasic/shared.po
index ad5417a1197..b8f6519fe78 100644
--- a/source/hi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr ""
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr ""
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "वापसी मूल्य:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "पूर्णांक"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr ""
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr ""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,13 +10186,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr ""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. PwUYq
@@ -10366,49 +10339,112 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr ""
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
msgstr ""
#. FrzSY
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr ""
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "निर्धारित करता है कि फ़ाइल पाइंटर फ़ाइल के अंत में पहुँच गया है."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "वापसी मूल्य:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr ""
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr ""
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr ""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr ""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "खुले फ़ाइल के आकार को बाइट में प्रस्तुत करता है."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "वापसी मूल्य:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr ""
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr ""
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr ""
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr ""
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr ""
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr ""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr ""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr ""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "वापसी मूल्य:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "पूर्णांक"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr ""
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,22 +11932,22 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr ""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
msgstr ""
#. BDNvF
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "डिस्क से फ़ाइल मिटाता है."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,22 +12526,13 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
msgstr ""
#. hWy62
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr ""
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,13 +17647,13 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr ""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
msgstr ""
#. YAR7R
@@ -19294,148 +19087,157 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr ""
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "विभाजन के शेषफल के पूर्णांक को प्रस्तुत करता है."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "वापसी मूल्य:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "पूर्णांक"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "पैरामीटर"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "उदाहरण:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Result = Expression1 MOD Expression2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
+"help.text"
+msgid "Integer"
+msgstr "पूर्णांक"
+
+#. pk9HC
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
+msgid "Print a Mod b 'Returns 2"
msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
+msgid "Print a Mod b 'Returns 0"
msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
+msgid "Print a Mod b 'Returns 4"
msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
msgstr ""
#. cFFCi
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "तुलनात्मक ऑपरेटर्स"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr ""
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "उपलब्ध कम्पेरिज़न ऑपरेटर्स यहाँ वर्णित हैं."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/sbasic/shared/03.po b/source/hi/helpcontent2/source/text/sbasic/shared/03.po
index 36167a7e64d..0ceb454d660 100644
--- a/source/hi/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/hi/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/scalc/01.po b/source/hi/helpcontent2/source/text/scalc/01.po
index 9cbfda4de5b..b98d83f7ed9 100644
--- a/source/hi/helpcontent2/source/text/scalc/01.po
+++ b/source/hi/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr ""
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index 90c503c1eeb..5cc37bccac9 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "मेक्रो आबंटित करें"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/hi/helpcontent2/source/text/swriter/01.po b/source/hi/helpcontent2/source/text/swriter/01.po
index acd0e58a7a3..596d0ce45ec 100644
--- a/source/hi/helpcontent2/source/text/swriter/01.po
+++ b/source/hi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr ""
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "ईमेल संदेश"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "ईमेल संदेश"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/hi/helpcontent2/source/text/swriter/guide.po b/source/hi/helpcontent2/source/text/swriter/guide.po
index 5c87d6d7fdb..18380239244 100644
--- a/source/hi/helpcontent2/source/text/swriter/guide.po
+++ b/source/hi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr ""
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
index c53417c9259..fe59b7b347e 100644
--- a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -29056,6 +29056,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "आकार तथा स्थिति"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/hi/sfx2/messages.po b/source/hi/sfx2/messages.po
index 3b64622805c..f36a5adec49 100644
--- a/source/hi/sfx2/messages.po
+++ b/source/hi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-10-21 19:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2943,7 +2943,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index 63db78bef79..db6554ee0a0 100644
--- a/source/hi/sw/messages.po
+++ b/source/hi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9993,6 +9993,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "मनपसंद"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -20481,15 +20493,21 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "डाक मिलान के लिए आंरभिक दस्तावेज़ चुनें"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/hi/vcl/messages.po b/source/hi/vcl/messages.po
index ad52d4f3d4e..29b23106c27 100644
--- a/source/hi/vcl/messages.po
+++ b/source/hi/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2018-11-12 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1165,8 +1165,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index f46d52b93c3..2ae53559ac3 100644
--- a/source/hr/cui/messages.po
+++ b/source/hr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-11-19 20:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/hr/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Funkcije fonta"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Pregled"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Postavke fontova za HTML, Basic i SQL izvore"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Prošireni savjeti"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Prikaži skočni prozor „Pomoć nije instalirana lokalno”"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Prikaži dijaloški okvir „Savjet dana” prilikom pokretanja programa"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoć"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Koristi %PRODUCTNAME dijaloške okvire"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Otvori/Spremi dijaloške okvire"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Koristi %PRODUCTNAME _dijaloške okvire"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dijaloški okviri za ispis"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Ispis postavlja stanje „Dokument promijenjen”"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stanje dokumenta"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Kao godine tumači brojeve između "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Godina (dvije znamenke)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Prikupljaj podatke o korištenju i šalji ih organizaciji The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomozite poboljšati %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Učitaj %PRODUCTNAME tijekom podizanja sustava"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Omogući brzo pokretanje iz sistemske trake"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Brzo pokretanje"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Postavke rasporeda"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/hr/helpcontent2/source/auxiliary.po b/source/hr/helpcontent2/source/auxiliary.po
index c508666d83f..baf1b6e13f3 100644
--- a/source/hr/helpcontent2/source/auxiliary.po
+++ b/source/hr/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-07-17 23:05+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Reference za naredbe"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Funkcije, naredbe i operatori"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Abecedni popis funkcija, naredbi i operatora"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared.po b/source/hr/helpcontent2/source/text/sbasic/shared.po
index 9f50e85f34f..fed9f3820a5 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-07-19 13:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile funkcija</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Vraća sljedeći slobodan broj za otvaranje datoteke. Koristite ovu funkciju za otvaranje datoteke pomoću broja datoteke koji nije već u upotrebi za neku otvorenu datoteku."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Povratna vrijednost"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Cijeli broj"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Ova funkcija može se jedino koristiti neposredno ispred Open izraza. FreeFile vraća sljedeći slobodan broj, ali ga ne rezervira."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Prvi redak teksta\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Još jedan redak teksta\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Ovo je nova linija teksta\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Sve datoteke će biti zatvorene\",0,\"Greška\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input naredba</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Vraća da li je pokazivač u datoteci dosegao kraj datoteke."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (intexpression As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Povratna vrijednost"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Koristite EOF da izbjegnete greske kada pokusate citati iza zavrsetka datoteke. Kada koristite Input ili Get izraz za citanje iz datoteke, pokazivac na datoteku se pomice za roj procitanih bajtova. Kada se dođe do kraja datoteke, EOF vraća vrijednost \"True\" (-1)"
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Prvi redak teksta\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Još jedan redak teksta\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Vraća veličinu otvorene datoteke u byteovima."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Povratna vrijednost"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Dugačko"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr ""
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM mora biti Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Pozicija na pocetku"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Ispuni sa tekstom"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (FileNumber As Integer, Attribute As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Povratna vrijednost"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Cijeli broj"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARNO (datoteka je otvorena kao binarna)"
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Briše datoteku sa diska."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Ubija Datoteku iz brojevnog niza."
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM Datoteka mora biti kreirana unaprijed."
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Omogućuje proceduru za upravljanje greškama nakon što se pojavi greška, ili nastavlja izvođenje programa."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr ""
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Primjer:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Sve datoteke će biti zatvorene\",0,\"Greška\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr ""
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Rezultat = Izraz1 Or Izraz2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Povratna vrijednost"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Cijeli broj"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Primjer:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Rezultat = Izraz1 Or Izraz2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 5 REM vraća 0"
+msgid "Integer"
+msgstr "Cijeli broj"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 5 REM vraća 2"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM vraća 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM vraća 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM vraća 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM vraća 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operatori usporedbe"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr ""
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr ""
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared/03.po b/source/hr/helpcontent2/source/text/sbasic/shared/03.po
index f71f52ca8a5..2e7d9b65442 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/hr/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/scalc/01.po b/source/hr/helpcontent2/source/text/scalc/01.po
index 1850ffe2405..6152c5ec60e 100644
--- a/source/hr/helpcontent2/source/text/scalc/01.po
+++ b/source/hr/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-07-19 13:23+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21049,49 +21049,49 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21103,13 +21103,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index f7c36dfaea4..c52242e929a 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-07-19 13:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Dodijeli makronaredbu"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/hr/helpcontent2/source/text/swriter/01.po b/source/hr/helpcontent2/source/text/swriter/01.po
index 339da592532..d7005785b27 100644
--- a/source/hr/helpcontent2/source/text/swriter/01.po
+++ b/source/hr/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2019-07-19 13:17+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr ""
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail poruka"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-Mail poruka"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/hr/helpcontent2/source/text/swriter/guide.po b/source/hr/helpcontent2/source/text/swriter/guide.po
index 73485425c43..a14b718b16f 100644
--- a/source/hr/helpcontent2/source/text/swriter/guide.po
+++ b/source/hr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-10-19 12:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/hr/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Onemogućavanje automatskog pisanja velikim slovom početak rečenice"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index a4071f1af99..6f1ffefedc3 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-11-18 15:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hr/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Položaj i veličina"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/hr/sfx2/messages.po b/source/hr/sfx2/messages.po
index cf1dca5f8cd..0d023abc6e0 100644
--- a/source/hr/sfx2/messages.po
+++ b/source/hr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-03-15 18:15+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/sfx2messages/hr/>\n"
@@ -2926,7 +2926,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr ""
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index d9c83f469cc..37fbdbb2d77 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-11-19 20:36+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/hr/>\n"
@@ -9791,6 +9791,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Prilagođeno"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20031,14 +20043,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Odaberite početni dokument za cirkularnu poštu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/hr/vcl/messages.po b/source/hr/vcl/messages.po
index 4f26a51e7dd..1b9f14a7b55 100644
--- a/source/hr/vcl/messages.po
+++ b/source/hr/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2020-08-18 11:35+0000\n"
"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_ui-master/vclmessages/hr/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Razdjelnik"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/hsb/cui/messages.po b/source/hsb/cui/messages.po
index cf2b6b1e437..7bbf53a4f06 100644
--- a/source/hsb/cui/messages.po
+++ b/source/hsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-01-28 07:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/hsb/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Pismowe funkcije"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Přehlad"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Pismowe nastajenja za HTML, Basic a SQL-žórła"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Rozšěrjene pokiwy"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Wuskakowace wokno „Pomoc offline njeinstalowana“ pokazać"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Dialog „Pokiw dnja“ při startowanju pokazać"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Dialogi %PRODUCTNAME wužiwać"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogi wočinić/składować"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dia_logi %PRODUCTNAME wužiwać"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Ćišćerske dialogi"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Ćišćenje _status \"dokument změnjeny\" staja"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentowy status"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretować jako lěta mjez "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Lěto (dwuměstnowe)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Wužiwanske daty hromadźić a na załožbu The Document Foundation pósłać"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Załož_bje Document Foundation spadowe rozprawy pósłać"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc při polěpšenju %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME za systemowy start začitać"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Spěšny startowak w žłobiku zmóžnić"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Spěšny startowak %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Standardne nałoženja Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Datajowe zwjazanja %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Wuhotowanske nastajenja"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 7b91d1205a6..91efe94dcb2 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-21 05:37+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hsb/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozicija a wulkosć"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/hsb/sfx2/messages.po b/source/hsb/sfx2/messages.po
index d59a042b905..09281e7ed11 100644
--- a/source/hsb/sfx2/messages.po
+++ b/source/hsb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-23 10:56+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/hsb/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Zmóžnja wam, dokumentej swójske informaciske pola připokazać."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Bóčnicu začinić"
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index d373b2a6184..0b584467b49 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-30 09:34+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/hsb/>\n"
@@ -9798,6 +9798,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Swójski"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20038,14 +20050,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Wubjerće startowy dokument za serijowy list"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
diff --git a/source/hsb/vcl/messages.po b/source/hsb/vcl/messages.po
index 73dad57ba2a..7a613171252 100644
--- a/source/hsb/vcl/messages.po
+++ b/source/hsb/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/hsb/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Dźělatko"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index 86e60e7784c..6aa3c5ba2f9 100644
--- a/source/hu/cui/messages.po
+++ b/source/hu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/hu/>\n"
@@ -3549,10 +3549,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8982,6 +8982,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Makrót rendel bizonyos eseményekhez. A hozzárendelt makró automatikusan végrehajtódik, valahányszor a kiválasztott esemény bekövetkezik."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9283,13 +9301,13 @@ msgid "Font Features"
msgstr "Betűjellemzők"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Előnézet"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Betűtipográfiai jellemzők kiválasztása és alkalmazása karakterekre."
@@ -14368,157 +14386,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Betűkészlet-beállítások HTML-, Basic és SQL-forrásokhoz"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Részletes tippek"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Megjelenít egy rövid leírást az egérkurzor alatti ikonról, menüparancsról vagy párbeszédablak-elemről."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Jelenjen meg a „Nincs telepítve a helyi súgó” ablak"
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Jelenjen meg a „Nap tippje” párbeszédablak indításkor"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Súgó"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok _használata"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Megnyitás és mentés párbeszédablakok"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok _használata"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Nyomtatási párbeszédablakok"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Nyomtatáskor „módosított” állapotba kerül"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Megadja, hogy a nyomtatást a dokumentum módosításaként vegye-e figyelembe."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentumállapot"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "A _következő évszámok között: "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Dátumtartományt hoz létre, amelyen belül a rendszer felismeri két számjegyes évszámokat."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "és "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Év (két számjeggyel)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Felhasználási adatok gyűjtése és elküldése a The Document Foundationnek"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Felhasználási adatok küldése, hogy a The Document Foundation javíthassa a szoftver használhatóságát."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Össze_omlás-jelentések küldése a The Document Foundationnek"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Segítsen a %PRODUCTNAME tökéletesítésében"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "A %PRODUCTNAME betöltése a rendszer indításakor"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gyorsindító engedélyezése"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME gyorsindító"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Alapértelmezett Windows alkalmazások"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME fájltársítások"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Megadja a %PRODUCTNAME általános beállításait."
@@ -17219,33 +17243,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Elrendezés beállításai"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/hu/helpcontent2/source/auxiliary.po b/source/hu/helpcontent2/source/auxiliary.po
index 800ba724a66..2e1141be897 100644
--- a/source/hu/helpcontent2/source/auxiliary.po
+++ b/source/hu/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/hu/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554724169.000000\n"
#. fEEXD
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Parancsreferencia"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Függvények, utasítások és operátorok"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Futásidejű függvények, utasítások és operátorok ábécé szerinti listája"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared.po b/source/hu/helpcontent2/source/text/sbasic/shared.po
index 371905a2a38..6a62cda0119 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-12-12 11:03+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -9925,14 +9925,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile függvény</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile függvény\">FreeFile függvény</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Visszaadja a fájlmegnyitáshoz rendelkezésre álló következő fájl számát. A függvény segítségével és a fájlszám megadásával nyissa meg a fájlt, amelyet még nem használ egy jelenleg megnyitott fájl."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Ez a függvény csak közvetlenül egy Open utasítás előtt használható. A FreeFile visszaadja a következő elérhető fájl számát, de nem foglalja le."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"A szöveg első sora\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Másik szövegsor\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Ez egy másik szövegsor\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Ez a szöveg egy új sora\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Minden fájl lezárásra kerül\",0,\"Hiba\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 ' Pozíció az elejénél"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"Ez a szöveg első sora\" ' Sor kitöltése szöveggel"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Ez a szöveg második sora\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Ez a szöveg harmadik sora\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Ez egy új szöveg\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Ez a szöveg a 20. rekordban\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,14 +10465,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>Input utasítás</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# utasítás\">Input# utasítás</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Meghatározza, hogy a fájlmutató elérte-e egy fájl végét."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (EgészSzám As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool (logikai)"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Az EOF használatával kiküszöbölheti a fájl vége utáni adatbeviteli hibákat. Ha Input vagy Get utasítással olvas egy fájlból, akkor a fájlmutató a beolvasott bájtok számával lép előrébb. A fájl végének elérésekor az EOF \"True\" (-1) értéket ad vissza."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"A szöveg első sora\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Másik szövegsor\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Egy megnyitott fájl méretét adja vissza bájtban."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "A nem megnyitott fájl méretének lekérdezéséhez használja a <emph>FileLen</emph> függvényt."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Variant típusúnak kell lennie"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Indítási pozíció"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"Ez a szöveg első sora\" REM Kitöltés szöveggel"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Ez a szöveg második sora\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Ez a szöveg harmadik sora\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Ez egy új szövegsor\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Ez a szöveg a 20. rekordban\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Lásd még: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (Fájlszám As Integer, Attribútum As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer (egész szám)"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (a fájlt bináris módban nyitja meg)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ez egy szövegsor\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Hozzáférési mód\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Fájlattribútum\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Töröl egy fájlt a lemezről."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Fájl As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Fájl:</emph> Egyértelmű fájlspecifikációt tartalmazó string (karakterlánc) kifejezés. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL-jelölést\">URL-jelölést</link> is használhat."
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' A fájlt előbb létre kell hozni"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Hiba esetén elindít egy hibakezelő rutint, vagy folytatja a program futtatását."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Az On Error GoTo utasítás a makró futás közbeni hibáinak lekezelésére szolgál."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Példa:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ez egy szövegsor\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Minden fájl lezárásra kerül\",0,\"Hiba\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>MOD operátor (matematikai)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod operátor\">Mod operátor</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Visszaadja egy osztás egész maradékát."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Szintaxis:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Eredmény = Kifejezés1 MOD Kifejezés2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Visszatérési érték:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer (egész szám)"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Paraméterek:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
+"help.text"
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
+
+#. tjLmf
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Eredmény:</emph> Bármilyen numerikus kifejezés, amely a MOD művelet eredményét tárolja."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. uVobi
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id3147560\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Kifejezés1, Kifejezés2:</emph> Az osztandó kifejezések."
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Eredmény = Kifejezés1 MOD Kifejezés2"
-#. PEAiU
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3153380\n"
"help.text"
-msgid "Example:"
-msgstr "Példa:"
+msgid "Integer"
+msgstr "Integer (egész szám)"
-#. ucwCQ
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "Print 10 Mod 2.5 ' 0-t ad vissza"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. e9pCh
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "Print 10 / 2.5 ' 4-et ad vissza"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. M7cEv
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "Print 10 Mod 5 ' 0-t ad vissza"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Gb5Uu
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "Print 10 / 5 ' 2-t ad vissza"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. Akh2V
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "Print 5 Mod 10 ' 5-öt ad vissza"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "Print 5 / 10 ' 0.5-öt ad vissza"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30283,33 +30085,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Összehasonlító operátorok"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Összehasonlító operátorok\">Összehasonlító operátorok</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Az alábbiakban az elérhető összehasonlító operátorok részletezése következik."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared/03.po b/source/hu/helpcontent2/source/text/sbasic/shared/03.po
index 36ee691b5ef..edb56ee7012 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/hu/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-04 18:08+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/scalc/01.po b/source/hu/helpcontent2/source/text/scalc/01.po
index 277a9d833cb..60ad0f7ccd2 100644
--- a/source/hu/helpcontent2/source/text/scalc/01.po
+++ b/source/hu/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-12 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -21049,50 +21049,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIX"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Egy számot szöveggé alakít, figyelembe véve a megadott tizedesjegyek számát és az esetleges ezreselválasztót.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "A <emph>szám</emph> a formázni kívánt szám."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "A <emph>tizedesjegyek</emph> a megjelenítendő tizedesjegyek száma."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "A <emph>nincs_ezreselválasztó</emph> (opcionális) meghatározza, hogy van-e ezreselválasztó használatban. Ha a paraméter nullától eltérő szám, akkor nem jelennek meg az ezreselválasztók. Ha a paraméter nulla vagy hiányzik, akkor az <link href=\"text/shared/optionen/01140000.xhp\" name=\"aktuális területi beállítások\">aktuális területi beállításoknak</link> megfelelő ezreselválasztók jelennek meg."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21103,14 +21103,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "A <item type=\"input\">=FIX(1234567,89;3)</item> eredményül az 1 234 567,890 karakterláncot adja."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "A <item type=\"input\">=FIX(1234567,89;3;1)</item> eredményül az 1234567,890 karakterláncot adja."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/hu/helpcontent2/source/text/shared/01.po b/source/hu/helpcontent2/source/text/shared/01.po
index e0ea908829d..ff5c8f3a23b 100644
--- a/source/hu/helpcontent2/source/text/shared/01.po
+++ b/source/hu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41812,13 +41812,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Makró hozzárendelése"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/hu/helpcontent2/source/text/swriter/01.po b/source/hu/helpcontent2/source/text/swriter/01.po
index ac0e4c04f27..2fb5348ccd9 100644
--- a/source/hu/helpcontent2/source/text/swriter/01.po
+++ b/source/hu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -28591,23 +28591,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Válasszon egy elemet a listából, majd helyezze át azt egy nyílgombra kattintva.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail üzenet"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "E-mail üzenet"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28924,13 +28924,13 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/hu/helpcontent2/source/text/swriter/guide.po b/source/hu/helpcontent2/source/text/swriter/guide.po
index df3f246872d..1e9ef04bd2e 100644
--- a/source/hu/helpcontent2/source/text/swriter/guide.po
+++ b/source/hu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2018-11-12 13:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "A mondat első betűjének nagybetűvé tételének kikapcsolásához"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
index 712c0f2642a..728d1f47ff7 100644
--- a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-05 18:22+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/hu/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Pozíció és méret"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/hu/sfx2/messages.po b/source/hu/sfx2/messages.po
index 8f9814acb2d..74b26fc3c49 100644
--- a/source/hu/sfx2/messages.po
+++ b/source/hu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-05 18:22+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/hu/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Egyéni információ mezőket helyez el a dokumentumban."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/hu/sw/messages.po b/source/hu/sw/messages.po
index ab490bca2c3..74573bbde5b 100644
--- a/source/hu/sw/messages.po
+++ b/source/hu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-03-11 15:37+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/hu/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Egyéni"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20024,14 +20036,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Megnyit egy sablonválasztó ablakot."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Kiindulási dokumentum a körlevél számára"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Adja meg azt a dokumentumot, amelyet alapként kíván használni a körlevél-dokumentumhoz."
diff --git a/source/hu/vcl/messages.po b/source/hu/vcl/messages.po
index cb17f76d399..76428c11e65 100644
--- a/source/hu/vcl/messages.po
+++ b/source/hu/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-03-05 18:22+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/hu/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Elválasztó"
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/id/cui/messages.po b/source/id/cui/messages.po
index 6385b256344..2642cb91cdf 100644
--- a/source/id/cui/messages.po
+++ b/source/id/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/id/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr "Menetapkan makro untuk acara program. Makro yang ditugaskan berjalan secara otomatis setiap kali peristiwa yang dipilih terjadi."
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Fitur Fonta"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Pratinjau"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr "Pilih dan terapkan fitur tipografi fonta untuk karakter."
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Pengaturan Fonta untuk Sumber-sumber HTML, Basic, dan SQL"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Tip t_ambahan"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr "Menampilkan teks bantuan ketika Anda mengistirahatkan kursor pada ikon, perintah menu, atau kontrol pada dialog."
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Tampilkan popup \"TIdak ada bantuan luring yang terpasang\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Tampilkan dialog \"Tips Hari Ini\" saat awal mula"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Bantuan"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "G_unakan dialog %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialog Buka/Simpan"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Gunakan _dialog %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialog Cetak"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Mencetak mengubah status \"dokumen berubah\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Menentukan apakah pencetakan dokumen dianggap sebagai modifikasi."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status Dokumen"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tafs_irkan sebagai tahun antara "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr "Menentukan rentang tanggal, di mana sistem mengenali tahun dua digit."
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "dan "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Tahun (Dua Digit)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kumpulkan data pemakaian dan kirim ke Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "Mengirim data penggunaan untuk membantu Dasar Dokumen yang meningkatkan kegunaan perangkat lunak."
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Kirim laporan kres ke The _Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Bantu Perbaiki %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Memuat %PRODUCTNAME saat awal mula sistem"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktifkan Awal-Cepat baki sistem"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Awal-Cepat %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Aplikasi baku Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME Asosiasi Berkas"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Menentukan pengaturan umum untuk %PRODUCTNAME."
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Pengaturan Tataletak"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/id/helpcontent2/source/auxiliary.po b/source/id/helpcontent2/source/auxiliary.po
index b5c2842e74f..98869c62a5d 100644
--- a/source/id/helpcontent2/source/auxiliary.po
+++ b/source/id/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-04-02 15:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/id/>\n"
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Referensi Perintah"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Fungsi, Statement, dan Operator"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Daftar Fungsi, Pernyataan, dan Operator Alfabet"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/id/helpcontent2/source/text/sbasic/shared.po b/source/id/helpcontent2/source/text/sbasic/shared.po
index 71ff4eee1cb..bf5e2079390 100644
--- a/source/id/helpcontent2/source/text/sbasic/shared.po
+++ b/source/id/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-04-02 15:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/id/>\n"
@@ -9927,14 +9927,14 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>fungsi FreeFile</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">Fungsi FreeFile</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
+msgstr ""
#. jM79E
#: 03020102.xhp
@@ -9945,24 +9945,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr "Mengembalikan nomor file berikutnya yang tersedia untuk membuka file. Gunakan fungsi ini untuk membuka file menggunakan nomor file yang belum digunakan oleh file yang sedang dibuka."
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Nilai hasil:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9972,15 +9954,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9990,33 +9963,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr "Fungsi ini hanya dapat digunakan langsung di depan pernyataan Buka. FreeFile mengembalikan nomor file berikutnya yang tersedia, tetapi tidak mencadangkannya."
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Baris pertama teks\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Baris teks lainnya\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10161,6 +10107,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"Ini adalah baris teks yang lain\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10215,14 +10188,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"Ini adalah baris teks yang baru\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Semua berkas akan ditutup\",0,\"Kesalahan\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10368,50 +10341,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Carilah #iNumber,1 ' Posisi di awal"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Masukkan #iNumber,, \"Ini adalah baris pertama dari teks\" ' Isi baris dengan teks"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Ini baris teks kedua\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Ini baris teks ketiga\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"Ini teks yang baru\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Ini adalah teks dalam catatan 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10431,14 +10467,14 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>pernyataan Input</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Pernyataan Input#</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
+msgstr ""
#. iWhqX
#: 03020202.xhp
@@ -10881,15 +10917,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr "Menentukan apakah penunjuk berkas telah mencapai akhir berkas."
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10899,15 +10926,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr "Eof (EkspresiInt As Integer)"
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Nilai hasil:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10917,15 +10935,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10944,33 +10953,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr "Inggris laporan masalah dengan ini string EOF digunakan untuk menghindari kesalahan ketika Anda mencoba untuk mendapatkan masukan dari akhir file. Bila Anda menggunakan Input atau mendapatkan pernyataan untuk membaca dari sebuah file, file pointer dilanjutkan oleh jumlah byte yang membaca. Ketika mencapai akhir file, EOF mengembalikan nilai \"True\"-(1)."
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"Baris pertama teks\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Baris teks lainnya\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11115,15 +11097,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr "Mengembalikan ukuran berkas yang terbuka dalam byte."
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11133,15 +11106,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Lof (NomorBerkas)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Nilai hasil:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11151,15 +11115,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11178,78 +11133,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr "Untuk mendapatkan panjang berkas yang tidak terbuka, gunakan file <emph>FileLen</emph> fungsi."
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM Harus varian"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Carilah #iNumber, 1 Posisi Baris di awal"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Masukkan #iNumber,, \"Ini adalah baris pertamateks\" REM Isi dengan teks"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"Ini baris teks kedua\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"Ini baris teks ketiga\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"Ini baris teks yang baru\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"Ini adalah teks dalam catatan 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11934,15 +11817,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Lihat juga: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Buka\">Buka</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11952,15 +11826,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr "FileAttr (NomorBerkas As Integer, Atribut As Integer)"
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Nilai hasil:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11970,15 +11835,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12069,15 +11925,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr "32 - BINARY (berkas dibuka dalam mode biner)."
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12087,23 +11934,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ini adalah baris teks\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Mode akses\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"Atribut berkas\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12663,15 +12510,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr "Menghapus berkas dari disk."
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12681,15 +12519,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill Berkas As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12699,23 +12528,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr "<emph>Text:</emph> Apapun ekspresi string yang berisi tulisan drive dari drive baru. Jika mau, Anda bisa menggunakan <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>"
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" ' Berkas harus dibuat terlebih dahulu"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17757,15 +17577,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr "Mengaktifkan rutinitas penanganan kesalahan setelah kesalahan terjadi, atau melanjutkan kembali eksekusi program."
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17784,15 +17595,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17838,15 +17640,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr "Pada Galat Pergi Ke pernyataan yang digunakan untuk bereaksi terhadap galat yang terjadi di makro."
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Contoh:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17856,14 +17649,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"Ini adalah baris teks\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"Semua berkas akan ditutup\",0,\"Kesalahan\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19296,149 +19089,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr "<bookmark_value>operator MOD (matematika)</bookmark_value>"
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Operator Mod</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
+msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "Mengembalikan sisa bilangan bulat dari sebuah divisi."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
+msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintaksis:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Hasil = Ekspresi1 MOD Ekspresi2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
+msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Nilai hasil:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parameter:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
-msgstr "<emph>Hasil:</emph> Variabel numerik apa saja yang mengandung hasil dari perbadindang."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
+msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "<emph>Ekspresi1, Ekspresi2:</emph> Ekspresi apa saja yang hendak Anda gabungkan."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
+msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Contoh:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Hasil = Ekspresi1 MOD Ekspresi2"
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM menghasilkan 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM menghasilkan 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM menghasilkan 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM menghasilkan 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM menghasilkan 5"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
-#. KD4AZ
+#. s2JEC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id3145273\n"
+"help.text"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
+
+#. agWNB
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM menghasilkan 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30288,33 +30090,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operator Pembanding"
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Operator Perbandingan</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr "Operator perbandingan yang tersedia dijelaskan di sini."
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/sbasic/shared/03.po b/source/id/helpcontent2/source/text/sbasic/shared/03.po
index c4715f1b28a..be486fedb4c 100644
--- a/source/id/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/id/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-03-29 19:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared03/id/>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/scalc/01.po b/source/id/helpcontent2/source/text/scalc/01.po
index 12d4a73fd98..e7b1358e5c8 100644
--- a/source/id/helpcontent2/source/text/scalc/01.po
+++ b/source/id/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo_help scalc 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/id/>\n"
@@ -21057,50 +21057,50 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FEST\">Mengembalikan angka sebagai teks dengan jumlah tempat desimal tertentu dan ribuan pemisah opsional.</ahelp>"
+msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
-msgstr "<emph>Nilai</emph> adalah nilai yang akan diperiksa."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
+msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
-msgstr "<emph>Desimal</emph>mengacu pada jumlah tempat desimal yang akan ditampilkan."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
+msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr "<emph>Ribuan Tak Terbatas</emph>(opsional) menentukan apakah pemisah ribuan digunakan. Jika parameternya adalah angka yang tidak sama dengan 0, pemisah ribuan ditekan. Jika parameter sama dengan 0 atau jika hilang sama sekali, ribuan pemisah Anda<link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">pengaturan lokal saat ini</link>ditampilkan."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgstr ""
#. nDs7Q
#: 04060110.xhp
@@ -21111,14 +21111,50 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr "<item type=\"input\">=FIXED(1234567.89;3)</item> mengebalikan nilai 1,234,567.890 sebagai teks string."
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
-msgstr "<item type=\"input\">=FIXED(1234567.89;3;1)</item> mengembalikan nilai 1234567.890 sebagai nilai teks string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
+msgstr ""
#. zxsGX
#: 04060110.xhp
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index 3227f99105e..68fb0ea2d8f 100644
--- a/source/id/helpcontent2/source/text/shared/01.po
+++ b/source/id/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo 4.3 help shared/01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-04-04 18:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/id/>\n"
@@ -25312,13 +25312,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41831,14 +41831,14 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Tetapkan Makro"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
-msgstr "<ahelp hid=\".\">Buka <link href=\"text/shared/01/06130000.xhp\">Pemilih Makro</link> untuk menetapkan makro ke kejadian yang dipilih.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgstr ""
#. 6a78S
#: 06140500.xhp
diff --git a/source/id/helpcontent2/source/text/swriter/01.po b/source/id/helpcontent2/source/text/swriter/01.po
index 2b1dab13ecf..657324c5f0c 100644
--- a/source/id/helpcontent2/source/text/swriter/01.po
+++ b/source/id/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: swriter 3.6\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-05-27 09:52+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/id/>\n"
@@ -28593,23 +28593,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select an item in the list and click an arrow button to move the item.</ahelp>"
msgstr "<ahelp hid=\".\">Pilih item dalam daftar dan klik tombol panah untuk memindahkan entri.</ahelp>"
-#. 2EDFk
+#. QDbG9
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"tit\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Pesan E-mail"
+msgid "Email Message"
+msgstr ""
-#. BNpDQ
+#. oSwv3
#: mm_emabod.xhp
msgctxt ""
"mm_emabod.xhp\n"
"par_idN1053C\n"
"help.text"
-msgid "E-Mail Message"
-msgstr "Pesan E-mail"
+msgid "Email Message"
+msgstr ""
#. PTucc
#: mm_emabod.xhp
@@ -28926,13 +28926,13 @@ msgctxt ""
msgid "Properties"
msgstr "Tag (tertanam)"
-#. QDtAr
+#. 9DVfj
#: mm_emailmergeddoc.xhp
msgctxt ""
"mm_emailmergeddoc.xhp\n"
"par_idN10615\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">E-Mail Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_emabod.xhp\">Email Message</link> dialog where you can enter the email message for the mail merge files that are sent as attachments.</ahelp>"
msgstr ""
#. bARe2
diff --git a/source/id/helpcontent2/source/text/swriter/guide.po b/source/id/helpcontent2/source/text/swriter/guide.po
index fcb457cc4be..a493e9f4b0c 100644
--- a/source/id/helpcontent2/source/text/swriter/guide.po
+++ b/source/id/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2020-04-04 18:16+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/id/>\n"
@@ -619,13 +619,13 @@ msgctxt ""
msgid "To Stop Capitalizing the First Letter of a Sentence"
msgstr "Untuk Berhenti Mengkapitalisasi Huruf Pertama dari suatu Kalimat"
-#. jv7DR
+#. FJhBA
#: auto_off.xhp
msgctxt ""
"auto_off.xhp\n"
"par_id3155099\n"
"help.text"
-msgid "Choose <menuitem>Tools – AutoCorrect Options</menuitem>."
+msgid "Choose <menuitem>Tools - AutoCorrect – AutoCorrect Options</menuitem>."
msgstr ""
#. 6TQxg
diff --git a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
index 12159814ece..332a0e890ed 100644
--- a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:08+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-01-03 12:23+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/id/>\n"
@@ -28718,6 +28718,16 @@ msgctxt ""
msgid "Position and Size"
msgstr "Posisi dan Ukuran"
+#. BZBXi
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.FontworkPropertyPanel\n"
+"Title\n"
+"value.text"
+msgid "Fontwork"
+msgstr ""
+
#. vnPii
#: Sidebar.xcu
msgctxt ""
diff --git a/source/id/sc/messages.po b/source/id/sc/messages.po
index 72182cdfa9f..a82f44eccef 100644
--- a/source/id/sc/messages.po
+++ b/source/id/sc/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-02-02 17:37+0000\n"
-"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:39+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/id/>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1550908361.000000\n"
#. kBovX
@@ -25670,7 +25670,7 @@ msgstr "Catatan akhir"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:78
msgctxt "notebookbar_groups|bookmark"
msgid "Bookmark"
-msgstr "Tanda taut"
+msgstr "Markah"
#. JE3bf
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:87
diff --git a/source/id/sd/messages.po b/source/id/sd/messages.po
index d4795f4356f..7199dc7d62c 100644
--- a/source/id/sd/messages.po
+++ b/source/id/sd/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-02-02 17:36+0000\n"
-"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
+"PO-Revision-Date: 2021-04-01 04:38+0000\n"
+"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/id/>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1565578255.000000\n"
#. WDjkB
@@ -7531,7 +7531,7 @@ msgstr "Catatan Akhir"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:142
msgctxt "notebookbar_groups|bookmark"
msgid "Bookmark"
-msgstr "Tanda Taut"
+msgstr "Markah"
#. JE3bf
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151
diff --git a/source/id/sfx2/messages.po b/source/id/sfx2/messages.po
index 1c36a5851b5..ae8d86d5b28 100644
--- a/source/id/sfx2/messages.po
+++ b/source/id/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:03+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/id/>\n"
@@ -2929,7 +2929,7 @@ msgid "Allows you to assign custom information fields to your document."
msgstr "Memungkinkan Anda menetapkan bidang informasi khusus ke dokumen Anda."
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:102 sfx2/uiconfig/ui/deck.ui:107
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
diff --git a/source/id/sw/messages.po b/source/id/sw/messages.po
index a497732f1be..46393b0cd73 100644
--- a/source/id/sw/messages.po
+++ b/source/id/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-30 18:09+0200\n"
+"POT-Creation-Date: 2021-04-06 14:46+0200\n"
"PO-Revision-Date: 2021-02-02 17:37+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/id/>\n"
@@ -9784,6 +9784,18 @@ msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Ubahan"
+#. KCExN
+#: sw/inc/strings.hrc:1405
+msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
+msgid "Data source is not available. Mail merge wizard will not work properly."
+msgstr ""
+
+#. u57fa
+#: sw/inc/strings.hrc:1406
+msgctxt "STR_EXCHANGE_DATABASE"
+msgid "Exchange Database"
+msgstr ""
+
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -20030,14 +20042,20 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Membuka dialog pemilih template."
+#. PVPDB
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:189
+msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgid "Data source of the current document is not registered."
+msgstr ""
+
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Pilih Dokumen Awal Bagi Surat Masal"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:205
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:220
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Menentukan dokumen yang ingin Anda gunakan sebagai basis untuk dokumen penggabungan surat."
diff --git a/source/id/vcl/messages.po b/source/id/vcl/messages.po
index 76ea26868a3..cbff1b7cda9 100644
--- a/source/id/vcl/messages.po
+++ b/source/id/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-03-08 14:40+0100\n"
+"POT-Creation-Date: 2021-04-06 14:47+0200\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/id/>\n"
@@ -1155,8 +1155,23 @@ msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
-#. EkzSW
+#. eCq2K
#: vcl/inc/strings.hrc:138
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
+msgid "Default file formats not registered"
+msgstr ""
+
+#. TDctx
+#: vcl/inc/strings.hrc:139
+msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
+msgid ""
+"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
+"$1\n"
+"Select OK if you want to change default file format registrations."
+msgstr ""
+
+#. EkzSW
+#: vcl/inc/strings.hrc:141
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
diff --git a/source/is/cui/messages.po b/source/is/cui/messages.po
index 0d413e718a0..20546d8237f 100644
--- a/source/is/cui/messages.po
+++ b/source/is/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:44+0200\n"
"PO-Revision-Date: 2020-10-13 15:35+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/is/>\n"
@@ -3548,10 +3548,10 @@ 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 ""
-#. LXAzN
+#. acQKG
#: cui/inc/toolbarmode.hrc:28
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 compact variant favors vertical space."
msgstr ""
#. eGMCZ
@@ -8981,6 +8981,24 @@ msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
msgstr ""
+#. BuBeE
+#: cui/uiconfig/ui/fileextcheckdialog.ui:32
+msgctxt "FileExtCheck|Checkbox"
+msgid "_Perform check on startup"
+msgstr ""
+
+#. Bjfzv
+#: cui/uiconfig/ui/fileextcheckdialog.ui:36
+msgctxt "FileExtCheck|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#. mGEv5
+#: cui/uiconfig/ui/fileextcheckdialog.ui:64
+msgctxt "FileExtCheckDialog|Ok_Button"
+msgid "_OK"
+msgstr ""
+
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -9282,13 +9300,13 @@ msgid "Font Features"
msgstr "Eiginleikar leturgerðar"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:161
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:162
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Forskoðun"
#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:195
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:196
msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
msgid "Select and apply font typographical features to characters."
msgstr ""
@@ -14367,157 +14385,163 @@ msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Leturstillingar fyrir HTML, BASIC og SQL frumkóða"
#. AFEDo
-#: cui/uiconfig/ui/optgeneralpage.ui:33
+#: cui/uiconfig/ui/optgeneralpage.ui:34
msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Í_tarlegar ábendingar"
#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:41
+#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:52
+#: cui/uiconfig/ui/optgeneralpage.ui:53
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Birta sprettglugga með \"Engin hjálparskjöl uppsett á tölvunni\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:65
+#: cui/uiconfig/ui/optgeneralpage.ui:66
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Birta \"Vísbending dagsins\"-glugga í ræsingu"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:83
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjálp"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:111
+#: cui/uiconfig/ui/optgeneralpage.ui:112
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Nota valmyndir %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:142
+#: cui/uiconfig/ui/optgeneralpage.ui:143
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Opna/Vista gluggar"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:162
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Nota _valmyndir %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:176
+#: cui/uiconfig/ui/optgeneralpage.ui:177
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Prentunargluggar"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:197
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Prentun breytir stöðu \"breytt skjal\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:206
+#: cui/uiconfig/ui/optgeneralpage.ui:207
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Staða skjals"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:245
+#: cui/uiconfig/ui/optgeneralpage.ui:246
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Túlka sem ár á m_illi "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:264
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "extended_tip | year"
msgid "Defines a date range, within which the system recognizes a two-digit year."
msgstr ""
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:277
+#: cui/uiconfig/ui/optgeneralpage.ui:278
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:290
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ár (tveir tölustafir)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:317
+#: cui/uiconfig/ui/optgeneralpage.ui:318
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Safna gögnum um notkun og senda þau til The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:326
+#: cui/uiconfig/ui/optgeneralpage.ui:327
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:337
+#: cui/uiconfig/ui/optgeneralpage.ui:338
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Sen_da hrunskýrslur til Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:357
+#: cui/uiconfig/ui/optgeneralpage.ui:358
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjálpa til við að bæta %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:385
+#: cui/uiconfig/ui/optgeneralpage.ui:386
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hlaða inn %PRODUCTNAME við kerfisræsingu"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:399
+#: cui/uiconfig/ui/optgeneralpage.ui:400
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Virkja flýtiræsi í kerfisbakka"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:417
+#: cui/uiconfig/ui/optgeneralpage.ui:418
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME flýtiræsir"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:444
+#: cui/uiconfig/ui/optgeneralpage.ui:445
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Sjálfgefin forrit Windows"
+#. 2EWmE
+#: cui/uiconfig/ui/optgeneralpage.ui:459
+msgctxt "optgeneralpage|FileExtCheckCheckbox"
+msgid "Perform check for default file associations on start-up"
+msgstr ""
+
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:462
+#: cui/uiconfig/ui/optgeneralpage.ui:477
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Skráavensl %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:476
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -17218,33 +17242,39 @@ msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
-#. cuazP
+#. AosV5
#: cui/uiconfig/ui/pageformatpage.ui:711
+msgctxt "pageformatpage|checkRtlGutter"
+msgid "Gutter on right side of page"
+msgstr ""
+
+#. cuazP
+#: cui/uiconfig/ui/pageformatpage.ui:725
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:715
+#: cui/uiconfig/ui/pageformatpage.ui:729
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:720
+#: cui/uiconfig/ui/pageformatpage.ui:734
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:735
+#: cui/uiconfig/ui/pageformatpage.ui:749
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Framsetningarstillingar"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:756
+#: cui/uiconfig/ui/pageformatpage.ui:770
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
diff --git a/source/is/helpcontent2/source/auxiliary.po b/source/is/helpcontent2/source/auxiliary.po
index 72891bea783..1d4737dafc3 100644
--- a/source/is/helpcontent2/source/auxiliary.po
+++ b/source/is/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-05 20:05+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_help-master/auxiliary/is/>\n"
@@ -52,23 +52,23 @@ msgctxt ""
msgid "Command Reference"
msgstr "Tilvísanir í skipanir"
-#. MrEnT
+#. ZhxZF
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010202\n"
"node.text"
-msgid "Functions, Statements, and Operators"
-msgstr "Föll, skipanasetningar og virkjar"
+msgid "Functions, Statements and Operators"
+msgstr ""
-#. hAowB
+#. 3SEZD
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"07010201\n"
"node.text"
-msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Listi í stafrófsröð yfir keyrslutímaföll, skipanasetningar og virkja"
+msgid "Alphabetic List of Functions, Statements and Operators"
+msgstr ""
#. jhVCB
#: sbasic.tree
diff --git a/source/is/helpcontent2/source/text/sbasic/shared.po b/source/is/helpcontent2/source/text/sbasic/shared.po
index 7508b1475e1..c974e313219 100644
--- a/source/is/helpcontent2/source/text/sbasic/shared.po
+++ b/source/is/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-10-21 20:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9925,13 +9925,13 @@ msgctxt ""
msgid "<bookmark_value>FreeFile function</bookmark_value>"
msgstr "<bookmark_value>FreeFile fall</bookmark_value>"
-#. dLdym
+#. RGVUt
#: 03020102.xhp
msgctxt ""
"03020102.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
+msgid "<variable id=\"FreeFile_h1\"><link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link></variable>"
msgstr ""
#. jM79E
@@ -9943,24 +9943,6 @@ msgctxt ""
msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr ""
-#. HFJna
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
-#. gj7tZ
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Return value:"
-msgstr "Skilagildi:"
-
#. RqGSZ
#: 03020102.xhp
msgctxt ""
@@ -9970,15 +9952,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. ABNQ8
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. 3yGe9
#: 03020102.xhp
msgctxt ""
@@ -9988,33 +9961,6 @@ msgctxt ""
msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr ""
-#. TeUGS
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
-#. 8AuDi
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. peaBL
-#: 03020102.xhp
-msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. xWgio
#: 03020103.xhp
msgctxt ""
@@ -10159,6 +10105,33 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Print #iNumber, \"This is another line of text\""
+#. D8qpy
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3154705125\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr ""
+
+#. Xp9PP
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id3146916877\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr ""
+
+#. BqezU
+#: 03020103.xhp
+msgctxt ""
+"03020103.xhp\n"
+"par_id211617107328022\n"
+"help.text"
+msgid "If the <literal>Open</literal> statement tries to open a file to which the current user does not have read/write permissions, an I/O error will be raised."
+msgstr ""
+
#. WaBAH
#: 03020104.xhp
msgctxt ""
@@ -10213,14 +10186,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Print #iNumber, \"This is a new line of text\""
-#. bHFtE
+#. gtjeZ
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"par_id3163805\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. PwUYq
#: 03020200.xhp
@@ -10366,50 +10339,113 @@ msgctxt ""
msgid "Seek #iNumber,1 ' Position at beginning"
msgstr "Seek #iNumber,1 REM Position at beginning"
-#. 6FAjB
+#. ZgEGn
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153158\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill line with text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#. cZnTr
+#. aDB7y
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3148457\n"
"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
-#. 92AxM
+#. bBSo7
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
-#. rd7wm
+#. PTY3P
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3155938\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Put #iNumber,,\"This is a new text\""
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
-#. c2nDv
+#. AduBB
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
+
+#. JjipS
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31553071450\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant"
+msgstr ""
+
+#. FzYJn
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31494111458\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#. XcDvJ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31531583325\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. Gzz9j
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31484574785\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the second line of text\""
+msgstr ""
+
+#. RhCPQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31507151145\n"
+"help.text"
+msgid "Put #iNumber, , \"This is the third line of text\""
+msgstr ""
+
+#. D9nRy
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31559382236\n"
+"help.text"
+msgid "Put #iNumber, , \"This is a new text\""
+msgstr ""
+
+#. upDvm
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id31469165876\n"
+"help.text"
+msgid "Put #iNumber, 20, \"This is the text in record 20\""
+msgstr ""
#. FrzSY
#: 03020202.xhp
@@ -10429,13 +10465,13 @@ msgctxt ""
msgid "<bookmark_value>Input statement</bookmark_value>"
msgstr "<bookmark_value>If skipun</bookmark_value>"
-#. FFYCL
+#. 2BhMB
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"hd_id3154908\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
+msgid "<variable id=\"Input_h1\"><link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link></variable>"
msgstr ""
#. iWhqX
@@ -10879,15 +10915,6 @@ msgctxt ""
msgid "Determines if the file pointer has reached the end of a file."
msgstr ""
-#. iYJKG
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
#. KmauZ
#: 03020301.xhp
msgctxt ""
@@ -10897,15 +10924,6 @@ msgctxt ""
msgid "Eof (intexpression As Integer)"
msgstr ""
-#. r5jG4
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
-"help.text"
-msgid "Return value:"
-msgstr "Skilagildi:"
-
#. 4WM7u
#: 03020301.xhp
msgctxt ""
@@ -10915,15 +10933,6 @@ msgctxt ""
msgid "Bool"
msgstr "Bool"
-#. EsysA
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. PynGw
#: 03020301.xhp
msgctxt ""
@@ -10942,33 +10951,6 @@ msgctxt ""
msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr ""
-#. Ma6Va
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
-#. De22R
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Print #iNumber, \"First line of text\""
-
-#. kBF4t
-#: 03020301.xhp
-msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Print #iNumber, \"Another line of text\""
-
#. jCouD
#: 03020302.xhp
msgctxt ""
@@ -11113,15 +11095,6 @@ msgctxt ""
msgid "Returns the size of an open file in bytes."
msgstr ""
-#. KhpgQ
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
#. 43MqD
#: 03020303.xhp
msgctxt ""
@@ -11131,15 +11104,6 @@ msgctxt ""
msgid "Lof (FileNumber)"
msgstr "Seek (FileNumber)"
-#. CeGgA
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
-"help.text"
-msgid "Return value:"
-msgstr "Skilagildi:"
-
#. BwEgF
#: 03020303.xhp
msgctxt ""
@@ -11149,15 +11113,6 @@ msgctxt ""
msgid "Long"
msgstr "Long"
-#. Uxatn
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. BBamj
#: 03020303.xhp
msgctxt ""
@@ -11176,78 +11131,6 @@ msgctxt ""
msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr ""
-#. UJTRD
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
-#. stUFk
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
-msgstr "Dim sText As Variant REM must be a Variant"
-
-#. ewVMH
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
-msgstr "Seek #iNumber,1 REM Position at start"
-
-#. id4Rw
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-msgstr "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
-
-#. sBzCx
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Put #iNumber,, \"This is the second line of text\""
-
-#. 4BA6q
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Put #iNumber,, \"This is the third line of text\""
-
-#. G5HhR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Put #iNumber,,\"This is a new line of text\""
-
-#. y7PTR
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr "Put #iNumber,20,\"This is the text in record 20\""
-
#. AGL3X
#: 03020304.xhp
msgctxt ""
@@ -11932,15 +11815,6 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
msgstr "Sjá einnig: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Opna\">Opna</link>"
-#. MtBsh
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
#. AhrBC
#: 03020405.xhp
msgctxt ""
@@ -11950,15 +11824,6 @@ msgctxt ""
msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
msgstr ""
-#. D2zd7
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"help.text"
-msgid "Return value:"
-msgstr "Skilagildi:"
-
#. xonFX
#: 03020405.xhp
msgctxt ""
@@ -11968,15 +11833,6 @@ msgctxt ""
msgid "Integer"
msgstr "Integer"
-#. 6djVq
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. SAnw7
#: 03020405.xhp
msgctxt ""
@@ -12067,15 +11923,6 @@ msgctxt ""
msgid "32 - BINARY (file open in binary mode)."
msgstr ""
-#. SVNQc
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
#. xBfKE
#: 03020405.xhp
msgctxt ""
@@ -12085,23 +11932,23 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. 3akx4
+#. QBkhp
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3150361\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
+msgid "MsgBox FileAttr(#iNumber, 1), 0, \"Access mode\""
+msgstr ""
-#. AjdC5
+#. qwyFH
#: 03020405.xhp
msgctxt ""
"03020405.xhp\n"
"par_id3149817\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
+msgid "MsgBox FileAttr(#iNumber, 2), 0, \"File attribute\""
+msgstr ""
#. BDNvF
#: 03020406.xhp
@@ -12661,15 +12508,6 @@ msgctxt ""
msgid "Deletes a file from a disk."
msgstr ""
-#. yCjMe
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
#. HsPQ9
#: 03020410.xhp
msgctxt ""
@@ -12679,15 +12517,6 @@ msgctxt ""
msgid "Kill File As String"
msgstr "Kill File As String"
-#. TMQQP
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. FDnBF
#: 03020410.xhp
msgctxt ""
@@ -12697,23 +12526,14 @@ msgctxt ""
msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#. qc6LS
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
-#. YN3se
+#. PXEE3
#: 03020410.xhp
msgctxt ""
"03020410.xhp\n"
"par_id3163710\n"
"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr "Kill \"C:\\datafile.dat\" REM File must be created in advance"
+msgid "Kill \"C:\\Users\\ThisUser\\datafile.dat\" ' File must be created in advance"
+msgstr ""
#. hWy62
#: 03020411.xhp
@@ -17755,15 +17575,6 @@ msgctxt ""
msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr ""
-#. d4RXm
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
-
#. fGsdv
#: 03050500.xhp
msgctxt ""
@@ -17782,15 +17593,6 @@ msgctxt ""
msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#. EBAKU
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
-
#. CmqUN
#: 03050500.xhp
msgctxt ""
@@ -17836,15 +17638,6 @@ msgctxt ""
msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#. DximD
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
-
#. fHDcN
#: 03050500.xhp
msgctxt ""
@@ -17854,14 +17647,14 @@ msgctxt ""
msgid "Print #iNumber, \"This is a line of text\""
msgstr "Print #iNumber, \"This is a line of text\""
-#. ZAakH
+#. 2AjwH
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3146916\n"
"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr "MsgBox \"All files will be closed\",0,\"Error\""
+msgid "MsgBox \"All files will be closed\", 0, \"Error\""
+msgstr ""
#. YAR7R
#: 03060000.xhp
@@ -19294,149 +19087,158 @@ msgctxt ""
msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr ""
-#. Rgq36
+#. u5igy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
+msgid "<variable id=\"MOD_h1\"><link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link></variable>"
msgstr ""
-#. 9qGRP
+#. YEMEy
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
"par_id3148686\n"
"help.text"
-msgid "Returns the integer remainder of a division."
+msgid "The <literal>MOD</literal> operator takes in two numeric expressions and returns the remainder of the division."
msgstr ""
-#. UCTaA
+#. BqAV6
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3146795\n"
+"par_id3148004\n"
"help.text"
-msgid "Syntax:"
-msgstr "Notkun:"
+msgid "For example, the result of <literal>21 MOD 6</literal> is <literal>3</literal> because after dividing 21 by 6, the remainder of the division is 3."
+msgstr ""
-#. xEXBJ
+#. 27ipg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3147560\n"
+"par_id111617300964049\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
+msgid "If the <literal>MOD</literal> operation involves non-integer values, both operands are rounded to the nearest integer values. Hence, the value returned by a <literal>MOD</literal> operation will always be an integer number."
msgstr ""
-#. xiy2T
+#. CUAfd
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3149657\n"
+"par_id561617302820104\n"
"help.text"
-msgid "Return value:"
-msgstr "Skilagildi:"
+msgid "For example, the expression <literal>16.4 MOD 5.9</literal> is evaluated as follows:"
+msgstr ""
-#. Pyx3B
+#. 8iqao
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3153380\n"
+"par_id151617302878527\n"
"help.text"
-msgid "Integer"
-msgstr "Integer"
+msgid "The value 16.4 is rounded to 16."
+msgstr ""
-#. ACjC9
+#. x5XXB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3154365\n"
+"par_id351617303087259\n"
"help.text"
-msgid "Parameters:"
-msgstr "Viðföng:"
+msgid "The value 5.9 is rounded to 6."
+msgstr ""
-#. TGRfz
+#. VFy9y
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145172\n"
+"par_id91617303114774\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "The operation <literal>16 MOD 6</literal> returns 4, which is the remainder after dividing 16 by 6."
msgstr ""
-#. uVobi
+#. tjLmf
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151042\n"
+"par_id921617302349290\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgid "Beware that Basic's <literal>MOD</literal> operator and Calc's <link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"MOD Function\">MOD Function</link> behave differently. In Calc, both operands can be decimal values and they're not rounded before division, thus the resulting remainder may be a decimal value."
msgstr ""
-#. PEAiU
+#. xEXBJ
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"hd_id3147287\n"
+"par_id3147560\n"
"help.text"
-msgid "Example:"
-msgstr "Dæmi:"
+msgid "Result = Expression1 MOD Expression2"
+msgstr ""
-#. ucwCQ
+#. Pyx3B
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3161832\n"
+"par_id3153380\n"
"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "print 10 mod 2.5 REM returns 0"
+msgid "Integer"
+msgstr "Integer"
-#. e9pCh
+#. pk9HC
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3146922\n"
+"par_id3145172\n"
"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "print 10 / 2.5 REM returns 4"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the <literal>MOD</literal> operation."
+msgstr ""
-#. M7cEv
+#. BuYDX
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3145273\n"
+"par_id3151042\n"
"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "print 10 mod 5 REM returns 0"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions for which you want to calculate the remainder after the division of <literal>Expression1</literal> by <literal>Expression2</literal>."
+msgstr ""
-#. Gb5Uu
+#. EMeDu
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3150011\n"
+"par_id3149483\n"
"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "print 10 / 5 REM returns 2"
+msgid "Print a Mod b 'Returns 2"
+msgstr ""
-#. Akh2V
+#. C5zCg
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3149483\n"
+"par_id31494778\n"
+"help.text"
+msgid "Print a Mod b 'Returns 0"
+msgstr ""
+
+#. s2JEC
+#: 03070600.xhp
+msgctxt ""
+"03070600.xhp\n"
+"par_id3145273\n"
"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "print 5 mod 10 REM returns 5"
+msgid "Print a Mod b 'Returns 4"
+msgstr ""
-#. KD4AZ
+#. agWNB
#: 03070600.xhp
msgctxt ""
"03070600.xhp\n"
-"par_id3151114\n"
+"par_id771617305550403\n"
"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "print 5 / 10 REM returns 0.5"
+msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158247\" name=\"Calc MOD Function\">MOD Function</link>"
+msgstr ""
#. cFFCi
#: 03080000.xhp
@@ -30286,33 +30088,6 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
msgstr ""
-#. y97EV
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr ""
-
-#. MLjCa
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Stærðfræðitákn\">Stærðfræðitákn</link>"
-
-#. LfWwN
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"help.text"
-msgid "The available comparison operators are described here."
-msgstr ""
-
#. bDVn8
#: 03110100.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/sbasic/shared/03.po b/source/is/helpcontent2/source/text/sbasic/shared/03.po
index 2db8e6c8b8e..bbc20716ca3 100644
--- a/source/is/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/is/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-03-30 18:07+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-07-12 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5182,15 +5182,6 @@ 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 ""
@@ -5416,6 +5407,24 @@ 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 ""
+#. S4DWL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31385839767743\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. G6Qsw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111583839717695\n"
+"help.text"
+msgid "Specify the width of the dialog box."
+msgstr ""
+
#. q8eyc
#: sf_dialog.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/scalc/01.po b/source/is/helpcontent2/source/text/scalc/01.po
index 8a82a82e07b..0a76d9fabea 100644
--- a/source/is/helpcontent2/source/text/scalc/01.po
+++ b/source/is/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-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2020-02-05 20:05+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/is/>\n"
@@ -21058,49 +21058,49 @@ msgctxt ""
msgid "FIXED"
msgstr "FIXED"
-#. KsG3t
+#. k4v7r
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
-"par_id3155833\n"
+"par_id641617285271044\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FEST\">Returns a number as text with a specified number of decimal places and optional thousands separators.</ahelp>"
msgstr ""
-#. CEftz
+#. vGkWA
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3147567\n"
"help.text"
-msgid "FIXED(Number; Decimals [; NoThousandsSeparators])"
+msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
msgstr ""
-#. 5cYW8
+#. Lu9oq
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3151272\n"
"help.text"
-msgid "<emph>Number</emph> refers to the number to be formatted."
+msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
msgstr ""
-#. hSSQr
+#. 5zSz5
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3156322\n"
"help.text"
-msgid "<emph>Decimals</emph> refers to the number of decimal places to be displayed."
+msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
msgstr ""
-#. HQVFQ
+#. MccEk
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3150877\n"
"help.text"
-msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
+msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
msgstr ""
#. nDs7Q
@@ -21112,13 +21112,49 @@ msgctxt ""
msgid "<item type=\"input\">=FIXED(1234567.89;3)</item> returns 1,234,567.890 as a text string."
msgstr ""
-#. ZsPhE
+#. eo6wB
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id5282143\n"
"help.text"
-msgid "<item type=\"input\">=FIXED(1234567.89;3;1)</item> returns 1234567.890 as a text string."
+msgid "<item type=\"input\">=FIXED(123456.789;;TRUE)</item> returns 123456.79 as a text string."
+msgstr ""
+
+#. U8QaS
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id21617202293406\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.6789;-2)</item> returns 12,300 as a text string."
+msgstr ""
+
+#. iqSth
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id161617202295558\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12134567.89;-3;1)</item> returns 12135000 as a text string."
+msgstr ""
+
+#. NmXWD
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id451617286696878\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789;3/4)</item> returns 12,346 as a text string."
+msgstr ""
+
+#. wHPtQ
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id371617286698199\n"
+"help.text"
+msgid "<item type=\"input\">=FIXED(12345.789,8/5)</item> returns 12,345.8 as a text string."
msgstr ""
#. zxsGX
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index 37d0483cd34..8639e4ace7b 100644
--- a/source/is/helpcontent2/source/text/shared/01.po
+++ b/source/is/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-29 16:02+0200\n"
+"POT-Creation-Date: 2021-04-06 14:45+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25297,13 +25297,13 @@ msgctxt ""
msgid "New Style from Selection"
msgstr ""
-#. oDtUF
+#. CTRWm
#: 05140100.xhp
msgctxt ""
"05140100.xhp\n"
"par_id461608255735789\n"
"help.text"
-msgid "Create new <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraph, character, frame, page, list, and table</caseinline><caseinline select=\"CALC\">cell and page</caseinline> <defaultinline>graphic</defaultinline></switchinline>styles<switchinline select=\"appl\"><caseinline select=\"WRITER\">from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">from manually modified cell or page formatting.</caseinline> <defaultinline>from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create new paragraph, character, frame, page, list, and table styles from objects that are formatted manually to the new style that you want to create.</caseinline><caseinline select=\"CALC\">Create new cell and page styles from manually modified cell or page formatting.</caseinline><defaultinline>Create new graphic styles from objects that you have formatted manually to the new style that you want to create.</defaultinline></switchinline>"
msgstr ""
#. 5nxxW
@@ -41813,13 +41813,13 @@ msgctxt ""
msgid "Assign Macro"
msgstr "Úthluta fjölva"
-#. rtEXf
+#. mCRaE
#: 06140500.xhp
msgctxt ""
"06140500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06130020.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
#. 6a78S
diff --git a/source/is/helpcontent2/source/text/swriter/01.po b/source/is/helpcontent2/source/text/swriter/01.po
index d1a9b6d825e..754bdc78d42 100644
--- a/source/is/helpcontent2/source/text/swriter/01.po
+++ b/source/is/helpcontent2/source/text/swriter/01.po