summaryrefslogtreecommitdiff
path: root/chart2/source/tools/LabeledDataSequence.cxx
blob: bf7b13443d1d6af87c7642643f87110451138ff5 (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
/* -*- 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 <LabeledDataSequence.hxx>
#include <ModifyListenerHelper.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <utility>

namespace com::sun::star::uno { class XComponentContext; }

using namespace ::com::sun::star;

using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;

namespace chart
{

LabeledDataSequence::LabeledDataSequence() :
        m_xModifyEventForwarder( new ModifyEventForwarder() )
{}

LabeledDataSequence::LabeledDataSequence(
    uno::Reference< chart2::data::XDataSequence > xValues ) :
        m_xData(std::move( xValues )),
        m_xModifyEventForwarder( new ModifyEventForwarder() )
{
    ModifyListenerHelper::addListener( m_xData, m_xModifyEventForwarder );
}

LabeledDataSequence::LabeledDataSequence(
    uno::Reference< chart2::data::XDataSequence > xValues,
    uno::Reference< chart2::data::XDataSequence > xLabel ) :
        m_xData(std::move( xValues )),
        m_xLabel(std::move( xLabel )),
        m_xModifyEventForwarder( new ModifyEventForwarder() )
{
    ModifyListenerHelper::addListener( m_xData, m_xModifyEventForwarder );
    ModifyListenerHelper::addListener( m_xLabel, m_xModifyEventForwarder );
}

LabeledDataSequence::LabeledDataSequence( const LabeledDataSequence& rSource ) :
    impl::LabeledDataSequence_Base(),
    m_xModifyEventForwarder( new ModifyEventForwarder() )
{
    uno::Reference< chart2::data::XDataSequence > xNewValues( rSource.m_xData );
    uno::Reference< chart2::data::XDataSequence > xNewLabel( rSource.m_xLabel );

    uno::Reference< util::XCloneable > xLabelCloneable( rSource.m_xLabel, uno::UNO_QUERY );
    if( xLabelCloneable.is())
        xNewLabel.set( xLabelCloneable->createClone(), uno::UNO_QUERY );

    uno::Reference< util::XCloneable > xValuesCloneable( rSource.m_xData, uno::UNO_QUERY );
    if( xValuesCloneable.is())
        xNewValues.set( xValuesCloneable->createClone(), uno::UNO_QUERY );

    m_xData = xNewValues;
    m_xLabel = xNewLabel;

    ModifyListenerHelper::addListener( m_xData, m_xModifyEventForwarder );
    ModifyListenerHelper::addListener( m_xLabel, m_xModifyEventForwarder );
}

LabeledDataSequence::~LabeledDataSequence()
{
    if( m_xModifyEventForwarder.is())
    {
        if( m_xData.is())
            ModifyListenerHelper::removeListener( m_xData, m_xModifyEventForwarder );
        if( m_xLabel.is())
            ModifyListenerHelper::removeListener( m_xLabel, m_xModifyEventForwarder );
    }
}

// ____ XLabeledDataSequence ____
uno::Reference< chart2::data::XDataSequence > SAL_CALL LabeledDataSequence::getValues()
{
    return m_xData;
}

void SAL_CALL LabeledDataSequence::setValues(
    const uno::Reference< chart2::data::XDataSequence >& xSequence )
{
    if( m_xData != xSequence )
    {
        ModifyListenerHelper::removeListener( m_xData, m_xModifyEventForwarder );
        m_xData = xSequence;
        ModifyListenerHelper::addListener( m_xData, m_xModifyEventForwarder );
    }
}

uno::Reference< chart2::data::XDataSequence > SAL_CALL LabeledDataSequence::getLabel()
{
    return m_xLabel;
}

void SAL_CALL LabeledDataSequence::setLabel(
    const uno::Reference< chart2::data::XDataSequence >& xSequence )
{
    if( m_xLabel != xSequence )
    {
        ModifyListenerHelper::removeListener( m_xLabel, m_xModifyEventForwarder );
        m_xLabel = xSequence;
        ModifyListenerHelper::addListener( m_xLabel, m_xModifyEventForwarder );
    }
}

// ____ XCloneable ____
uno::Reference< util::XCloneable > SAL_CALL LabeledDataSequence::createClone()
{
    uno::Reference< chart2::data::XDataSequence > xNewValues( m_xData );
    uno::Reference< chart2::data::XDataSequence > xNewLabel( m_xLabel );

    uno::Reference< util::XCloneable > xLabelCloneable( m_xLabel, uno::UNO_QUERY );
    if( xLabelCloneable.is())
        xNewLabel.set( xLabelCloneable->createClone(), uno::UNO_QUERY );

    uno::Reference< util::XCloneable > xValuesCloneable( m_xData, uno::UNO_QUERY );
    if( xValuesCloneable.is())
        xNewValues.set( xValuesCloneable->createClone(), uno::UNO_QUERY );

    return uno::Reference< util::XCloneable >(
        new LabeledDataSequence( xNewValues, xNewLabel ) );
}

// ____ XModifyBroadcaster ____
void SAL_CALL LabeledDataSequence::addModifyListener( const Reference< util::XModifyListener >& aListener )
{
    m_xModifyEventForwarder->addModifyListener( aListener );
}

void SAL_CALL LabeledDataSequence::removeModifyListener( const Reference< util::XModifyListener >& aListener )
{
    m_xModifyEventForwarder->removeModifyListener( aListener );
}

OUString SAL_CALL LabeledDataSequence::getImplementationName()
{
    return "com.sun.star.comp.chart2.LabeledDataSequence";
}

sal_Bool SAL_CALL LabeledDataSequence::supportsService( const OUString& rServiceName )
{
    return cppu::supportsService(this, rServiceName);
}

css::uno::Sequence< OUString > SAL_CALL LabeledDataSequence::getSupportedServiceNames()
{
    return { "com.sun.star.chart2.data.LabeledDataSequence" };
}

} //  namespace chart

extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface *
com_sun_star_comp_chart2_LabeledDataSequence_get_implementation(css::uno::XComponentContext *,
        css::uno::Sequence<css::uno::Any> const &)
{
    return cppu::acquire(new ::chart::LabeledDataSequence );
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
'width: 80.0%;'/> -rw-r--r--source/az/sd/messages.po10
-rw-r--r--source/az/sfx2/messages.po108
-rw-r--r--source/az/starmath/messages.po57
-rw-r--r--source/az/svx/messages.po8
-rw-r--r--source/az/sw/messages.po682
-rw-r--r--source/az/uui/messages.po168
-rw-r--r--source/be/cui/messages.po236
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/be/sc/messages.po612
-rw-r--r--source/be/sd/messages.po10
-rw-r--r--source/be/sfx2/messages.po108
-rw-r--r--source/be/starmath/messages.po57
-rw-r--r--source/be/svx/messages.po8
-rw-r--r--source/be/sw/messages.po682
-rw-r--r--source/be/uui/messages.po172
-rw-r--r--source/bg/cui/messages.po242
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po141
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po1126
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po2857
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po54
-rw-r--r--source/bg/helpcontent2/source/text/shared/06.po14
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/bg/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/bg/sc/messages.po616
-rw-r--r--source/bg/sd/messages.po52
-rw-r--r--source/bg/sfx2/messages.po112
-rw-r--r--source/bg/starmath/messages.po79
-rw-r--r--source/bg/svtools/messages.po6
-rw-r--r--source/bg/svx/messages.po10
-rw-r--r--source/bg/sw/messages.po712
-rw-r--r--source/bg/uui/messages.po180
-rw-r--r--source/bg/vcl/messages.po16
-rw-r--r--source/bn-IN/cui/messages.po236
-rw-r--r--source/bn-IN/extras/source/autocorr/emoji.po1845
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po128
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/bn-IN/sc/messages.po612
-rw-r--r--source/bn-IN/sd/messages.po10
-rw-r--r--source/bn-IN/sfx2/messages.po108
-rw-r--r--source/bn-IN/starmath/messages.po57
-rw-r--r--source/bn-IN/svx/messages.po8
-rw-r--r--source/bn-IN/sw/messages.po682
-rw-r--r--source/bn-IN/uui/messages.po173
-rw-r--r--source/bn/cui/messages.po243
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/bn/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/bn/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/explorer/database.po9
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/bn/sc/messages.po612
-rw-r--r--source/bn/sd/messages.po10
-rw-r--r--source/bn/sfx2/messages.po108
-rw-r--r--source/bn/starmath/messages.po57
-rw-r--r--source/bn/svx/messages.po8
-rw-r--r--source/bn/sw/messages.po682
-rw-r--r--source/bn/uui/messages.po171
-rw-r--r--source/bo/cui/messages.po237
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/bo/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/bo/sc/messages.po612
-rw-r--r--source/bo/sd/messages.po10
-rw-r--r--source/bo/sfx2/messages.po108
-rw-r--r--source/bo/starmath/messages.po57
-rw-r--r--source/bo/svx/messages.po8
-rw-r--r--source/bo/sw/messages.po682
-rw-r--r--source/bo/uui/messages.po171
-rw-r--r--source/br/cui/messages.po236
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/br/sc/messages.po612
-rw-r--r--source/br/sd/messages.po10
-rw-r--r--source/br/sfx2/messages.po108
-rw-r--r--source/br/starmath/messages.po57
-rw-r--r--source/br/svx/messages.po8
-rw-r--r--source/br/sw/messages.po682
-rw-r--r--source/br/uui/messages.po171
-rw-r--r--source/brx/cui/messages.po237
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/brx/sc/messages.po612
-rw-r--r--source/brx/sd/messages.po10
-rw-r--r--source/brx/sfx2/messages.po108
-rw-r--r--source/brx/starmath/messages.po57
-rw-r--r--source/brx/svx/messages.po8
-rw-r--r--source/brx/sw/messages.po682
-rw-r--r--source/brx/uui/messages.po168
-rw-r--r--source/bs/cui/messages.po243
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/bs/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/bs/sc/messages.po612
-rw-r--r--source/bs/sd/messages.po10
-rw-r--r--source/bs/sfx2/messages.po108
-rw-r--r--source/bs/starmath/messages.po57
-rw-r--r--source/bs/svx/messages.po8
-rw-r--r--source/bs/sw/messages.po682
-rw-r--r--source/bs/uui/messages.po171
-rw-r--r--source/ca-valencia/cui/messages.po238
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ca-valencia/sc/messages.po612
-rw-r--r--source/ca-valencia/sd/messages.po10
-rw-r--r--source/ca-valencia/sfx2/messages.po108
-rw-r--r--source/ca-valencia/starmath/messages.po57
-rw-r--r--source/ca-valencia/svx/messages.po8
-rw-r--r--source/ca-valencia/sw/messages.po682
-rw-r--r--source/ca-valencia/uui/messages.po180
-rw-r--r--source/ca/cui/messages.po256
-rw-r--r--source/ca/dictionaries/eo.po12
-rw-r--r--source/ca/dictionaries/mn_MN.po12
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po1130
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po2854
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/ca/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ca/sc/messages.po618
-rw-r--r--source/ca/scp2/source/ooo.po10
-rw-r--r--source/ca/sd/messages.po24
-rw-r--r--source/ca/sfx2/messages.po140
-rw-r--r--source/ca/starmath/messages.po73
-rw-r--r--source/ca/svtools/messages.po18
-rw-r--r--source/ca/svx/messages.po16
-rw-r--r--source/ca/sw/messages.po684
-rw-r--r--source/ca/uui/messages.po180
-rw-r--r--source/ca/vcl/messages.po27
-rw-r--r--source/ckb/cui/messages.po236
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ckb/sc/messages.po612
-rw-r--r--source/ckb/sd/messages.po10
-rw-r--r--source/ckb/sfx2/messages.po108
-rw-r--r--source/ckb/starmath/messages.po57
-rw-r--r--source/ckb/svx/messages.po8
-rw-r--r--source/ckb/sw/messages.po684
-rw-r--r--source/ckb/uui/messages.po168
-rw-r--r--source/cs/cui/messages.po242
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po2851
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/cs/helpcontent2/source/text/shared/06.po14
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/cs/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/cs/sc/messages.po616
-rw-r--r--source/cs/sd/messages.po52
-rw-r--r--source/cs/sfx2/messages.po112
-rw-r--r--source/cs/starmath/messages.po73
-rw-r--r--source/cs/svtools/messages.po6
-rw-r--r--source/cs/svx/messages.po10
-rw-r--r--source/cs/sw/messages.po704
-rw-r--r--source/cs/uui/messages.po180
-rw-r--r--source/cs/vcl/messages.po16
-rw-r--r--source/cy/cui/messages.po242
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/cy/sc/messages.po616
-rw-r--r--source/cy/sd/messages.po52
-rw-r--r--source/cy/sfx2/messages.po114
-rw-r--r--source/cy/starmath/messages.po73
-rw-r--r--source/cy/svtools/messages.po6
-rw-r--r--source/cy/svx/messages.po10
-rw-r--r--source/cy/sw/messages.po704
-rw-r--r--source/cy/uui/messages.po180
-rw-r--r--source/cy/vcl/messages.po16
-rw-r--r--source/da/cui/messages.po250
-rw-r--r--source/da/dictionaries/mn_MN.po12
-rw-r--r--source/da/extras/source/gallery/share.po8
-rw-r--r--source/da/helpcontent2/source/text/sbasic/python.po6
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po255
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po1938
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po2983
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po202
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po14
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po110
-rw-r--r--source/da/helpcontent2/source/text/shared/06.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/da/sc/messages.po612
-rw-r--r--source/da/scp2/source/ooo.po8
-rw-r--r--source/da/sd/messages.po14
-rw-r--r--source/da/sfx2/messages.po120
-rw-r--r--source/da/starmath/messages.po57
-rw-r--r--source/da/svtools/messages.po8
-rw-r--r--source/da/svx/messages.po8
-rw-r--r--source/da/sw/messages.po698
-rw-r--r--source/da/uui/messages.po180
-rw-r--r--source/da/vcl/messages.po6
-rw-r--r--source/de/cui/messages.po238
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po2851
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/de/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/de/sc/messages.po612
-rw-r--r--source/de/sd/messages.po10
-rw-r--r--source/de/sfx2/messages.po108
-rw-r--r--source/de/starmath/messages.po57
-rw-r--r--source/de/svx/messages.po10
-rw-r--r--source/de/sw/messages.po686
-rw-r--r--source/de/uui/messages.po180
-rw-r--r--source/dgo/cui/messages.po243
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/dgo/sc/messages.po612
-rw-r--r--source/dgo/sd/messages.po10
-rw-r--r--source/dgo/sfx2/messages.po108
-rw-r--r--source/dgo/starmath/messages.po57
-rw-r--r--source/dgo/svx/messages.po8
-rw-r--r--source/dgo/sw/messages.po682
-rw-r--r--source/dgo/uui/messages.po171
-rw-r--r--source/dsb/cui/messages.po238
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/dsb/sc/messages.po612
-rw-r--r--source/dsb/sd/messages.po10
-rw-r--r--source/dsb/sfx2/messages.po108
-rw-r--r--source/dsb/starmath/messages.po57
-rw-r--r--source/dsb/svx/messages.po10
-rw-r--r--source/dsb/sw/messages.po682
-rw-r--r--source/dsb/uui/messages.po180
-rw-r--r--source/dz/cui/messages.po237
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/dz/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/dz/sc/messages.po612
-rw-r--r--source/dz/sd/messages.po10
-rw-r--r--source/dz/sfx2/messages.po108
-rw-r--r--source/dz/starmath/messages.po57
-rw-r--r--source/dz/svx/messages.po8
-rw-r--r--source/dz/sw/messages.po682
-rw-r--r--source/dz/uui/messages.po171
-rw-r--r--source/el/cui/messages.po242
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po2861
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/el/helpcontent2/source/text/sdatabase.po280
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/el/helpcontent2/source/text/shared/06.po14
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/el/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/el/sc/messages.po616
-rw-r--r--source/el/sd/messages.po52
-rw-r--r--source/el/sfx2/messages.po108
-rw-r--r--source/el/starmath/messages.po73
-rw-r--r--source/el/svtools/messages.po6
-rw-r--r--source/el/svx/messages.po10
-rw-r--r--source/el/sw/messages.po704
-rw-r--r--source/el/uui/messages.po180
-rw-r--r--source/el/vcl/messages.po16
-rw-r--r--source/en-GB/cui/messages.po238
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po2851
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/en-GB/sc/messages.po612
-rw-r--r--source/en-GB/sd/messages.po10
-rw-r--r--source/en-GB/sfx2/messages.po108
-rw-r--r--source/en-GB/starmath/messages.po57
-rw-r--r--source/en-GB/svx/messages.po8
-rw-r--r--source/en-GB/sw/messages.po682
-rw-r--r--source/en-GB/uui/messages.po180
-rw-r--r--source/en-ZA/cui/messages.po243
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/en-ZA/sc/messages.po612
-rw-r--r--source/en-ZA/sd/messages.po10
-rw-r--r--source/en-ZA/sfx2/messages.po108
-rw-r--r--source/en-ZA/starmath/messages.po57
-rw-r--r--source/en-ZA/svx/messages.po8
-rw-r--r--source/en-ZA/sw/messages.po682
-rw-r--r--source/en-ZA/uui/messages.po171
-rw-r--r--source/eo/basctl/messages.po6
-rw-r--r--source/eo/cui/messages.po238
-rw-r--r--source/eo/dictionaries/mn_MN.po12
-rw-r--r--source/eo/extras/source/gallery/share.po8
-rw-r--r--source/eo/framework/messages.po40
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/eo/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po100
-rw-r--r--source/eo/sc/messages.po612
-rw-r--r--source/eo/sd/messages.po38
-rw-r--r--source/eo/sfx2/messages.po108
-rw-r--r--source/eo/starmath/messages.po57
-rw-r--r--source/eo/svtools/messages.po10
-rw-r--r--source/eo/svx/messages.po58
-rw-r--r--source/eo/sw/messages.po826
-rw-r--r--source/eo/uui/messages.po180
-rw-r--r--source/es/chart2/messages.po8
-rw-r--r--source/es/cui/messages.po294
-rw-r--r--source/es/extensions/messages.po6
-rw-r--r--source/es/filter/messages.po48
-rw-r--r--source/es/framework/messages.po4
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po105
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po1308
-rw-r--r--source/es/helpcontent2/source/text/scalc.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po2855
-rw-r--r--source/es/helpcontent2/source/text/scalc/02.po20
-rw-r--r--source/es/helpcontent2/source/text/scalc/04.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po16
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po180
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po20
-rw-r--r--source/es/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/06.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po28
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/es/helpcontent2/source/text/smath.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po32
-rw-r--r--source/es/helpcontent2/source/text/swriter/librelogo.po4
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po40
-rw-r--r--source/es/sc/messages.po660
-rw-r--r--source/es/sd/messages.po35
-rw-r--r--source/es/sfx2/messages.po114
-rw-r--r--source/es/starmath/messages.po67
-rw-r--r--source/es/svtools/messages.po8
-rw-r--r--source/es/svx/messages.po28
-rw-r--r--source/es/sw/messages.po742
-rw-r--r--source/es/uui/messages.po182
-rw-r--r--source/es/vcl/messages.po6
-rw-r--r--source/es/wizards/messages.po6
-rw-r--r--source/et/cui/messages.po238
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/et/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/et/sc/messages.po612
-rw-r--r--source/et/sd/messages.po10
-rw-r--r--source/et/sfx2/messages.po108
-rw-r--r--source/et/starmath/messages.po57
-rw-r--r--source/et/svx/messages.po8
-rw-r--r--source/et/sw/messages.po682
-rw-r--r--source/et/uui/messages.po181
-rw-r--r--source/eu/cui/messages.po242
-rw-r--r--source/eu/dbaccess/messages.po4
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po307
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po2386
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po3066
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/eu/helpcontent2/source/text/sdatabase.po169
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/eu/helpcontent2/source/text/shared/06.po12
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/eu/sc/messages.po620
-rw-r--r--source/eu/sd/messages.po52
-rw-r--r--source/eu/sfx2/messages.po112
-rw-r--r--source/eu/starmath/messages.po73
-rw-r--r--source/eu/svtools/messages.po12
-rw-r--r--source/eu/svx/messages.po10
-rw-r--r--source/eu/sw/messages.po708
-rw-r--r--source/eu/uui/messages.po180
-rw-r--r--source/eu/vcl/messages.po16
-rw-r--r--source/fa/cui/messages.po237
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/fa/sc/messages.po612
-rw-r--r--source/fa/sd/messages.po10
-rw-r--r--source/fa/sfx2/messages.po108
-rw-r--r--source/fa/starmath/messages.po57
-rw-r--r--source/fa/svx/messages.po8
-rw-r--r--source/fa/sw/messages.po682
-rw-r--r--source/fa/uui/messages.po168
-rw-r--r--source/fi/cui/messages.po238
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po2841
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/fi/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/fi/sc/messages.po616
-rw-r--r--source/fi/sd/messages.po16
-rw-r--r--source/fi/sfx2/messages.po108
-rw-r--r--source/fi/starmath/messages.po71
-rw-r--r--source/fi/svx/messages.po18
-rw-r--r--source/fi/sw/messages.po682
-rw-r--r--source/fi/uui/messages.po180
-rw-r--r--source/fi/vcl/messages.po11
-rw-r--r--source/fr/cui/messages.po238
-rw-r--r--source/fr/dbaccess/messages.po4
-rw-r--r--source/fr/dictionaries/mn_MN.po12
-rw-r--r--source/fr/extras/source/gallery/share.po8
-rw-r--r--source/fr/fpicker/messages.po10
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po2875
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/fr/helpcontent2/source/text/sdatabase.po6
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po498
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/fr/helpcontent2/source/text/shared/06.po14
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po44
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/fr/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/fr/sc/messages.po612
-rw-r--r--source/fr/scp2/source/ooo.po12
-rw-r--r--source/fr/sd/messages.po10
-rw-r--r--source/fr/sfx2/messages.po108
-rw-r--r--source/fr/starmath/messages.po77
-rw-r--r--source/fr/svtools/messages.po16
-rw-r--r--source/fr/svx/messages.po8
-rw-r--r--source/fr/sw/messages.po682
-rw-r--r--source/fr/uui/messages.po182
-rw-r--r--source/fr/vcl/messages.po6
-rw-r--r--source/fr/xmlsecurity/messages.po4
-rw-r--r--source/fur/cui/messages.po236
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/fur/sc/messages.po612
-rw-r--r--source/fur/sd/messages.po10
-rw-r--r--source/fur/sfx2/messages.po108
-rw-r--r--source/fur/starmath/messages.po57
-rw-r--r--source/fur/svx/messages.po8
-rw-r--r--source/fur/sw/messages.po682
-rw-r--r--source/fur/uui/messages.po180
-rw-r--r--source/fy/cui/messages.po260
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po62
-rw-r--r--source/fy/sc/messages.po612
-rw-r--r--source/fy/scp2/source/ooo.po12
-rw-r--r--source/fy/sd/messages.po10
-rw-r--r--source/fy/sfx2/messages.po108
-rw-r--r--source/fy/starmath/messages.po57
-rw-r--r--source/fy/svtools/messages.po10
-rw-r--r--source/fy/svx/messages.po8
-rw-r--r--source/fy/sw/messages.po682
-rw-r--r--source/fy/uui/messages.po180
-rw-r--r--source/ga/cui/messages.po236
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ga/sc/messages.po612
-rw-r--r--source/ga/sd/messages.po10
-rw-r--r--source/ga/sfx2/messages.po108
-rw-r--r--source/ga/starmath/messages.po57
-rw-r--r--source/ga/svx/messages.po8
-rw-r--r--source/ga/sw/messages.po682
-rw-r--r--source/ga/uui/messages.po180
-rw-r--r--source/gd/cui/messages.po236
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/gd/sc/messages.po612
-rw-r--r--source/gd/sd/messages.po10
-rw-r--r--source/gd/sfx2/messages.po108
-rw-r--r--source/gd/starmath/messages.po57
-rw-r--r--source/gd/svx/messages.po8
-rw-r--r--source/gd/sw/messages.po682
-rw-r--r--source/gd/uui/messages.po180
-rw-r--r--source/gl/cui/messages.po244
-rw-r--r--source/gl/extras/source/gallery/share.po8
-rw-r--r--source/gl/framework/messages.po8
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/gl/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/gl/sc/messages.po616
-rw-r--r--source/gl/sd/messages.po52
-rw-r--r--source/gl/sfx2/messages.po112
-rw-r--r--source/gl/starmath/messages.po73
-rw-r--r--source/gl/svtools/messages.po6
-rw-r--r--source/gl/svx/messages.po10
-rw-r--r--source/gl/sw/messages.po796
-rw-r--r--source/gl/uui/messages.po180
-rw-r--r--source/gl/vcl/messages.po16
-rw-r--r--source/gl/wizards/source/resources.po8
-rw-r--r--source/gu/cui/messages.po243
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/gu/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/gu/sc/messages.po612
-rw-r--r--source/gu/sd/messages.po10
-rw-r--r--source/gu/sfx2/messages.po108
-rw-r--r--source/gu/starmath/messages.po57
-rw-r--r--source/gu/svx/messages.po8
-rw-r--r--source/gu/sw/messages.po682
-rw-r--r--source/gu/uui/messages.po171
-rw-r--r--source/gug/cui/messages.po236
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po105
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po1308
-rw-r--r--source/gug/helpcontent2/source/text/scalc.po6
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po2855
-rw-r--r--source/gug/helpcontent2/source/text/scalc/02.po20
-rw-r--r--source/gug/helpcontent2/source/text/scalc/04.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po16
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po180
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po20
-rw-r--r--source/gug/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared/06.po10
-rw-r--r--source/gug/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po28
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/gug/helpcontent2/source/text/smath.po8
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po18
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po32
-rw-r--r--source/gug/helpcontent2/source/text/swriter/librelogo.po4
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/gug/sc/messages.po612
-rw-r--r--source/gug/sd/messages.po10
-rw-r--r--source/gug/sfx2/messages.po108
-rw-r--r--source/gug/starmath/messages.po57
-rw-r--r--source/gug/svx/messages.po8
-rw-r--r--source/gug/sw/messages.po682
-rw-r--r--source/gug/uui/messages.po168
-rw-r--r--source/he/cui/messages.po245
-rw-r--r--source/he/extensions/messages.po13
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/he/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/he/sc/messages.po612
-rw-r--r--source/he/sd/messages.po10
-rw-r--r--source/he/sfx2/messages.po108
-rw-r--r--source/he/starmath/messages.po57
-rw-r--r--source/he/svtools/messages.po40
-rw-r--r--source/he/svx/messages.po8
-rw-r--r--source/he/sw/messages.po682
-rw-r--r--source/he/uui/messages.po180
-rw-r--r--source/hi/cui/messages.po243
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po2841
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/hi/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/hi/sc/messages.po612
-rw-r--r--source/hi/sd/messages.po10
-rw-r--r--source/hi/sfx2/messages.po108
-rw-r--r--source/hi/starmath/messages.po57
-rw-r--r--source/hi/svx/messages.po8
-rw-r--r--source/hi/sw/messages.po682
-rw-r--r--source/hi/uui/messages.po171
-rw-r--r--source/hr/cui/messages.po238
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/hr/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/hr/sc/messages.po612
-rw-r--r--source/hr/sd/messages.po10
-rw-r--r--source/hr/sfx2/messages.po108
-rw-r--r--source/hr/starmath/messages.po57
-rw-r--r--source/hr/svx/messages.po8
-rw-r--r--source/hr/sw/messages.po682
-rw-r--r--source/hr/uui/messages.po182
-rw-r--r--source/hsb/cui/messages.po238
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/hsb/sc/messages.po612
-rw-r--r--source/hsb/sd/messages.po10
-rw-r--r--source/hsb/sfx2/messages.po108
-rw-r--r--source/hsb/starmath/messages.po57
-rw-r--r--source/hsb/svx/messages.po10
-rw-r--r--source/hsb/sw/messages.po682
-rw-r--r--source/hsb/uui/messages.po180
-rw-r--r--source/hu/cui/messages.po238
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/hu/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/hu/sc/messages.po612
-rw-r--r--source/hu/sd/messages.po10
-rw-r--r--source/hu/sfx2/messages.po108
-rw-r--r--source/hu/starmath/messages.po57
-rw-r--r--source/hu/svx/messages.po8
-rw-r--r--source/hu/sw/messages.po682
-rw-r--r--source/hu/uui/messages.po180
-rw-r--r--source/id/basctl/messages.po28
-rw-r--r--source/id/basic/messages.po16
-rw-r--r--source/id/chart2/messages.po24
-rw-r--r--source/id/connectivity/messages.po18
-rw-r--r--source/id/cui/messages.po668
-rw-r--r--source/id/dbaccess/messages.po80
-rw-r--r--source/id/desktop/messages.po40
-rw-r--r--source/id/editeng/messages.po12
-rw-r--r--source/id/extensions/messages.po124
-rw-r--r--source/id/extras/source/autocorr/emoji.po8
-rw-r--r--source/id/filter/messages.po22
-rw-r--r--source/id/forms/messages.po12
-rw-r--r--source/id/formula/messages.po4
-rw-r--r--source/id/fpicker/messages.po4
-rw-r--r--source/id/framework/messages.po14
-rw-r--r--source/id/helpcontent2/source/text/sbasic/guide.po4
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po83
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po1124
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po10
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po2917
-rw-r--r--source/id/helpcontent2/source/text/scalc/02.po4
-rw-r--r--source/id/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/id/helpcontent2/source/text/scalc/05.po4
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/id/helpcontent2/source/text/schart.po14
-rw-r--r--source/id/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/id/helpcontent2/source/text/schart/04.po4
-rw-r--r--source/id/helpcontent2/source/text/sdatabase.po12
-rw-r--r--source/id/helpcontent2/source/text/sdraw.po4
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po28
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po194
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/id/helpcontent2/source/text/shared/04.po68
-rw-r--r--source/id/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/07.po21
-rw-r--r--source/id/helpcontent2/source/text/shared/autopi.po20
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po18
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po102
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po62
-rw-r--r--source/id/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po20
-rw-r--r--source/id/helpcontent2/source/text/simpress/02.po98
-rw-r--r--source/id/helpcontent2/source/text/simpress/guide.po78
-rw-r--r--source/id/helpcontent2/source/text/smath/00.po82
-rw-r--r--source/id/helpcontent2/source/text/smath/01.po14
-rw-r--r--source/id/helpcontent2/source/text/smath/04.po40
-rw-r--r--source/id/helpcontent2/source/text/swriter.po14
-rw-r--r--source/id/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po136
-rw-r--r--source/id/helpcontent2/source/text/swriter/02.po14
-rw-r--r--source/id/helpcontent2/source/text/swriter/04.po18
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/id/helpcontent2/source/text/swriter/librelogo.po4
-rw-r--r--source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po34
-rw-r--r--source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po4
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office.po50
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po388
-rw-r--r--source/id/readlicense_oo/docs.po18
-rw-r--r--source/id/reportdesign/messages.po16
-rw-r--r--source/id/sc/messages.po1069
-rw-r--r--source/id/scaddins/messages.po26
-rw-r--r--source/id/scp2/source/calc.po6
-rw-r--r--source/id/scp2/source/onlineupdate.po21
-rw-r--r--source/id/scp2/source/ooo.po6
-rw-r--r--source/id/sd/messages.po151
-rw-r--r--source/id/setup_native/source/mac.po26
-rw-r--r--source/id/sfx2/messages.po180
-rw-r--r--source/id/starmath/messages.po77
-rw-r--r--source/id/svl/messages.po4
-rw-r--r--source/id/svtools/messages.po42
-rw-r--r--source/id/svx/messages.po204
-rw-r--r--source/id/sw/messages.po1638
-rw-r--r--source/id/swext/mediawiki/help.po18
-rw-r--r--source/id/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po10
-rw-r--r--source/id/sysui/desktop/share.po4
-rw-r--r--source/id/uui/messages.po188
-rw-r--r--source/id/vcl/messages.po16
-rw-r--r--source/id/wizards/messages.po12
-rw-r--r--source/id/wizards/source/resources.po130
-rw-r--r--source/id/writerperfect/messages.po8
-rw-r--r--source/id/xmlsecurity/messages.po16
-rw-r--r--source/is/cui/messages.po238
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/is/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/is/sc/messages.po612
-rw-r--r--source/is/sd/messages.po10
-rw-r--r--source/is/sfx2/messages.po108
-rw-r--r--source/is/starmath/messages.po83
-rw-r--r--source/is/svx/messages.po8
-rw-r--r--source/is/sw/messages.po682
-rw-r--r--source/is/uui/messages.po180
-rw-r--r--source/it/cui/messages.po242
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po2851
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/it/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/it/sc/messages.po612
-rw-r--r--source/it/sd/messages.po20
-rw-r--r--source/it/sfx2/messages.po108
-rw-r--r--source/it/starmath/messages.po57
-rw-r--r--source/it/svx/messages.po10
-rw-r--r--source/it/sw/messages.po682
-rw-r--r--source/it/uui/messages.po180
-rw-r--r--source/ja/cui/messages.po282
-rw-r--r--source/ja/dictionaries/de.po14
-rw-r--r--source/ja/dictionaries/kmr_Latn.po18
-rw-r--r--source/ja/dictionaries/no.po17
-rw-r--r--source/ja/dictionaries/pt_BR.po17
-rw-r--r--source/ja/dictionaries/sr.po16
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/python.po88
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/ja/helpcontent2/source/text/scalc/05.po48
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ja/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/ja/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ja/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/ja/helpcontent2/source/text/swriter/menu.po10
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/ja/sc/messages.po704
-rw-r--r--source/ja/scp2/source/ooo.po40
-rw-r--r--source/ja/sd/messages.po16
-rw-r--r--source/ja/sfx2/messages.po108
-rw-r--r--source/ja/starmath/messages.po63
-rw-r--r--source/ja/svtools/messages.po386
-rw-r--r--source/ja/svx/messages.po22
-rw-r--r--source/ja/sw/messages.po858
-rw-r--r--source/ja/uui/messages.po182
-rw-r--r--source/ja/vcl/messages.po10
-rw-r--r--source/ja/xmlsecurity/messages.po18
-rw-r--r--source/jv/cui/messages.po237
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/jv/sc/messages.po612
-rw-r--r--source/jv/sd/messages.po10
-rw-r--r--source/jv/sfx2/messages.po108
-rw-r--r--source/jv/starmath/messages.po57
-rw-r--r--source/jv/svx/messages.po8
-rw-r--r--source/jv/sw/messages.po682
-rw-r--r--source/jv/uui/messages.po168
-rw-r--r--source/ka/cui/messages.po242
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ka/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ka/sc/messages.po612
-rw-r--r--source/ka/sd/messages.po10
-rw-r--r--source/ka/sfx2/messages.po108
-rw-r--r--source/ka/starmath/messages.po57
-rw-r--r--source/ka/svx/messages.po8
-rw-r--r--source/ka/sw/messages.po682
-rw-r--r--source/ka/uui/messages.po168
-rw-r--r--source/kab/cui/messages.po238
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kab/sc/messages.po612
-rw-r--r--source/kab/sd/messages.po10
-rw-r--r--source/kab/sfx2/messages.po108
-rw-r--r--source/kab/starmath/messages.po57
-rw-r--r--source/kab/svx/messages.po8
-rw-r--r--source/kab/sw/messages.po682
-rw-r--r--source/kab/uui/messages.po175
-rw-r--r--source/kk/cui/messages.po238
-rw-r--r--source/kk/dictionaries/da_DK.po12
-rw-r--r--source/kk/extras/source/gallery/share.po8
-rw-r--r--source/kk/filter/messages.po14
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kk/sc/messages.po612
-rw-r--r--source/kk/sd/messages.po10
-rw-r--r--source/kk/sfx2/messages.po108
-rw-r--r--source/kk/starmath/messages.po57
-rw-r--r--source/kk/svx/messages.po8
-rw-r--r--source/kk/sw/messages.po684
-rw-r--r--source/kk/uui/messages.po180
-rw-r--r--source/kl/cui/messages.po237
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kl/sc/messages.po612
-rw-r--r--source/kl/sd/messages.po10
-rw-r--r--source/kl/sfx2/messages.po108
-rw-r--r--source/kl/starmath/messages.po57
-rw-r--r--source/kl/svx/messages.po8
-rw-r--r--source/kl/sw/messages.po682
-rw-r--r--source/kl/uui/messages.po168
-rw-r--r--source/km/cui/messages.po243
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/km/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/km/sc/messages.po612
-rw-r--r--source/km/sd/messages.po10
-rw-r--r--source/km/sfx2/messages.po108
-rw-r--r--source/km/starmath/messages.po57
-rw-r--r--source/km/svx/messages.po8
-rw-r--r--source/km/sw/messages.po682
-rw-r--r--source/km/uui/messages.po171
-rw-r--r--source/kmr-Latn/cui/messages.po243
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kmr-Latn/sc/messages.po612
-rw-r--r--source/kmr-Latn/sd/messages.po10
-rw-r--r--source/kmr-Latn/sfx2/messages.po108
-rw-r--r--source/kmr-Latn/starmath/messages.po57
-rw-r--r--source/kmr-Latn/svx/messages.po8
-rw-r--r--source/kmr-Latn/sw/messages.po682
-rw-r--r--source/kmr-Latn/uui/messages.po178
-rw-r--r--source/kn/cui/messages.po242
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kn/sc/messages.po612
-rw-r--r--source/kn/sd/messages.po10
-rw-r--r--source/kn/sfx2/messages.po108
-rw-r--r--source/kn/starmath/messages.po57
-rw-r--r--source/kn/svx/messages.po8
-rw-r--r--source/kn/sw/messages.po682
-rw-r--r--source/kn/uui/messages.po171
-rw-r--r--source/ko/cui/messages.po236
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ko/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ko/sc/messages.po612
-rw-r--r--source/ko/sd/messages.po10
-rw-r--r--source/ko/sfx2/messages.po108
-rw-r--r--source/ko/starmath/messages.po57
-rw-r--r--source/ko/svx/messages.po10
-rw-r--r--source/ko/sw/messages.po682
-rw-r--r--source/ko/uui/messages.po177
-rw-r--r--source/kok/cui/messages.po243
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/kok/sc/messages.po612
-rw-r--r--source/kok/sd/messages.po10
-rw-r--r--source/kok/sfx2/messages.po108
-rw-r--r--source/kok/starmath/messages.po57
-rw-r--r--source/kok/svx/messages.po8
-rw-r--r--source/kok/sw/messages.po682
-rw-r--r--source/kok/uui/messages.po171
-rw-r--r--source/ks/cui/messages.po237
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ks/sc/messages.po612
-rw-r--r--source/ks/sd/messages.po10
-rw-r--r--source/ks/sfx2/messages.po108
-rw-r--r--source/ks/starmath/messages.po57
-rw-r--r--source/ks/svx/messages.po8
-rw-r--r--source/ks/sw/messages.po682
-rw-r--r--source/ks/uui/messages.po168
-rw-r--r--source/ky/cui/messages.po236
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ky/sc/messages.po612
-rw-r--r--source/ky/sd/messages.po10
-rw-r--r--source/ky/sfx2/messages.po108
-rw-r--r--source/ky/starmath/messages.po57
-rw-r--r--source/ky/svx/messages.po8
-rw-r--r--source/ky/sw/messages.po682
-rw-r--r--source/ky/uui/messages.po168
-rw-r--r--source/lb/cui/messages.po237
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/lb/sc/messages.po612
-rw-r--r--source/lb/sd/messages.po10
-rw-r--r--source/lb/sfx2/messages.po108
-rw-r--r--source/lb/starmath/messages.po57
-rw-r--r--source/lb/svx/messages.po8
-rw-r--r--source/lb/sw/messages.po682
-rw-r--r--source/lb/uui/messages.po168
-rw-r--r--source/lo/cui/messages.po237
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po2841
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/lo/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/lo/sc/messages.po612
-rw-r--r--source/lo/sd/messages.po10
-rw-r--r--source/lo/sfx2/messages.po108
-rw-r--r--source/lo/starmath/messages.po57
-rw-r--r--source/lo/svx/messages.po8
-rw-r--r--source/lo/sw/messages.po682
-rw-r--r--source/lo/uui/messages.po168
-rw-r--r--source/lt/cui/messages.po238
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po2851
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/lt/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/lt/sc/messages.po612
-rw-r--r--source/lt/sd/messages.po10
-rw-r--r--source/lt/sfx2/messages.po108
-rw-r--r--source/lt/starmath/messages.po57
-rw-r--r--source/lt/svx/messages.po8
-rw-r--r--source/lt/sw/messages.po682
-rw-r--r--source/lt/uui/messages.po180
-rw-r--r--source/lv/cui/messages.po238
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/lv/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/lv/sc/messages.po612
-rw-r--r--source/lv/sd/messages.po10
-rw-r--r--source/lv/sfx2/messages.po108
-rw-r--r--source/lv/starmath/messages.po57
-rw-r--r--source/lv/svx/messages.po8
-rw-r--r--source/lv/sw/messages.po684
-rw-r--r--source/lv/uui/messages.po181
-rw-r--r--source/mai/cui/messages.po237
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/mai/sc/messages.po612
-rw-r--r--source/mai/sd/messages.po10
-rw-r--r--source/mai/sfx2/messages.po108
-rw-r--r--source/mai/starmath/messages.po57
-rw-r--r--source/mai/svx/messages.po8
-rw-r--r--source/mai/sw/messages.po682
-rw-r--r--source/mai/uui/messages.po168
-rw-r--r--source/mk/cui/messages.po237
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/mk/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/mk/sc/messages.po612
-rw-r--r--source/mk/sd/messages.po10
-rw-r--r--source/mk/sfx2/messages.po108
-rw-r--r--source/mk/starmath/messages.po57
-rw-r--r--source/mk/svx/messages.po8
-rw-r--r--source/mk/sw/messages.po682
-rw-r--r--source/mk/uui/messages.po171
-rw-r--r--source/ml/cui/messages.po243
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ml/sc/messages.po612
-rw-r--r--source/ml/sd/messages.po10
-rw-r--r--source/ml/sfx2/messages.po108
-rw-r--r--source/ml/starmath/messages.po57
-rw-r--r--source/ml/svx/messages.po8
-rw-r--r--source/ml/sw/messages.po682
-rw-r--r--source/ml/uui/messages.po171
-rw-r--r--source/mn/cui/messages.po238
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/mn/sc/messages.po612
-rw-r--r--source/mn/sd/messages.po10
-rw-r--r--source/mn/sfx2/messages.po108
-rw-r--r--source/mn/starmath/messages.po57
-rw-r--r--source/mn/svx/messages.po8
-rw-r--r--source/mn/sw/messages.po682
-rw-r--r--source/mn/uui/messages.po180
-rw-r--r--source/mni/cui/messages.po243
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/mni/sc/messages.po612
-rw-r--r--source/mni/sd/messages.po10
-rw-r--r--source/mni/sfx2/messages.po108
-rw-r--r--source/mni/starmath/messages.po57
-rw-r--r--source/mni/svx/messages.po8
-rw-r--r--source/mni/sw/messages.po682
-rw-r--r--source/mni/uui/messages.po171
-rw-r--r--source/mr/cui/messages.po243
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/mr/sc/messages.po612
-rw-r--r--source/mr/sd/messages.po10
-rw-r--r--source/mr/sfx2/messages.po108
-rw-r--r--source/mr/starmath/messages.po57
-rw-r--r--source/mr/svx/messages.po8
-rw-r--r--source/mr/sw/messages.po682
-rw-r--r--source/mr/uui/messages.po171
-rw-r--r--source/my/cui/messages.po243
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/my/sc/messages.po612
-rw-r--r--source/my/sd/messages.po10
-rw-r--r--source/my/sfx2/messages.po108
-rw-r--r--source/my/starmath/messages.po57
-rw-r--r--source/my/svx/messages.po8
-rw-r--r--source/my/sw/messages.po682
-rw-r--r--source/my/uui/messages.po171
-rw-r--r--source/nb/cui/messages.po242
-rw-r--r--source/nb/formula/messages.po26
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/nb/helpcontent2/source/text/shared/06.po12
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/nb/sc/messages.po616
-rw-r--r--source/nb/sd/messages.po52
-rw-r--r--source/nb/sfx2/messages.po112
-rw-r--r--source/nb/starmath/messages.po73
-rw-r--r--source/nb/svtools/messages.po6
-rw-r--r--source/nb/svx/messages.po10
-rw-r--r--source/nb/sw/messages.po704
-rw-r--r--source/nb/uui/messages.po184
-rw-r--r--source/nb/vcl/messages.po16
-rw-r--r--source/ne/cui/messages.po237
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ne/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ne/sc/messages.po612
-rw-r--r--source/ne/sd/messages.po10
-rw-r--r--source/ne/sfx2/messages.po108
-rw-r--r--source/ne/starmath/messages.po57
-rw-r--r--source/ne/svx/messages.po8
-rw-r--r--source/ne/sw/messages.po682
-rw-r--r--source/ne/uui/messages.po171
-rw-r--r--source/nl/cui/messages.po242
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po2851
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/nl/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po46
-rw-r--r--source/nl/sc/messages.po616
-rw-r--r--source/nl/sd/messages.po52
-rw-r--r--source/nl/sfx2/messages.po112
-rw-r--r--source/nl/starmath/messages.po73
-rw-r--r--source/nl/svtools/messages.po6
-rw-r--r--source/nl/svx/messages.po10
-rw-r--r--source/nl/sw/messages.po708
-rw-r--r--source/nl/uui/messages.po182
-rw-r--r--source/nl/vcl/messages.po16
-rw-r--r--source/nn/cui/messages.po244
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po143
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po1218
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po2855
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po4
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po42
-rw-r--r--source/nn/helpcontent2/source/text/shared/06.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/07.po19
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po294
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po124
-rw-r--r--source/nn/helpcontent2/source/text/simpress.po108
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po42
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po26
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po82
-rw-r--r--source/nn/helpcontent2/source/text/swriter/00.po44
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po238
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po80
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po125
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/nn/sc/messages.po612
-rw-r--r--source/nn/sd/messages.po10
-rw-r--r--source/nn/sfx2/messages.po114
-rw-r--r--source/nn/starmath/messages.po57
-rw-r--r--source/nn/svx/messages.po8
-rw-r--r--source/nn/sw/messages.po702
-rw-r--r--source/nn/swext/mediawiki/help.po8
-rw-r--r--source/nn/uui/messages.po180
-rw-r--r--source/nr/cui/messages.po243
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nr/sc/messages.po612
-rw-r--r--source/nr/sd/messages.po10
-rw-r--r--source/nr/sfx2/messages.po108
-rw-r--r--source/nr/starmath/messages.po57
-rw-r--r--source/nr/svx/messages.po8
-rw-r--r--source/nr/sw/messages.po682
-rw-r--r--source/nr/uui/messages.po168
-rw-r--r--source/nso/cui/messages.po243
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nso/sc/messages.po612
-rw-r--r--source/nso/sd/messages.po10
-rw-r--r--source/nso/sfx2/messages.po108
-rw-r--r--source/nso/starmath/messages.po57
-rw-r--r--source/nso/svx/messages.po8
-rw-r--r--source/nso/sw/messages.po682
-rw-r--r--source/nso/uui/messages.po168
-rw-r--r--source/oc/cui/messages.po262
-rw-r--r--source/oc/desktop/messages.po4
-rw-r--r--source/oc/extensions/messages.po6
-rw-r--r--source/oc/extras/source/gallery/share.po6
-rw-r--r--source/oc/framework/messages.po4
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po106
-rw-r--r--source/oc/sc/messages.po612
-rw-r--r--source/oc/scp2/source/winexplorerext.po12
-rw-r--r--source/oc/sd/messages.po14
-rw-r--r--source/oc/sfx2/messages.po112
-rw-r--r--source/oc/starmath/messages.po57
-rw-r--r--source/oc/svx/messages.po26
-rw-r--r--source/oc/sw/messages.po688
-rw-r--r--source/oc/uui/messages.po173
-rw-r--r--source/oc/vcl/messages.po54
-rw-r--r--source/oc/wizards/source/resources.po10
-rw-r--r--source/om/cui/messages.po243
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/om/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/om/sc/messages.po612
-rw-r--r--source/om/sd/messages.po10
-rw-r--r--source/om/sfx2/messages.po108
-rw-r--r--source/om/starmath/messages.po57
-rw-r--r--source/om/svx/messages.po8
-rw-r--r--source/om/sw/messages.po682
-rw-r--r--source/om/uui/messages.po171
-rw-r--r--source/or/cui/messages.po236
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/or/sc/messages.po612
-rw-r--r--source/or/sd/messages.po10
-rw-r--r--source/or/sfx2/messages.po108
-rw-r--r--source/or/starmath/messages.po57
-rw-r--r--source/or/svx/messages.po8
-rw-r--r--source/or/sw/messages.po682
-rw-r--r--source/or/uui/messages.po171
-rw-r--r--source/pa-IN/accessibility/messages.po37
-rw-r--r--source/pa-IN/avmedia/messages.po37
-rw-r--r--source/pa-IN/basctl/messages.po34
-rw-r--r--source/pa-IN/basic/messages.po37
-rw-r--r--source/pa-IN/chart2/messages.po34
-rw-r--r--source/pa-IN/connectivity/messages.po38
-rw-r--r--source/pa-IN/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po22
-rw-r--r--source/pa-IN/cui/messages.po300
-rw-r--r--source/pa-IN/dbaccess/messages.po41
-rw-r--r--source/pa-IN/desktop/messages.po45
-rw-r--r--source/pa-IN/dictionaries/cs_CZ.po17
-rw-r--r--source/pa-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po17
-rw-r--r--source/pa-IN/dictionaries/gd_GB.po16
-rw-r--r--source/pa-IN/dictionaries/gug.po16
-rw-r--r--source/pa-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po17
-rw-r--r--source/pa-IN/dictionaries/pt_BR/dialog.po17
-rw-r--r--source/pa-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po17
-rw-r--r--source/pa-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po17
-rw-r--r--source/pa-IN/dictionaries/sv_SE.po16
-rw-r--r--source/pa-IN/dictionaries/tr_TR.po16
-rw-r--r--source/pa-IN/editeng/messages.po34
-rw-r--r--source/pa-IN/extensions/messages.po37
-rw-r--r--source/pa-IN/extensions/source/update/check/org/openoffice/Office.po19
-rw-r--r--source/pa-IN/extras/source/autocorr/emoji.po1594
-rw-r--r--source/pa-IN/extras/source/gallery/share.po17
-rw-r--r--source/pa-IN/filter/messages.po36
-rw-r--r--source/pa-IN/filter/source/config/fragments/filters.po17
-rw-r--r--source/pa-IN/filter/source/config/fragments/types.po59
-rw-r--r--source/pa-IN/forms/messages.po37
-rw-r--r--source/pa-IN/formula/messages.po34
-rw-r--r--source/pa-IN/fpicker/messages.po37
-rw-r--r--source/pa-IN/framework/messages.po39
-rw-r--r--source/pa-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice.po26
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office.po27
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po102
-rw-r--r--source/pa-IN/oox/messages.po40
-rw-r--r--source/pa-IN/readlicense_oo/docs.po12
-rw-r--r--source/pa-IN/reportdesign/messages.po50
-rw-r--r--source/pa-IN/sc/messages.po672
-rw-r--r--source/pa-IN/scaddins/messages.po37
-rw-r--r--source/pa-IN/sccomp/messages.po37
-rw-r--r--source/pa-IN/scp2/source/graphicfilter.po13
-rw-r--r--source/pa-IN/scp2/source/ooo.po14
-rw-r--r--source/pa-IN/scp2/source/python.po19
-rw-r--r--source/pa-IN/scp2/source/writer.po50
-rw-r--r--source/pa-IN/sd/messages.po95
-rw-r--r--source/pa-IN/setup_native/source/mac.po14
-rw-r--r--source/pa-IN/sfx2/messages.po198
-rw-r--r--source/pa-IN/shell/messages.po49
-rw-r--r--source/pa-IN/starmath/messages.po91
-rw-r--r--source/pa-IN/svl/messages.po39
-rw-r--r--source/pa-IN/svtools/messages.po50
-rw-r--r--source/pa-IN/svx/messages.po124
-rw-r--r--source/pa-IN/sw/messages.po1315
-rw-r--r--source/pa-IN/sysui/desktop/share.po12
-rw-r--r--source/pa-IN/uui/messages.po214
-rw-r--r--source/pa-IN/vcl/messages.po61
-rw-r--r--source/pa-IN/wizards/messages.po37
-rw-r--r--source/pa-IN/writerperfect/messages.po45
-rw-r--r--source/pa-IN/xmlsecurity/messages.po37
-rw-r--r--source/pl/cui/messages.po246
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po2849
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/pl/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po54
-rw-r--r--source/pl/sc/messages.po616
-rw-r--r--source/pl/scp2/source/ooo.po4
-rw-r--r--source/pl/sd/messages.po52
-rw-r--r--source/pl/sfx2/messages.po112
-rw-r--r--source/pl/starmath/messages.po73
-rw-r--r--source/pl/svtools/messages.po6
-rw-r--r--source/pl/svx/messages.po10
-rw-r--r--source/pl/sw/messages.po708
-rw-r--r--source/pl/uui/messages.po182
-rw-r--r--source/pl/vcl/messages.po16
-rw-r--r--source/pt-BR/cui/messages.po242
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/python.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po1418
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po2859
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/06.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/pt-BR/sc/messages.po616
-rw-r--r--source/pt-BR/sd/messages.po52
-rw-r--r--source/pt-BR/sfx2/messages.po112
-rw-r--r--source/pt-BR/starmath/messages.po73
-rw-r--r--source/pt-BR/svtools/messages.po6
-rw-r--r--source/pt-BR/svx/messages.po10
-rw-r--r--source/pt-BR/sw/messages.po710
-rw-r--r--source/pt-BR/uui/messages.po180
-rw-r--r--source/pt-BR/vcl/messages.po16
-rw-r--r--source/pt/cui/messages.po242
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/guide.po28
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po2849
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/pt/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/pt/sc/messages.po616
-rw-r--r--source/pt/sd/messages.po54
-rw-r--r--source/pt/sfx2/messages.po112
-rw-r--r--source/pt/starmath/messages.po73
-rw-r--r--source/pt/svtools/messages.po6
-rw-r--r--source/pt/svx/messages.po10
-rw-r--r--source/pt/sw/messages.po704
-rw-r--r--source/pt/uui/messages.po180
-rw-r--r--source/pt/vcl/messages.po16
-rw-r--r--source/ro/cui/messages.po236
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po2841
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ro/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ro/sc/messages.po612
-rw-r--r--source/ro/sd/messages.po10
-rw-r--r--source/ro/sfx2/messages.po108
-rw-r--r--source/ro/starmath/messages.po57
-rw-r--r--source/ro/svx/messages.po8
-rw-r--r--source/ro/sw/messages.po682
-rw-r--r--source/ro/uui/messages.po171
-rw-r--r--source/ru/cui/messages.po238
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ru/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ru/sc/messages.po612
-rw-r--r--source/ru/sd/messages.po10
-rw-r--r--source/ru/sfx2/messages.po108
-rw-r--r--source/ru/starmath/messages.po57
-rw-r--r--source/ru/svx/messages.po8
-rw-r--r--source/ru/sw/messages.po682
-rw-r--r--source/ru/uui/messages.po180
-rw-r--r--source/rw/cui/messages.po237
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/rw/sc/messages.po612
-rw-r--r--source/rw/sd/messages.po10
-rw-r--r--source/rw/sfx2/messages.po108
-rw-r--r--source/rw/starmath/messages.po57
-rw-r--r--source/rw/svx/messages.po8
-rw-r--r--source/rw/sw/messages.po682
-rw-r--r--source/rw/uui/messages.po168
-rw-r--r--source/sa-IN/cui/messages.po243
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sa-IN/sc/messages.po612
-rw-r--r--source/sa-IN/sd/messages.po10
-rw-r--r--source/sa-IN/sfx2/messages.po108
-rw-r--r--source/sa-IN/starmath/messages.po57
-rw-r--r--source/sa-IN/svx/messages.po8
-rw-r--r--source/sa-IN/sw/messages.po682
-rw-r--r--source/sa-IN/uui/messages.po171
-rw-r--r--source/sah/cui/messages.po236
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sah/sc/messages.po612
-rw-r--r--source/sah/sd/messages.po10
-rw-r--r--source/sah/sfx2/messages.po108
-rw-r--r--source/sah/starmath/messages.po57
-rw-r--r--source/sah/svx/messages.po8
-rw-r--r--source/sah/sw/messages.po682
-rw-r--r--source/sah/uui/messages.po168
-rw-r--r--source/sat/cui/messages.po243
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sat/sc/messages.po612
-rw-r--r--source/sat/sd/messages.po10
-rw-r--r--source/sat/sfx2/messages.po108
-rw-r--r--source/sat/starmath/messages.po57
-rw-r--r--source/sat/svx/messages.po8
-rw-r--r--source/sat/sw/messages.po682
-rw-r--r--source/sat/uui/messages.po171
-rw-r--r--source/sd/cui/messages.po244
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sd/sc/messages.po612
-rw-r--r--source/sd/sd/messages.po10
-rw-r--r--source/sd/sfx2/messages.po108
-rw-r--r--source/sd/starmath/messages.po57
-rw-r--r--source/sd/svx/messages.po8
-rw-r--r--source/sd/sw/messages.po682
-rw-r--r--source/sd/uui/messages.po171
-rw-r--r--source/si/cui/messages.po243
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/si/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/si/sc/messages.po612
-rw-r--r--source/si/sd/messages.po10
-rw-r--r--source/si/sfx2/messages.po108
-rw-r--r--source/si/starmath/messages.po57
-rw-r--r--source/si/svx/messages.po8
-rw-r--r--source/si/sw/messages.po682
-rw-r--r--source/si/uui/messages.po173
-rw-r--r--source/sid/cui/messages.po243
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/sid/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sid/sc/messages.po612
-rw-r--r--source/sid/sd/messages.po10
-rw-r--r--source/sid/sfx2/messages.po108
-rw-r--r--source/sid/starmath/messages.po57
-rw-r--r--source/sid/svx/messages.po8
-rw-r--r--source/sid/sw/messages.po682
-rw-r--r--source/sid/uui/messages.po171
-rw-r--r--source/sk/cui/messages.po238
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/sk/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/sk/sc/messages.po616
-rw-r--r--source/sk/sd/messages.po52
-rw-r--r--source/sk/sfx2/messages.po112
-rw-r--r--source/sk/starmath/messages.po73
-rw-r--r--source/sk/svtools/messages.po6
-rw-r--r--source/sk/svx/messages.po64
-rw-r--r--source/sk/sw/messages.po682
-rw-r--r--source/sk/uui/messages.po180
-rw-r--r--source/sk/vcl/messages.po16
-rw-r--r--source/sq/cui/messages.po236
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po2841
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/sq/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sq/sc/messages.po612
-rw-r--r--source/sq/sd/messages.po10
-rw-r--r--source/sq/sfx2/messages.po108
-rw-r--r--source/sq/starmath/messages.po57
-rw-r--r--source/sq/svx/messages.po8
-rw-r--r--source/sq/sw/messages.po682
-rw-r--r--source/sq/uui/messages.po175
-rw-r--r--source/sr-Latn/cui/messages.po237
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sr-Latn/sc/messages.po612
-rw-r--r--source/sr-Latn/sd/messages.po10
-rw-r--r--source/sr-Latn/sfx2/messages.po108
-rw-r--r--source/sr-Latn/starmath/messages.po57
-rw-r--r--source/sr-Latn/svx/messages.po8
-rw-r--r--source/sr-Latn/sw/messages.po682
-rw-r--r--source/sr-Latn/uui/messages.po171
-rw-r--r--source/sr/chart2/messages.po44
-rw-r--r--source/sr/cui/messages.po264
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sr/sc/messages.po612
-rw-r--r--source/sr/sd/messages.po10
-rw-r--r--source/sr/sfx2/messages.po108
-rw-r--r--source/sr/starmath/messages.po57
-rw-r--r--source/sr/svx/messages.po8
-rw-r--r--source/sr/sw/messages.po682
-rw-r--r--source/sr/uui/messages.po171
-rw-r--r--source/ss/cui/messages.po243
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ss/sc/messages.po612
-rw-r--r--source/ss/sd/messages.po10
-rw-r--r--source/ss/sfx2/messages.po108
-rw-r--r--source/ss/starmath/messages.po57
-rw-r--r--source/ss/svx/messages.po8
-rw-r--r--source/ss/sw/messages.po682
-rw-r--r--source/ss/uui/messages.po168
-rw-r--r--source/st/cui/messages.po243
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/st/sc/messages.po612
-rw-r--r--source/st/sd/messages.po10
-rw-r--r--source/st/sfx2/messages.po108
-rw-r--r--source/st/starmath/messages.po57
-rw-r--r--source/st/svx/messages.po8
-rw-r--r--source/st/sw/messages.po682
-rw-r--r--source/st/uui/messages.po168
-rw-r--r--source/sv/cui/messages.po246
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/sv/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sv/sc/messages.po612
-rw-r--r--source/sv/sd/messages.po18
-rw-r--r--source/sv/sfx2/messages.po108
-rw-r--r--source/sv/starmath/messages.po73
-rw-r--r--source/sv/svtools/messages.po6
-rw-r--r--source/sv/svx/messages.po10
-rw-r--r--source/sv/sw/messages.po688
-rw-r--r--source/sv/uui/messages.po180
-rw-r--r--source/sv/vcl/messages.po16
-rw-r--r--source/sw-TZ/cui/messages.po237
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sw-TZ/sc/messages.po612
-rw-r--r--source/sw-TZ/sd/messages.po10
-rw-r--r--source/sw-TZ/sfx2/messages.po108
-rw-r--r--source/sw-TZ/starmath/messages.po57
-rw-r--r--source/sw-TZ/svx/messages.po8
-rw-r--r--source/sw-TZ/sw/messages.po682
-rw-r--r--source/sw-TZ/uui/messages.po168
-rw-r--r--source/szl/cui/messages.po238
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/szl/sc/messages.po612
-rw-r--r--source/szl/sd/messages.po10
-rw-r--r--source/szl/sfx2/messages.po108
-rw-r--r--source/szl/starmath/messages.po57
-rw-r--r--source/szl/svx/messages.po8
-rw-r--r--source/szl/sw/messages.po684
-rw-r--r--source/szl/uui/messages.po180
-rw-r--r--source/ta/cui/messages.po236
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ta/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ta/sc/messages.po612
-rw-r--r--source/ta/sd/messages.po10
-rw-r--r--source/ta/sfx2/messages.po108
-rw-r--r--source/ta/starmath/messages.po57
-rw-r--r--source/ta/svx/messages.po8
-rw-r--r--source/ta/sw/messages.po682
-rw-r--r--source/ta/uui/messages.po171
-rw-r--r--source/te/cui/messages.po243
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/te/sc/messages.po612
-rw-r--r--source/te/sd/messages.po10
-rw-r--r--source/te/sfx2/messages.po108
-rw-r--r--source/te/starmath/messages.po57
-rw-r--r--source/te/svx/messages.po8
-rw-r--r--source/te/sw/messages.po682
-rw-r--r--source/te/uui/messages.po171
-rw-r--r--source/tg/cui/messages.po237
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/tg/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/tg/sc/messages.po612
-rw-r--r--source/tg/sd/messages.po10
-rw-r--r--source/tg/sfx2/messages.po108
-rw-r--r--source/tg/starmath/messages.po57
-rw-r--r--source/tg/svx/messages.po8
-rw-r--r--source/tg/sw/messages.po682
-rw-r--r--source/tg/uui/messages.po168
-rw-r--r--source/th/cui/messages.po243
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/th/sc/messages.po612
-rw-r--r--source/th/sd/messages.po10
-rw-r--r--source/th/sfx2/messages.po108
-rw-r--r--source/th/starmath/messages.po57
-rw-r--r--source/th/svx/messages.po8
-rw-r--r--source/th/sw/messages.po682
-rw-r--r--source/th/uui/messages.po171
-rw-r--r--source/ti/cui/messages.po236
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ti/sc/messages.po612
-rw-r--r--source/ti/sd/messages.po10
-rw-r--r--source/ti/sfx2/messages.po108
-rw-r--r--source/ti/starmath/messages.po57
-rw-r--r--source/ti/svx/messages.po8
-rw-r--r--source/ti/sw/messages.po682
-rw-r--r--source/ti/uui/messages.po168
-rw-r--r--source/tn/cui/messages.po242
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/tn/sc/messages.po612
-rw-r--r--source/tn/sd/messages.po10
-rw-r--r--source/tn/sfx2/messages.po108
-rw-r--r--source/tn/starmath/messages.po57
-rw-r--r--source/tn/svx/messages.po8
-rw-r--r--source/tn/sw/messages.po682
-rw-r--r--source/tn/uui/messages.po168
-rw-r--r--source/tr/chart2/messages.po28
-rw-r--r--source/tr/cui/messages.po354
-rw-r--r--source/tr/dbaccess/messages.po7
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po2849
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/tr/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/tr/sc/messages.po612
-rw-r--r--source/tr/sd/messages.po10
-rw-r--r--source/tr/sfx2/messages.po108
-rw-r--r--source/tr/starmath/messages.po57
-rw-r--r--source/tr/svx/messages.po10
-rw-r--r--source/tr/sw/messages.po682
-rw-r--r--source/tr/uui/messages.po182
-rw-r--r--source/ts/cui/messages.po243
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ts/sc/messages.po612
-rw-r--r--source/ts/sd/messages.po10
-rw-r--r--source/ts/sfx2/messages.po108
-rw-r--r--source/ts/starmath/messages.po57
-rw-r--r--source/ts/svx/messages.po8
-rw-r--r--source/ts/sw/messages.po682
-rw-r--r--source/ts/uui/messages.po168
-rw-r--r--source/tt/cui/messages.po243
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/tt/sc/messages.po612
-rw-r--r--source/tt/sd/messages.po10
-rw-r--r--source/tt/sfx2/messages.po108
-rw-r--r--source/tt/starmath/messages.po57
-rw-r--r--source/tt/svx/messages.po8
-rw-r--r--source/tt/sw/messages.po682
-rw-r--r--source/tt/uui/messages.po168
-rw-r--r--source/ug/cui/messages.po236
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po2843
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/ug/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ug/sc/messages.po612
-rw-r--r--source/ug/sd/messages.po10
-rw-r--r--source/ug/sfx2/messages.po108
-rw-r--r--source/ug/starmath/messages.po57
-rw-r--r--source/ug/svx/messages.po8
-rw-r--r--source/ug/sw/messages.po682
-rw-r--r--source/ug/uui/messages.po172
-rw-r--r--source/uk/cui/messages.po242
-rw-r--r--source/uk/helpcontent2/source/auxiliary.po10
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po1126
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po2907
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po16
-rw-r--r--source/uk/helpcontent2/source/text/sdatabase.po18
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po56
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/uk/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/uk/sc/messages.po684
-rw-r--r--source/uk/scp2/source/ooo.po10
-rw-r--r--source/uk/sd/messages.po10
-rw-r--r--source/uk/sfx2/messages.po108
-rw-r--r--source/uk/starmath/messages.po57
-rw-r--r--source/uk/svtools/messages.po10
-rw-r--r--source/uk/svx/messages.po49
-rw-r--r--source/uk/sw/messages.po686
-rw-r--r--source/uk/uui/messages.po182
-rw-r--r--source/uk/vcl/messages.po16
-rw-r--r--source/ur/cui/messages.po237
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ur/sc/messages.po612
-rw-r--r--source/ur/sd/messages.po10
-rw-r--r--source/ur/sfx2/messages.po108
-rw-r--r--source/ur/starmath/messages.po57
-rw-r--r--source/ur/svx/messages.po8
-rw-r--r--source/ur/sw/messages.po682
-rw-r--r--source/ur/uui/messages.po168
-rw-r--r--source/uz/cui/messages.po243
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/uz/sc/messages.po612
-rw-r--r--source/uz/sd/messages.po10
-rw-r--r--source/uz/sfx2/messages.po108
-rw-r--r--source/uz/starmath/messages.po57
-rw-r--r--source/uz/svx/messages.po8
-rw-r--r--source/uz/sw/messages.po682
-rw-r--r--source/uz/uui/messages.po168
-rw-r--r--source/ve/cui/messages.po243
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ve/sc/messages.po612
-rw-r--r--source/ve/sd/messages.po10
-rw-r--r--source/ve/sfx2/messages.po108
-rw-r--r--source/ve/starmath/messages.po57
-rw-r--r--source/ve/svx/messages.po8
-rw-r--r--source/ve/sw/messages.po682
-rw-r--r--source/ve/uui/messages.po168
-rw-r--r--source/vec/cui/messages.po236
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/vec/sc/messages.po612
-rw-r--r--source/vec/sd/messages.po10
-rw-r--r--source/vec/sfx2/messages.po108
-rw-r--r--source/vec/starmath/messages.po57
-rw-r--r--source/vec/svx/messages.po8
-rw-r--r--source/vec/sw/messages.po684
-rw-r--r--source/vec/uui/messages.po180
-rw-r--r--source/vi/cui/messages.po243
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po2845
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/vi/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/vi/sc/messages.po612
-rw-r--r--source/vi/sd/messages.po10
-rw-r--r--source/vi/sfx2/messages.po108
-rw-r--r--source/vi/starmath/messages.po57
-rw-r--r--source/vi/svx/messages.po8
-rw-r--r--source/vi/sw/messages.po682
-rw-r--r--source/vi/uui/messages.po171
-rw-r--r--source/xh/cui/messages.po243
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/xh/sc/messages.po612
-rw-r--r--source/xh/sd/messages.po10
-rw-r--r--source/xh/sfx2/messages.po108
-rw-r--r--source/xh/starmath/messages.po57
-rw-r--r--source/xh/svx/messages.po8
-rw-r--r--source/xh/sw/messages.po682
-rw-r--r--source/xh/uui/messages.po168
-rw-r--r--source/zh-CN/cui/messages.po242
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po2889
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdatabase.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/06.po106
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/help.po168
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/zh-CN/sc/messages.po628
-rw-r--r--source/zh-CN/sd/messages.po40
-rw-r--r--source/zh-CN/sfx2/messages.po116
-rw-r--r--source/zh-CN/starmath/messages.po57
-rw-r--r--source/zh-CN/svtools/messages.po6
-rw-r--r--source/zh-CN/svx/messages.po62
-rw-r--r--source/zh-CN/sw/messages.po694
-rw-r--r--source/zh-CN/uui/messages.po180
-rw-r--r--source/zh-TW/cui/messages.po238
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po65
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po1118
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po2847
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/zh-TW/sc/messages.po612
-rw-r--r--source/zh-TW/sd/messages.po10
-rw-r--r--source/zh-TW/sfx2/messages.po108
-rw-r--r--source/zh-TW/starmath/messages.po57
-rw-r--r--source/zh-TW/svtools/messages.po8
-rw-r--r--source/zh-TW/svx/messages.po8
-rw-r--r--source/zh-TW/sw/messages.po682
-rw-r--r--source/zh-TW/uui/messages.po180
-rw-r--r--source/zh-TW/vcl/messages.po16
-rw-r--r--source/zu/cui/messages.po243
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/zu/sc/messages.po612
-rw-r--r--source/zu/sd/messages.po10
-rw-r--r--source/zu/sfx2/messages.po108
-rw-r--r--source/zu/starmath/messages.po57
-rw-r--r--source/zu/svx/messages.po8
-rw-r--r--source/zu/sw/messages.po682
-rw-r--r--source/zu/uui/messages.po168
1869 files changed, 327282 insertions, 198771 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 889bc81028b..eed9525eb68 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4494,79 +4494,79 @@ msgid "_Replace"
msgstr "Иҧсахтәуп"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr ""
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr ""
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr ""
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "Иҧсахтәуп"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9863,194 +9863,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Аформат"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr ""
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr ""
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr ""
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr ""
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr ""
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr ""
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr ""
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr ""
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr ""
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr ""
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr ""
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Иалаԥсахтәуп"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr ""
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr ""
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14433,122 +14433,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Аартра/Аиқәырхара рдиалогқәа"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "Акьыҧхьра адиалогқәа"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Адокумент аҭагылазаашьа"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ашықәс (ҩ-цифрак)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME афаилқәа рассоциациақәа"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15537,14 +15525,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Арҿыцрақәа ргәаҭара архиарақәа"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20447,67 +20441,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Ашьаҿа:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "Акәаҧқәа"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Ааҭгылара:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "Автоматикала"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Аҷыдаҟазшьақәа"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21028,10 +21022,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
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 f973ab836fd..b4e0c46f0ac 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4557,14 +4557,14 @@ msgctxt ""
msgid "~Number"
msgstr "Ахыҧхьаӡарақәа"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4577,14 +4577,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 3cceee58f3f..6e443d9d5c5 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-02-09 16:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -16541,112 +16541,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "Истандарту афильтр..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr ""
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Иҭацәуп"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr ""
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr ""
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr ""
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr ""
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Абӷьыц"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Иацҵатәуп абӷыц"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr ""
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr ""
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Астандарт"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Аобиеқт ахьӡ"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Ибжьаргылатәуп асахьа"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16654,135 +16660,135 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr ""
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr ""
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Ажәамаӡа:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr ""
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Ииашам ажәамаӡа"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "Анҵәамҭа"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Идырым"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "Аминимум"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "Амаксимум"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "Аҵакы"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr ""
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr ""
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Асистема"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr ""
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr ""
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "апробел"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -16791,1597 +16797,1597 @@ msgid ""
msgstr ""
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Атеқст"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Иалхтәуп абӷьыцқәа"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Иалху абӷьыцқәа"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr ""
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr ""
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Заатәи ахәаҧшра"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr ""
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr ""
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr ""
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr ""
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Адаҟьа заатәи ахәаҧшра"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr ""
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr ""
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Адаҟьа %1 хыхьтәи аколонтитул"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Адаҟьа %1 ҵаҟатәи аколонтитул"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr ""
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Ара шәара иҭажәгалоит насгьы аредакциа рзыжәуеит атеқст, ахыԥхьаӡарақәеи аформулақәеи."
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Амультимедиа"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr ""
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Аформулақәа рпанель"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr ""
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(аҧхьара мацара)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Ахәаҧшра)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "Иҭацәу адаҟьақәа кьыҧхьтәӡам"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr ""
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "Адәныҟатәи азхьарҧшқәа рырҿыцра."
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr ""
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr ""
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr ""
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr ""
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr ""
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Изымуа аҵакы."
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Аформула арбаӡам."
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Аформулақәа еиҿыркаауам аиҵагыла."
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Аформулақәа еиҿыркаауам ацәаҳәа."
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Автоформат ахьӡ ҧсахтәуп"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Ахьӡ"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Ианыхтәуп автоформат"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Даныхтәума ари ахархәаҩ?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Иарктәуп"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "Аихшьала"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Адаҟьа адҳәалара"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr "Аҭагылазаашьа"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Иаҵанакуа"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Абӷьыцқәа"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr ""
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr ""
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Асахьақәа"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE аобиеқтқәа"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Акомментариқәа"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr ""
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Асахьақәа"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr ""
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr ""
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "иҵәаху"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr ""
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr ""
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Акомментари"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr ""
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr ""
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Ахархәаҩ ишрифтқәа"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr ""
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr ""
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Афункциақәа разҟаза"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr ""
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Иаҟәыхтәуп"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "аформула"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Иаарттәуп аформулақәа рпанель"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Иеикәарҳәтәуп аформулақәа рпанель"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Автор"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Арыцхә"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Идырым ахархәаҩ"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr ""
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr ""
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr ""
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Аиҵагыла аныхуп"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Ацәаҳәа аныхуп"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Абӷьыц аныхуп"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr ""
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr ""
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr ""
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr ""
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Аоригинал"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr ""
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr ""
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
#, fuzzy
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Иалхуп"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr ""
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "(иҭацәуп)"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr ""
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr ""
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr ""
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr ""
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr ""
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Агәыҧқәа"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Аихшьала"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr ""
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Истандарттәу агха"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Амода"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Амедиана"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Адисперсиа"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Адиапазон"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Аминимум"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Амаксимум"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Аицҵалыҵ"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Ахыҧхьаӡара"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Еицеиҟароу"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "Иецеиҟароу идескреттәу"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Инормалтәу"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr ""
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Аминимум"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Амаксимум"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr ""
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Амедиана"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "Сигма"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Альфа"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Аҽеиҭак 1"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Аҽеиҭак 2"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr ""
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Аҵәаӷәатә"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Алогарифмтә"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr ""
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Арегрессиатә модель"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "А-Интернет"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr ""
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index bc9227049d7..5d0234c8d70 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -3598,9 +3598,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3610,9 +3610,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index b60bcd598f7..ca567949b9a 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -2943,148 +2943,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3096,55 +3096,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "Ашрифтқәа адокумент иаларҵәатәуп"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3621,19 +3621,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4492,61 +4492,61 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "Иаартлатәуп аҧхьара мацараз"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr ""
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr ""
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr ""
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr ""
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index a265fd69362..346f73da2c8 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2019-06-25 09:42+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3275,127 +3275,140 @@ msgid "These changes will apply for all new formulas."
msgstr "Архиарақәа хархәахоит иҿыцу аформулақәа зегьы рҿы."
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "Ахалагаратә цәаҳәа"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "Аформула атеқст"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "Арамка"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Акьыҧхьра апараметрқәа"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Ахалагаратә шәагаа"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Адаҟьа ашәагаа иақәыршәатәуп"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "Амасштабркра:"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Акьыҧхьра аформат"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Иарклатәуп ахыцқәа автоматикала"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Еиуеиҧшым апараметрқәа"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 393c5ce8c48..b6643d759ba 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
@@ -13988,6 +13988,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 2816240180e..dc45151e4fa 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8282,1217 +8282,1223 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "Адаҟьахь"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Акоордината X:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Акоордината Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "хыхьла"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Вертикалла ацентрла"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ҵаҟала"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Ацәаҳәа ахыхь"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Ацәаҳәа агәҭа"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Ацәаҳәа аҵаҟа"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "арыӷьарахь"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Горизонталла ацентр ала"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "арымарахь"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "аҩныҵҟа"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "адәныҟа"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Ихарҭәаау аҭбаара"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Аиҟәыҭхага ҵәаӷәа аҭбаара:"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Албаагақәа имакс. рҵакыра:"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Изинтәуп ариашара адокумент «аԥхьара мацараз» аҟны"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Еиҟәшатәуп"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "Иадҳәалатәуп "
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "и"
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Ацәаҳәақәа рыԥхьаӡара"
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "Ацәаҳәақәа ԥхьаӡатәӡам"
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "Иалагатәуп ацәақәа рыԥхьазара аҟынтә:"
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Ажжара: "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Аҵәцара: "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Ибжьаргылатәуп"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "аинвертациа азутәӡам"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Аграфикатә режим: "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Истандарту"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Аиқәаҵәа-ашкәакәа"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Аӡдырга"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Аргьежьра"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Акаҭа ада"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Акаҭа (аҵәаӷәақәа мацара рзы)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Акаҭа (аҵәаӷәақәеи асимволқеи рзы)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Атеқст иашьҭалатәуп"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Атеқст иашьҭалатәӡап"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Еидҵатәуп аҿыкәырша"
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Еидҵатәӡам аҿыкәырша"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Атаблица"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Адаҟьа"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Асахьа"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Анапхгара аелемент"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "апараграф"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Асахьа"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE аобиеқт"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Ахқәа"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Алкаара"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Албаага"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Агәаларшәара"
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Акомментари"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Даҽазнык аԥшаара"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Атаблица аформула"
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Атаблица аформула иашаӡам"
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Анаҩстәи атаблица"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Анаҩстәи асахьа"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Анаҩстәи анапхгара аелемент"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Анаҩстәи алкаара"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Анаҩстәи агәылаҵа"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Анаҩстәи асахьа"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "OLE анаҩстәи аобиеқт"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Анаҩстәи ахы"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Анаҩстәи алкаара"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Анаҩстәи албаага"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Анаҩстәи агәаларшәара"
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Анаҩстәи акомментари"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Иацҵатәуп аԥшаара ԥхьаҟа"
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Анаҩстәи аҭыԥрбага аелемент"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Аҧхьатәи атаблица"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Аԥхьатәи асахьа"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Аԥхьатәи анапхгара аелемент"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Аҧхьатәи алкаара"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Аԥхьатәи агәылаҵа"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Аԥхьатәи асахьа"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "OLE аԥхьатәи аобиект"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Аҧхьатәи алкаара"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Аԥхьатәи албаага"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Аԥхьатәи агәаларшәара"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Аԥхьатәи акомментари"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Иацҵатәуп аԥшаара шьҭахьҟа"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Аԥхьатәи аҭыԥрбага аелемент"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Атаблица аҧхьатәи аформула"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Атаблица анаҩстәи аформула"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Атаблица иаҧхьааиуа игхатәу аформула"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Атаблица анаҩстәи игхатәу аформула"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ибжьаргылатәуп"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Ианыхуп"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Иформатркуп"
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ацәаҳәа ҭаргылоуп"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ацәаҳәа аныхуп"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Абларҭа ҭаргылоуп"
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Абларҭа аныхуп"
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Анҵәамҭатә лбаага: "
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Албаага: "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ақыәӷәӷәара смарт-тегқәа рыхкынҵа аартразы"
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Хыхьтәи аколонтитул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Актәи адаҟьа хыхьтәи аколонтитул (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Армарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Арӷьарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Ҵаҟатәи аколонтитул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Актәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Армарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Арӷьарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Ианыхтәуп хыхьтәи аколонтитул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Адаҟьа аформат"
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Ианыхтәуп ҵаҟатәи аколонтитул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Иформатрктәуп ҵаҟатәи аколонтитул..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аҧхьара ауам"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа идырым аформат"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Агрфикатә фаил ари аверсиа аднакылашом"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Асахьа аҭаргыларазы иазхом агәынкылара."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Ибжьаргылатәуп асахьа"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Акомментари:"
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Аҭаргылара"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Аныхра"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Аформатқәа"
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Атаблица аредакциазура"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Адаҟьа "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Адаҟьа %1 %2 аҟынтәи"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Адаҟьа %1 %2 аҟынтәи (адаҟьа %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-аобиеқт"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Афреим"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Атаблица"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Атаблица ацәаҳәа"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Атаблица абларҭа"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "HTML (%PRODUCTNAME %PRODUCTVERSION) адокумент"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Ахы"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Аиҟәшага"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Афаил «%1» аԥшаара амуит «%2» амҩа ала."
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Ахархәаҩ иҭыԥрбага"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<мап>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<мап>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Ахы аномер"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Аелемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Атабулиациа ашьаҿа"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Атеқсттә"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Ахы аинформациа"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Агиперзхьарҧш алагамҭа"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Агиперзхьарҧш анҵәамҭа"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Абиблиографиатә зхьарԥш:"
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Асимволқәа рстиль: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Аструктура атеқст"
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Шәақәыӷәӷәа Ctrl+Alt+A иацҵоу аоперациақәа рзы"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Шәрықәыӷәӷәала армарахьтәии арӷьарахьтәии ахыцқәа аструктура аелементқәа рнапхгара алхразы"
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
@@ -9501,260 +9507,260 @@ msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Абазатә ҵәаӷәа хыхьла"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Абазатә ҵәаӷәа ҵаҟала"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Абазатә ҵәаӷәа ацентр ала"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
#, fuzzy
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Иҧсахтәуп аобиеқт"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Ашаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Аҿыкәырша"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Аҿаҧшыра"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Абзац астиль: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Ари адаҟьа аҟны аномер ақәыргылара ауам. Армарахьтәи адаҟьақәа рҟны иқәыргылазар ауеит мацара еиҩшо, арӷьарахьтәи - мацара еиҩымшо ацифрақәа."
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION еилоу адокумент"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Иҭагалоуп ииашам ажәамаӡа."
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Ажәамаӡа ықәыргылам."
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Аиагагақәа рыргылара хыркәшоуп"
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Мап (аорфографиа гәаҭатәӡам)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Иқәыргылатәуп абызшәа ишыҟаз"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Иҵегь..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ибжьажьтәуп"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Аилыркаарақәа..."
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Испециалу аҵакырақәа ргәаҭара аҿыхуп. Зегь акоуп игәаҭатәума?"
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Иауам адокументқәа реидҵара."
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Ахалагаратә теқст аҭагалара ауам."
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Ахкынҵа «Аервис/Апараметрқәа/%1/Акьыԥхьра» аҟны афакс-принтер ықәыргылаӡам."
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML адокумент"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Атеқсттә документ"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Ахыҵхырҭа арбам."
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Аструктура "
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Албаага ариашара/анҵәамҭатә лбаага"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Иԥшаатәу ажәа ԥсахуп XX нтә."
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ацәаҳәа "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Аиҵагыла "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Ахалагаратә теқст аекспорт..."
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Ахыҵхырҭа акопиақәа рекспорт..."
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Иацҵатәуп"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адәықәҵара: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Қәҿиарала идәықәҵоуп"
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Адәықәҵара амуӡеит"
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Аформула атеқст"
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9763,7 +9769,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9772,138 +9778,126 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Иҵабыргуп "
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Иҵабыргӡам"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Анапаҵаҩра ҵабыргӡам"
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Анапаҵаҩуп"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Абзац анапаҵаҩра"
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Авизиттә картақәа"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Mail архиарақәа"
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Ианыхтәуп"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибутқәа"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Иԥшаатәу аилкаа"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтенативатә елемент"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-тәи ацаԥха"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-тәи ацаԥха"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Акомментари"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Ҳасаб азутәуп арегистр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Ажәа мацара"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ааи"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Мап"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Даҽакы:"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11186,7 +11180,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr ""
@@ -17650,111 +17644,111 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr ""
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr ""
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Автоматикала"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
#, fuzzy
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Асимволқәа"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Иалхтәуп"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr ""
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "Аномерркра"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr ""
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr ""
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr ""
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr ""
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Атип"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -30130,200 +30124,200 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr ""
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr ""
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Архиарақәа"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr ""
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "Арыӷьарахь:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "Хыхьла:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "Ҵаҟала: "
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr ""
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr ""
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr ""
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr ""
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "Аинтервалқәа"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "Актәи абзац"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr ""
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr ""
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr ""
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr ""
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Апараметрқәа"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index 3026841dfe7..8a6a9b959f3 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-02-12 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ab/>\n"
@@ -605,13 +605,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Адокумент ахархәара амоуп"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -620,14 +621,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Иаарттәуп"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -636,72 +643,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr ""
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "Еиқәырхатәуп"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr ""
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Ажәамаӡа гәынкылатәуп"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Адокумент ахархәара амоуп"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -709,31 +726,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Иаарттәуп ~акопиа"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Идырым ахархәаҩ"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -742,19 +765,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "Аиқәырхара иацҵатәуп"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Адокумент ахархәара амоуп"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -765,7 +788,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -776,19 +799,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr ""
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "Еиқәырхатәуп иаба(ишҧа)..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -796,7 +819,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -804,59 +827,116 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Афаил иашәҭ даҽа хьӡык!"
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Ииашам ажәамаӡа. Адокумент аартра ауам."
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Ииашам ажәамаӡа. Адокумент аҧсахра ауам."
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Ииашам ажәамаӡа-азҟаза."
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Ииашам ажәамаӡа."
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Ажәамаӡақәа еиқәшәаӡом."
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Иаарттәуп ~аҧхьара мацараз"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 65a8151dc95..d8f499ade7e 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-04-28 11:49+0000\n"
+"POT-Creation-Date: 2021-05-31 15:14+0200\n"
+"PO-Revision-Date: 2021-05-17 06:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
"Language: af\n"
@@ -661,7 +661,7 @@ msgstr "Style"
#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
-msgstr ""
+msgstr "Sybalk Panele"
#. hFEBv
#: cui/inc/strings.hrc:119
@@ -4507,79 +4507,79 @@ msgid "_Replace"
msgstr "Ve_rvang"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Skrap afkortings"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr "Lys die afkortings wat nie outomaties vervang moet word nie."
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Afkortings (geen daaropvolgende hoofletter)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr "Tik die woord of afkorting wat begin met twee hoofletters of 'n klein voorletter wat u nie wil hê dat %PRODUCTNAME na een hoofletter moet verander nie. Voer byvoorbeeld PC in om te voorkom dat %PRODUCTNAME rekenaar na pc verander, of voer eBoek in om te voorkom dat 'n verandering in Eboek plaasvind."
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "O_utoInsluit"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr "Voeg outomaties by die uitsonderingslys as outokorreksie onmiddellik ongedaan gemaak word."
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr "Voeg outokorrigeerde woorde wat met twee hoofletters begin by die lys van uitsonderings, as die outokorrigering onmiddellik ongedaan gemaak word. Hierdie funksie is slegs effektief as die Korrigeer Twee Hoof Letters-opsie in die [T] -kolom op die tabblad Opsies in hierdie dialoog geselekteer is."
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr "Voeg woorde wat begin met TWEE hoof- of een klein-letter(s), by"
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "Ve_rvang"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr "Skrap woorde wat begin met TWEE hoof- of een klein-letter(s)"
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr "Lys die woorde of afkortings wat begin met twee hoofletters wat nie outomaties reggestel word nie. Alle woorde wat met twee hoofletters begin, word in die veld gelys."
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr "Woorde wat begin met TWEE hoof- of een klein-letter(s)"
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr "Voer die afkortings of letterkombinasies in wat %PRODUCTNAME nie outomaties moet vervang nie."
@@ -9872,194 +9872,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Formaat"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "_Hangoel/Handja"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr "Die oorspronklike karakters word vervang deur die voorgestelde karakters."
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Handja (Han_goel)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr "Die Hangul gedeelte sal vertoon word in hakies agteraan die Hanja gedeelte."
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Hang_oel (Handja)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr "Die Hanja gedeelte sal vertoon word in hakies agteraan die Hangul gedeelte."
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr "Hanja hierbo"
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr "Die Hangul gedeelte sal vertoon word as \"Ruby\"-teks bokant die Hanja gedeelte."
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr "Hanja hieronder"
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr "Die Hangul gedeelte sal vertoon word as \"Ruby\"-teks onderkant die Hanja gedeelte."
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr "Hangul hierbo"
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr "Die Hanja gedeelte sal vertoon word as \"Ruby\"-teks bokant die Hangul gedeelte."
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr "Hangul hieronder"
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr "Die Hanja gedeelte sal vertoon word as \"Ruby\"-teks onderkant die Hangul gedeelte."
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "_Hangoel/Handja"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr "Die oorspronklike karakters word vervang deur die voorgestelde karakters."
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "Handja (Han_goel)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr "Die Hangul gedeelte sal vertoon word in hakies agteraan die Hanja gedeelte."
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "Hang_oel (Handja)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr "Die Hanja gedeelte sal vertoon word in hakies agteraan die Hangul gedeelte."
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Omskakeling"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Slegs Hang_oel"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr "Merk aan, sodat net Hangul omgeset word. Moenie Hanja omset nie."
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Sle_gs Handja"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr "Merk aan, sodat net Hanja omgeset word. Moenie Hangul omset nie."
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "_Ignoreer"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr "Geen veranderinge word aangebring aan die huidige keuse nie. Die volgende woord of karakter word gekies vir omskakeling."
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "I_gnoreer altyd"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr "Geen verandering word aangebring aan die huidige keuse nie, en elke keer as dieselfde keuse gevind word, word dit outomaties oorgeslaan."
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Ve_rvang"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr "Vervang die seleksie met die voorgestelde karakters of die woord volgens die formaatopsies."
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "V_ervang altyd"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr "Vervang die seleksie met die voorgestelde karakters of woord volgens die formaatopsies. Elke keer as dieselfde keuse gevind word, word dit outomaties vervang."
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Ver_vang met karakter"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr "Merk karakter-vir-karakter deur die geselekteerde teks om dit te skuif. As dit nie gemerk is nie, sal volle woorde vervang word."
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr "Opsies..."
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr "Open die \"Hangul/Hanja\"-Opsies dialoog."
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr "Skakel om die gekose Koreaanse teks, van Hangul na Hanja of van Hanja na Hangul."
@@ -14440,122 +14440,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Stoor-dialoë"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "Gebruik %PRODUCTNAME-_dialoë"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "Drukdialoë"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukaksie stel “dokument gewysig”-status"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
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:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreteer as jare tussen "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaar (twee syfers)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
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:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
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:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
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:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te verbeter"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Laai %PRODUCTNAME wanneer rekenaar aanskakel"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktieer Snelbeginner in stelsellaai"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME-snelbeginner"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Windows Verstek Toeps"
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr "Voer toets uit vir verstek-lêer assosiasies tydens aanvang"
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "%PRODUCTNAME Lêer Assosiasies"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Spesifiseer algemene gebruike vir %PRODUCTNAME."
@@ -15544,14 +15532,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "Gebruiker Agent"
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Opsies vir aanlynbywerkings"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr "Stel die opsies vir outomatiese kennisgewing en aflaai van aanlyn-opdaterings vir %PRODUCTNAME."
@@ -20454,67 +20448,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr "Die animasie-effek word telkens herhaal. As u wil hê dat die effek 'n vaste aantal kere moet speel, merk hierdie opsie af en voer die gewenste aantal in in die \"Deurlopend\"-veld."
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr "Spesifiseer hoeveel keer u die animasie-effek wil laat speel."
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Inkrement:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "_Pixels"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr "Die stapgrootte word in pixels gemeet."
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr "Voer in die aantal stappe vir die rol van die teks."
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Vertraging:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_Outomaties"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr "%PRODUCTNAME bepaal outomaties die lengte van die pouse voordat die effek herhaal word. Om die vertraging handmatig in te stel, deaktiveer u hierdie opsie en voer die gewenste waarde in in die \"Outomaties\"-veld."
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr "Spesifiseer die lengte van die pouse wat u wil hê voordat die effek herhaal word."
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Eienskappe"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr "Voeg by 'n animasie-effek op die teks in die geselekteerde tekenobjek."
@@ -21035,11 +21029,11 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "Vertoon Wenke tydens begin"
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
-msgstr "Aktiveer hierdie dialoog weer onder »Ekstras ▸ Opsies ... ▸ Algemeen«."
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
+msgstr ""
#. GALqP
#: cui/uiconfig/ui/tipofthedaydialog.ui:43
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 f0e805908ba..bc5a67e80ba 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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-18 15:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
"Language: af\n"
@@ -4556,15 +4556,15 @@ msgctxt ""
msgid "~Number"
msgstr "~Getal"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
-msgstr "Plak Getransponeerd "
+msgid "Paste Transposed"
+msgstr ""
#. EbDtX
#: CalcCommands.xcu
@@ -4576,14 +4576,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr "Getransponeerd"
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
@@ -4594,7 +4594,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "As ~Link"
-msgstr ""
+msgstr "As ~Skakel"
#. 4DJpG
#: CalcCommands.xcu
@@ -5044,7 +5044,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "ScFunctionsDeck"
-msgstr ""
+msgstr "ScFunksiesPaneel"
#. 7wktD
#: CalcWindowState.xcu
@@ -10274,7 +10274,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Zoom & Pan (Ctrl to Zoom Out, Shift to Pan)"
-msgstr ""
+msgstr "Zoom & Pan (Ctrl vir Uit-Zoom, Shift vir Panoramiese besigtiging)"
#. BRCmr
#: DrawImpressCommands.xcu
@@ -11494,7 +11494,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "ShapesDeck"
-msgstr ""
+msgstr "VormsPaneel"
#. RvAn9
#: DrawImpressCommands.xcu
@@ -11504,7 +11504,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SdSlideTransitionDeck"
-msgstr ""
+msgstr "SdSkyfieOorgangsPaneel"
#. BrCHL
#: DrawImpressCommands.xcu
@@ -11514,7 +11514,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SdCustomAnimationDeck"
-msgstr ""
+msgstr "SdAangepasteAnimasiePaneel"
#. KoQCq
#: DrawImpressCommands.xcu
@@ -11524,7 +11524,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SdMasterPagesDeck"
-msgstr ""
+msgstr "SdSkyfiemodelPaneel"
#. ESt3w
#: DrawWindowState.xcu
@@ -25626,7 +25626,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Search Commands"
-msgstr ""
+msgstr "Soek Opdragte"
#. NFhYp
#: GenericCommands.xcu
@@ -26876,7 +26876,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "PropertyDeck"
-msgstr ""
+msgstr "EienskappePaneel"
#. 8WZAk
#: GenericCommands.xcu
@@ -26886,7 +26886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "StyleListDeck"
-msgstr ""
+msgstr "StylLysPaneel"
#. Ac3Ja
#: GenericCommands.xcu
@@ -26896,7 +26896,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "GalleryDeck"
-msgstr ""
+msgstr "GalleryPaneel"
#. XMnKc
#: GenericCommands.xcu
@@ -26906,7 +26906,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "NavigatorDeck"
-msgstr ""
+msgstr "NavigatorPaneel"
#. uaVMn
#: ImpressWindowState.xcu
@@ -35676,7 +35676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "WriterPageDeck"
-msgstr ""
+msgstr "TeksBladsyPaneel"
#. cEVPJ
#: WriterCommands.xcu
@@ -35686,7 +35686,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "InspectorDeck"
-msgstr ""
+msgstr "OndersoekerPaneel"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index cab1469a4a5..3a72c946d90 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-16 05:38+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
"Language: af\n"
@@ -16594,112 +16594,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "Standaard filter..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Boonste 10"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Leeg"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Nie-leeg"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr "Tekskleur"
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr "Agtergrondkleur"
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "onbenoem"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Kolom %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Ry %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Vel"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Naam"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Heg vel aan"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Hernoem vel"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Tabblad Kleur"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Verstek"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Benoem objek"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Voeg beeld in"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr "Dié beeld is gedraai. Wil u hom in standaardoriëntasie indraai?"
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16707,135 +16713,135 @@ msgstr[0] "Een resultaat gevind"
msgstr[1] "%1 resultate gevind"
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr "(slegs %1 word gelys)"
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr "Beskerm Spreibladstruktuur"
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr "Hef op spreibladstruktuur se beskerming"
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr "Bladbeskerming ophef"
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Beskerm rekords"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Ontbeskerm rekords"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Wagwoord:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Wagwoord (opsioneel):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Verkeerde wagwoord"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~Einde"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Minimum"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Maksimum"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Waarde"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr "~Formule"
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~Bron"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~Inskrywings"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Stelsel"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Standaard;Teks;Datum (DMJ);Datum (MDJ);Datum (JMD);VS Engels;Versteek"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Tab-blad"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "ruimte"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -16847,1593 +16853,1593 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "Grafiese Filter"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Teks"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Kies velle"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Geselekteerde blaaie"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Liniaal"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Hierdie liniaal bestuur objekte op vaste posisies."
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Voorskou"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Hierdie vel vertoon hoe die data in die dokument georden sal word."
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Dokumentaansig"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Vel %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Sel %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Linkerarea"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Bladsyvoorskou"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Middelarea"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Regterarea"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Kop van bladsy %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Voet van bladsy %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Toevoerreël"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Dit is waar u teks, syfers of formules intik of redigeer."
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Media-terugspeel"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Muisknoppie gedruk"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Formule-nutsbalk"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME Spreiblaaie"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Voorskou modus)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr "Bladsye:"
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "Uitvoer van leë bladsye ~onderdruk"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr "Druk Alle Blaaie uit"
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr "Druk Geselekteerde Blaaie"
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr "Druk Geselekteerde Selle"
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr "Vanaf:"
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr "Alle ~Bladsye"
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Bladsy~e:"
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr "~Ewe bladsye"
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr "~Onewe bladsye"
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "Die volgende DDE-bron kon nie bygewerk word nie omdat die brondokument waarskynlik nie geopen is nie. Begin die brondokument en probeer weer."
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "Die volgende eksterne lêer kon nie gelaai word nie. Data gekoppel vanuit die lêer was nie opgedatteer nie."
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "Eksterne skakels bywerk."
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Reikwydte bevat kolomet~ikette"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Reikwydte bevat ~ryetikette"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Ongeldige waarde"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Geen formule gespesifiseer."
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "Geen ry of kolom gespesifiseer nie."
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "Ongedefineerde naam of bereik."
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "Ondefineerde name of verkeerde sel verwysing."
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Formules vorm geen kolom nie."
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Formules vorm nie 'n ry nie."
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Voeg Outoformateer by"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Hernoem Outoformateer"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Naam"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Skrap OutoFormaat"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Wil u werklik die inskrywing # Autoformaat skrap?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Sluit"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Jan"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mrt"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "Noord"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Suid"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "Totaal"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Bladsy Anker"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "Sel Anker"
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr "Voorwaarde "
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Inhoud"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Velle"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Omvangname"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Databasis reikgebied"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Beelde"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE-objekte"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Opmerkings"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Geskakelde areas"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Tekenobjekte"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "aktief"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "onaktief"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "versteek"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Aktiewe Venster"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Scenario Naam"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Opmerking"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "Sorteer oplopend"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "Sorteer aflopend"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Aangepaste Sortering"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Naamkas"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Toevoerreël"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Funksieslimmerd"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Aanvaar"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Kanselleer"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr "Selekteer funksie"
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Formule"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Vou Formulebalk uit"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Vou in Formulebalk"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Datum"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Onbekende gebruiker"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Kolom ingevoeg"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Ry ingevoeg "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Blaai ingevoeg "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Kolom geskrap"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Ry geskrap"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Blad geskrap"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Reikwydte verskuif"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Gewysigde inhoud"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Gewysigde inhoud"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Gewysig na "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Oorspronklik"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Wysigings verwerp"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Aanvaar"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Verwerp"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Geen toegang"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<leeg>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Nie beskerm nie"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Nie wagwoordbeskermd"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Huts onversoenbaar"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Huts versoenbaar"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Hertik"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Bewegende Gemiddelde"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Eksponensiële Afvlakking"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Variansie Analise"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr "Variansie-Analise (ANOVA)"
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - Enkelfaktor"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "ANOVA - Twee-faktor"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Groepe"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Tussen Groepe"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "Binne Groepe"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Bron van Variasie"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr "F"
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr "Stapwydte F"
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-waarde"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F-krities"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Totaal"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Korrelasie"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "Korrelasies"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Kovariansie"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "Kovariansies"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Beskrywende Statistiek"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Gemiddelde"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Standaardfout"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Modus"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Mediaan"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Variansie"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Standaardafwyking"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Kurtosis"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Skeefheid"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Omvang"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Minimum"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Maksimum"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Som"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Tel"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr "Eerste Kwartiel"
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr "Derde Kwartiel"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "Ewekansig ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Uniforme"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "Uniforme Heelgetal"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Cauchy"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Bernoulli"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Binomiaal"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Negatiewe Binomiaal"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Chi-Kwadraat"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Geometriese Verdeling"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Minimum"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Maksimum"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Gemiddelde"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Standaardafwyking"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Mediaan"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "Sigma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p-Waarde"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "Aantal Pogings"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "nu-Waarde"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Steekproewe"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-toets"
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-toets"
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr "Gekoppelde t-toets"
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr "Gekoppelde t-toets"
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "Z-toets"
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "Z-toets"
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "Toets van Onafhanklikheid (Chi-Kwadraat)"
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "Regressie"
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "Regressie"
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr "Fourier Analise"
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr "Fourier Analise"
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Kolom %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Ry %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Veranderlike 1"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Veranderlike 2"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "Hipotetiese Gemiddelde Verskil"
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Waarnemings"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "Waargenome Gemiddelde Verskil"
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr "Aangepaste R^2"
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr "Aantal X-veranderlikes"
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-waarde"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "Kritiese Waarde"
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "Statistiese Toets"
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr "Onderste"
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr "Boonste"
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr "Invoerbereik is ongeldig."
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr "Uitvoeradres is nie geldig nie."
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Lineêr"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Logaritme"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Mag"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr "Onafhanklike veranderlike(s) bereik is nie geldig nie."
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr "Afhanklike veranderlike(s) bereik is nie geldig nie."
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr "Vertrouensvlak moet wees in die interval (0,1)."
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr "Y veranderlike bereik kan nie meer as een kolom bevat nie."
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr "Y veranderlike bereik kan nie meer as een ry bevat nie."
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr "Eenveranderlike regressie: Die observasiegetal in X en Y moet ooreenstem."
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr "Multiveranderlike regressie: Die observasiegetal in X en Y moet ooreenstem."
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Regressie Model"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr "Regressie Statistiek"
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr "Resíduum"
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr "Vertrouensvlak"
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr "Koeffisiënte"
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr "t-Statistiek"
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Asse Afsnit"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr "Voorspelde Y"
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr "LINESTE rou uitvoer"
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) regter-stert"
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F Krities regter-stert"
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) linker stert"
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F Krities linker-stert"
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P twee-stert"
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr "F Krities twee-sydig"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "Pearson-Korrelasie"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "Variansie van die verskille"
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t Stat"
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) een-stert"
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t Krities eensydig"
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) tweesydig"
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr "t Krities tweesydig"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr "Z"
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "Bekende Variansie"
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) eensydig"
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "z Krities eensydig"
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (Z<=z) tweesydig"
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr "z Krities tweesydig"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr "Fourier Transformasie"
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr "Inverse Fourier Transformasie"
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr "Reël"
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr "Imaginêr"
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr "Grootte"
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr "Fase"
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr "Meer as twee kolomme is in die gegroepeerde kolommodus gekies."
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr "Meer as twee kolomme is in die gegroepeerde rymodus gekies."
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr "Geen data in die invoerbereik."
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr "Die uitvoer is te lank vir die werkblad."
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr "Invoer data bereik"
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr "Redigering toegelaat"
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr "Na sel"
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr "Na sel (wysig met sel)"
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr "Aan bladsy"
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "Geen gebruikerdata bekikbaar."
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(eksklusiewe toegang)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr "Geen benoemde bereik beskikbaar in die geselekteerde dokument"
@@ -27961,7 +27967,7 @@ msgstr "Onderdruk uitskryf van leë bladsye"
#: sc/uiconfig/scalc/ui/printeroptions.ui:29
msgctxt "printeroptions|extended_tip|suppressemptypages"
msgid "If checked empty pages that have no cell contents or draw objects are not printed."
-msgstr ""
+msgstr "As dit gemerk is, word leë bladsye sonder selinhoud of teken objekte, nie gedruk nie."
#. tkryr
#: sc/uiconfig/scalc/ui/printeroptions.ui:38
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 4b35ff61d93..6daf15b53b0 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-04-28 11:49+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-16 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
"Language: af\n"
@@ -3520,7 +3520,7 @@ msgstr "Bladsynaam"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:36
msgctxt "drawprinteroptions|extended_tip|printname"
msgid "Specifies whether to print the page name of a document."
-msgstr ""
+msgstr "Spesifiseer om die naam bladsy van die dokument te druk."
#. ENmG2
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:48
@@ -3532,7 +3532,7 @@ msgstr "Datum en tyd"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:56
msgctxt "drawprinteroptions|extended_tip|printdatetime"
msgid "Specifies whether to print the current date and time."
-msgstr ""
+msgstr "Spesifiseer om die huidige datum en tyd te druk."
#. oFCsx
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:72
@@ -3550,7 +3550,7 @@ msgstr "Oorspronklike Kleure"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:110
msgctxt "drawprinteroptions|extended_tip|originalcolors"
msgid "Specifies to print in original colors."
-msgstr ""
+msgstr "Spesifiseer om in oorspronklike kleure te druk."
#. 5FsHB
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:122
@@ -3562,7 +3562,7 @@ msgstr "Grysskaal"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:132
msgctxt "drawprinteroptions|extended_tip|grayscale"
msgid "Specifies to print colors as grayscale."
-msgstr ""
+msgstr "Spesifiseer om kleure met 'n grys palet te druk."
#. oFnFq
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:144
@@ -3574,7 +3574,7 @@ msgstr "Swart-en-wit"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:154
msgctxt "drawprinteroptions|extended_tip|blackandwhite"
msgid "Specifies to print colors as black and white."
-msgstr ""
+msgstr "Spesifiseer om kleure in swart en wit te druk."
#. MGAFs
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:170
@@ -3592,7 +3592,7 @@ msgstr "Oorspronklike grootte"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:208
msgctxt "drawprinteroptions|extended_tip|originalsize"
msgid "Specifies that you do not want to further scale pages when printing."
-msgstr ""
+msgstr "Spesifiseer dat u bladsye voortaan nie wil skaal nie, tydens die druk proses."
#. drvLN
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:220
@@ -3600,9 +3600,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Aanpas in gedrukte Bladsy"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3612,9 +3612,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Verdeel in meerdere bladsye papier"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
@@ -3628,7 +3628,7 @@ msgstr "Vul die gedrukte bladsy met herhaalde bladsye"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:274
msgctxt "drawprinteroptions|extended_tip|tilesheet"
msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper."
-msgstr ""
+msgstr "Spesifiseer dat bladsye in teëlformaat gedruk moet word. As die bladsye of skyfies kleiner is as die vel papier, herhaal dan die bladsye of skyfies op een vel."
#. qbU9A
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:290
@@ -6187,19 +6187,19 @@ msgstr "Volgorde:"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:76
msgctxt "impressprinteroptions|extended_tip|impressdocument"
msgid "Select which parts of the document should be printed."
-msgstr ""
+msgstr "Selekteer watter gedeeltes van die dokument gedruk moet word."
#. nPeoT
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:91
msgctxt "impressprinteroptions|extended_tip|slidesperpage"
msgid "Select how many slides to print per page."
-msgstr ""
+msgstr "Selekteer hoeveel skyfies per bladsy gedruk moet word."
#. B3gRG
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:106
msgctxt "impressprinteroptions|extended_tip|slideperpageorder"
msgid "Specify how to arrange slides on the printed page."
-msgstr ""
+msgstr "Selekteer hoe die skyfies op 'n gedrukte bladsy gerangskik moet word."
#. xTmU5
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:121
@@ -6217,7 +6217,7 @@ msgstr "Skyfie Naam"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:158
msgctxt "impressprinteroptions|extended_tip|printname"
msgid "Specifies whether to print the page name of a document."
-msgstr ""
+msgstr "Spesifiseer om die naam bladsy van die dokument te druk."
#. PYhD6
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:170
@@ -6229,7 +6229,7 @@ msgstr "Datum en tyd"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:178
msgctxt "impressprinteroptions|extended_tip|printdatetime"
msgid "Specifies whether to print the current date and time."
-msgstr ""
+msgstr "Spesifiseer om die huidige datum en tyd te druk."
#. URBvB
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:190
@@ -6241,7 +6241,7 @@ msgstr "Versteekte Skyfies"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:198
msgctxt "impressprinteroptions|extended_tip|printhidden"
msgid "Specifies whether to print the pages that are currently hidden."
-msgstr ""
+msgstr "Spesifiseer of versteekte bladsye, gedruk moet word."
#. YSdBB
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:214
@@ -6259,7 +6259,7 @@ msgstr "Oorspronklike Kleure"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:252
msgctxt "impressprinteroptions|extended_tip|originalcolors"
msgid "Specifies to print in original colors."
-msgstr ""
+msgstr "Spesifiseer om in oorspronklike kleure te druk."
#. Hp6An
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:264
@@ -6271,7 +6271,7 @@ msgstr "Grysskaal"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:274
msgctxt "impressprinteroptions|extended_tip|grayscale"
msgid "Specifies to print colors as grayscale."
-msgstr ""
+msgstr "Spesifiseer om kleure met 'n grys palet te druk."
#. vnaCm
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:286
@@ -6283,7 +6283,7 @@ msgstr "Swart-en-Wit"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:296
msgctxt "impressprinteroptions|extended_tip|blackandwhite"
msgid "Specifies to print colors as black and white."
-msgstr ""
+msgstr "Spesifiseer om kleure in swart en wit te druk."
#. G3CZp
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:312
@@ -6301,7 +6301,7 @@ msgstr "Oorspronklike Grootte"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:350
msgctxt "impressprinteroptions|extended_tip|originalsize"
msgid "Specifies that you do not want to further scale pages when printing."
-msgstr ""
+msgstr "Spesifiseer dat u bladsye voortaan nie wil skaal nie, tydens die druk proses."
#. f2eFU
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:362
@@ -6313,7 +6313,7 @@ msgstr "In druk-bladsy inpas"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:372
msgctxt "impressprinteroptions|extended_tip|fittoprintable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
-msgstr ""
+msgstr "Spesifiseer of objekte wat buite die kantlyne van die huidige drukker strek, afgeskaal moet om te pas in die drukbladsy."
#. wCDEw
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:384
@@ -6325,7 +6325,7 @@ msgstr "Verdeel oor meerdere papier bladsye"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:394
msgctxt "impressprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
-msgstr ""
+msgstr "Druk 'n grootformaat dokument, soos 'n plakkaat of banier, deur die dokumentbladsy oor verskeie velle papier te versprei. Die verspreidingsopsie bereken hoeveel velle papier benodig word. U kan die bladsyvelle dan saamvoeg."
#. gCjUa
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:406
@@ -6337,7 +6337,7 @@ msgstr "Teël bladsy met herhaalde skyfies"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:416
msgctxt "impressprinteroptions|extended_tip|tilesheet"
msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper."
-msgstr ""
+msgstr "Spesifiseer dat bladsye in teëlformaat gedruk moet word. As die bladsye of skyfies kleiner is as die vel papier, herhaal dan die bladsye of skyfies op een vel."
#. xa7tq
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:432
@@ -8462,7 +8462,7 @@ msgstr "Verstek"
#: sd/uiconfig/simpress/ui/prntopts.ui:42
msgctxt "extended_tip|pagedefaultrb"
msgid "Specifies that you do not want to further scale pages when printing."
-msgstr "Spesifiseer dat u nie bladsye wil skaal nie tydens die druk proses."
+msgstr "Spesifiseer dat u bladsye voortaan nie wil skaal nie, tydens die druk proses."
#. Azbxx
#: sd/uiconfig/simpress/ui/prntopts.ui:53
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 06bf984a177..b611692a00a 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-04-28 11:49+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-16 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
"Language: af\n"
@@ -2908,7 +2908,7 @@ msgstr "Nee"
#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
-msgstr ""
+msgstr "Soek bevel"
#. w2G7M
#: sfx2/uiconfig/ui/custominfopage.ui:15
@@ -3012,148 +3012,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "Bevat beskrywende inligting oor die dokument."
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr "Objek"
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr "Huidige seleksie in die dokument"
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr "Huidige seleksie"
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr "Hervertoon die Dokument Boomstruktuur."
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr "Vernuwe"
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr "Objek"
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr "Terug"
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr "Terugkeer"
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr "Inspekteer"
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr "Inspekteer"
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr "Vernuwe"
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr "Vernuwe"
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "Klas Naam:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr "Naam"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr "Koppelvlakke"
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr "Dienste"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr "Waarde"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr "Tipe"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr "Inligting"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr "Eienskappe"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr "Metode"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr "Resultaat Datatipe"
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr "Parameters"
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr "Implementasie Klas"
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr "Metodes"
@@ -3165,55 +3165,55 @@ msgid "Inspect"
msgstr "Inspekteer"
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "Integreer fonts in die dokument"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr "Merk hierdie kassie om die lettertipes wat in die dokumentlêer gebruik word, in te bed vir draagbaarheid tussen verskillende rekenaarstelsels."
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr "Voeg slegs fonts by wat in die dokument in gebruik is"
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr "Font Insluiting"
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr "Latynse Fonte"
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr "Asiatiese Fonte"
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr "Kompleks Fonte"
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr "Integreer Font skripsies"
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr "Bed die dokumentlettertipes in die huidige lêer."
@@ -3693,19 +3693,19 @@ msgid "Remove Property"
msgstr "Verwyder Eienskap"
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr "..."
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr "Ja"
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr "Nee"
@@ -4563,61 +4563,61 @@ msgid "Wrap _around"
msgstr "Rondom omloop"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "_Open lêer leesalleen"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr "Bepaal dat hierdie dokument in leesalleen-modus oopgemaak word."
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Teken _veranderinge aan"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr "Aktiveer die opname van veranderinge. Dit is identies aan \"Edit → Track Changes → Record\"."
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Beskerm..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr "Beskerm die status van opnameveranderings met 'n wagwoord. As die opname van veranderinge vir die huidige dokument beskerm word, word die knoppie gemerk as Onbeskerm. Klik op Onbeskerm en voer die regte wagwoord in om die beskerming uit te skakel."
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "Verw_yder beskerming..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr "Beskerm die status van veranderings-opname met 'n wagwoord. As die opname van veranderinge vir die huidige dokument beskerm word, word die knoppie Onbeskermd gemerk. Klik op Onbeskerm en voer die regte wagwoord in om die beskerming uit te skakel."
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Opsies vir lêerdeling"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr "Stel die wagwoordopsies vir die huidige dokument in."
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index 233b4c1baf6..d7f716dec91 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-02-18 20:36+0000\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-16 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/af/>\n"
"Language: af\n"
@@ -3170,7 +3170,7 @@ msgstr "Titel"
#: starmath/uiconfig/smath/ui/printeroptions.ui:43
msgctxt "printeroptions|extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
-msgstr ""
+msgstr "Spesifiseer of u die naam van die dokument in die drukstuk wil hê."
#. pHDis
#: starmath/uiconfig/smath/ui/printeroptions.ui:55
@@ -3182,7 +3182,7 @@ msgstr "Formule teks"
#: starmath/uiconfig/smath/ui/printeroptions.ui:63
msgctxt "printeroptions|extended_tip|formulatext"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
-msgstr ""
+msgstr "Die inhoud van die Opdragte-venster verskyn onderaan die bladsy."
#. 3zuC8
#: starmath/uiconfig/smath/ui/printeroptions.ui:75
@@ -3194,7 +3194,7 @@ msgstr "Grense"
#: starmath/uiconfig/smath/ui/printeroptions.ui:83
msgctxt "printeroptions|extended_tip|borders"
msgid "Applies a thin border to the formula area in the printout."
-msgstr ""
+msgstr "Druk die formule area met 'n dun omranding."
#. M6JQf
#: starmath/uiconfig/smath/ui/printeroptions.ui:99
@@ -3212,7 +3212,7 @@ msgstr "Oorspronklike grootte"
#: starmath/uiconfig/smath/ui/printeroptions.ui:137
msgctxt "printeroptions|extended_tip|originalsize"
msgid "Prints the formula without adjusting the current font size."
-msgstr ""
+msgstr "Druk die formule sonder aanpassing van die huidige lettergrootte."
#. gzwzd
#: starmath/uiconfig/smath/ui/printeroptions.ui:149
@@ -3224,7 +3224,7 @@ msgstr "Aanpas by bladsy"
#: starmath/uiconfig/smath/ui/printeroptions.ui:158
msgctxt "printeroptions|extended_tip|fittopage"
msgid "Adjusts the formula to the page format used in the printout."
-msgstr ""
+msgstr "Pas die formule aan na die gedrukte bladsy formaat."
#. jqNJw
#: starmath/uiconfig/smath/ui/printeroptions.ui:175
@@ -3236,13 +3236,13 @@ msgstr "Skalering"
#: starmath/uiconfig/smath/ui/printeroptions.ui:184
msgctxt "printeroptions|extended_tip|scaling"
msgid "Reduces or enlarges the size of the printed formula by a specified factor."
-msgstr ""
+msgstr "Verklein of vergroot die gedrukte formule met die faktor gespesifiseer."
#. cqANF
#: starmath/uiconfig/smath/ui/printeroptions.ui:202
msgctxt "printeroptions|extended_tip|scalingspim"
msgid "Enter the scale factor for scaling the formula."
-msgstr ""
+msgstr "Voer die skaalfaktor in, vir skalering van die formule."
#. mKDDK
#: starmath/uiconfig/smath/ui/printeroptions.ui:225
@@ -3269,127 +3269,140 @@ msgid "These changes will apply for all new formulas."
msgstr "Hierdie veranderinge sal vir nuwe formules geld."
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "Titel ry"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
-msgstr "Spesifiseer of die naam van die dokument gedruk moet word."
+msgstr "Spesifiseer of u die naam van die dokument in die drukstuk wil hê."
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "Formule Teks"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr "Die inhoud van die Opdragte-venster verskyn onderaan die bladsy."
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "Rame"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr "Druk die formule area met 'n dun omranding."
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Drukopsies"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Oorspronklike Grootte"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
-msgstr "Die formule word gedruk sonder aanpassing van die huidige lettergrootte."
+msgstr "Druk die formule sonder aanpassing van die huidige lettergrootte."
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Aanpas by bladsy"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
-msgstr "Die formule is aangepas by die gedrukte bladsyformaat."
+msgstr "Pas die formule aan na die gedrukte bladsy formaat."
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "Skalering:"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr "Die formule word verklein of vergroot in die drukstuk met die gespesifiseerde faktor."
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Drukformaat"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Ignoreer ~~ en ' Simbole"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr "Hierdie plekhouers word verwyder as hulle aan die einde van die lyn is."
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Sluit in, slegs gebruikte simbole (kleiner lêer grootte)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr "Stoor slegs die betrokke simbole saam, in die formule gebruik."
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Sluit outomaties: vierkantige-, ronde- en krul-hakies"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Diverse Opsies"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr "Hier definieer u formule-instellings wat op alle dokumente van toepassing is."
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 0d4bd549ea8..f6f71e8db3d 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-04-28 11:49+0000\n"
+"PO-Revision-Date: 2021-05-16 05:38+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1560975732.000000\n"
#. fLdeV
@@ -4996,7 +4996,7 @@ msgstr "Bribri (Maleis)"
#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
-msgstr ""
+msgstr "Engels (Denemarke)"
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 174c66040cd..0ed1203fa12 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-06 19:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
@@ -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: 1560976220.000000\n"
#. 3GkZj
@@ -14005,6 +14005,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr "Herbegin %PRODUCTNAME om veilige modus te betree"
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 0ef86240b41..8bdb3778020 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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-16 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
"Language: af\n"
@@ -8252,1213 +8252,1219 @@ msgstr "aan paragraaf"
#: sw/inc/strings.hrc:1114
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
+msgstr "as karakter"
+
+#. Uszmm
+#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "aan bladsy"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X-koördinaat:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y-koördinaat:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "bo"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Vertikaal gesentreer"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "onder"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Bokant van reël"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Reël gesentreer"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Onderkant van reël"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Bladsy lyn-spasiëring"
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Nie-bladsy lynspasiëring"
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "regs"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Horisontaal gesentreer"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "links"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "binnekant"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "buitekant"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Volle breedte"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Kolomme"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Wydte van skeisimbool:"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Maks. voetnoot-area:"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Redigeerbaar in leesalleen-dokument"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Verdeel"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr "Lys Styl: (%LISTSTYLENAME)"
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr "Lys Styl: (Geen)"
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "geskakel met "
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "en "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Tel reëls"
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "moenie reëls tel nie"
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "herbegin reëltelling by: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Helderheid: "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Rooi: "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Groen: "
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Blou: "
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Kontras: "
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Gamma: "
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Deursigtigheid: "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Keer om"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "moenie omkeer nie"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Grafikamodus: "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Standaard"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Grys skale"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Swart-en-wit"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermerk"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Rotasie"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Geen rooster"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Rooster (slegs reëls)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Rooster (reëls en karakters)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Volg teksvloei"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Moenie teksvloei volg nie"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Voeg rande saam"
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Moenie rande saamvoeg nie"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabel"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr "Raam"
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Bladsy"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Tekening"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Beheer"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "Afdeling"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Boekmerk"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Grafika"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Opskrifte"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Seleksie"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Voetnoot"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Herinnering"
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Opmerking"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Herhaal soektog"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Indeksinskrywing"
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Tabelformule"
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Verkeerde tabelformule"
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "Onlangsheid"
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr "Veld"
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr "Veld volgens Tipe"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Volgende tabel"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr "Volgende raam"
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Volgende bladsy"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Volgende tekening"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Volgende kontrole"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Volgende afdeling"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Volgende boekmerk"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Volgende grafika"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Volgende OLE-objek"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Volgende opskrif"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Volgende seleksie"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Volgende voetnoot"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Volgende herinnering"
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Volgende opmerking"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Soek verder vorentoe"
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Volgende indeksinskrywing"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Vorige tabel"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr "Vorige raam"
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Vorige bladsy"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Vorige tekening"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Vorige kontrole"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Vorige afdeling"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Vorige boekmerk"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Vorige grafika"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Vorige OLE-objek"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Vorige opskrif"
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Vorige seleksie"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Vorige voetnoot"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Vorige herinnering"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Vorige opmerking"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Soek verder agtertoe"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Vorige indeksinskrywing"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Vorige tabelformule"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Volgende tabelformule"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Vorige foutiewe tabelformule"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Volgende foutiewe tabelformule"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "Gaan terug"
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "Gaan vooruit"
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr "Vorige veld"
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr "Volgende Veld"
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
-msgstr "Vorige veld met huidige veld tipe"
+msgid "Previous '%FIELDTYPE' field"
+msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
-msgstr "Volgende veld met huidige tipe"
+msgid "Next '%FIELDTYPE' field"
+msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ingevoeg"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Geskrap"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Geformateer"
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ry ingevoeg"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ry geskrap"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Sel ingevoeg"
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Ry geskrap"
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Eindnoot: "
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Voetnoot: "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "[%s+Kliek], om die 'Smart Tag' kieslys oop te maak"
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Kop (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Eerste bladsykop (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Linkerbladsykop (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Regterbladsykop (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Voet (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Eerste bladsyvoet (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Linkerbladsyvoet (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Regterbladsyvoet (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Skrap kop..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Formateer kop..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Skrap voet..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formateer voet..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Onbeweeglike Tabel"
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr "Redigeer bladsybreuk"
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeldlêer kan nie oopgemaak word nie"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeldlêer kan nie gelees word nie"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeldformaat"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Hierdie beeldlêerweergawe word nie ondersteun nie"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeldfilter nie gevind nie"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nie genoeg geheue om die beeld in te voeg nie."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Voeg beeld in"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Opmerking: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Invoeging"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Skrapping"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Formate"
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Tabelveranderinge"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Bladsy "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Bladsy %1 van %2"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Bladsy %1 van %2 (bladsy %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Bladsy %1 van %2 (Bladsy %3 van %4 vir drukwerk)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Raam"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabel"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Tabelry"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Tabelsel"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Bladsy"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Kop"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Voet"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-HTML-dokument"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titel"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Skeier"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Vlak "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Die lêer “%1” in die “%2” pad kon nie gevind word nie."
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Gebruikergedefinieerde indeks"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<geen>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<geen>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "H#"
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "HI"
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "BH"
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Inkeep"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Teks"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Bladsynommer"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Hoofstukinligting"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Begin van hiperskakel"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Einde van hiperskakel"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Bibliografie-inskrywing: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Karakterstyl: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Teks Struktuur"
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Druk Ctrl+Alt+A om fokus te skuif vir meer bewerkings"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Druk linker- of regterpyltjie om die struktuurkontroles te kies"
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Druk Ctrl+Alt+B om fokus terug te skuif na die huidige struktuurkontrole"
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Keuringslêer vir indeks (* .sdi)"
@@ -9467,259 +9473,259 @@ msgstr "Keuringslêer vir indeks (* .sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Basislyn ~bo"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Basislyn onder"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Gesentreerde basislyn"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Voeg objek in"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Redigeer objek"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Sjabloon: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Rande"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Agtergrond"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Paragraafstyl: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Bladsynommers kan nie op die huidige bladsy toegepas word nie. Ewe getalle kan op linkerbladsye gebruik word en onewe getalle op regterbladsye."
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-meesterdokument"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "’n Lêerkoppeling sal die inhoud van die huidige afdeling skrap. Nogtans koppel?"
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Die getikte wagwoord is ongeldig."
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Die wagwoord is nie gestel nie."
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Woordafbreking klaar"
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Geen (moenie spelling kontroleer nie)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Stel terug na verstektaal"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Meer..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Ignoreer"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Verduidelikings..."
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Kontrole van spesiale streke is gedeaktiveer. Kontroleer in elk geval?"
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Kon nie dokumente saamvoeg nie."
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "Die %PRODUCTNAME Base-komponent ontbreek en is nodig om massapos te gebruik."
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Die bron kan nie gelaai word nie."
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Geen faksdrukker is onder Nutsgoed/Opsies/%1/Druk gestel nie."
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML-dokument"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Teksdokument"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Bron nie gespesifiseer nie."
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Vlak "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Skema "
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Redigeer voetnoot/eindnoot"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Soeksleutel is XX maal vervang."
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ry "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Kolom "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~Voer bron uit..."
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~Voer kopie van bron uit..."
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~Gaan voort"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Stuur aan: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Suksesvol vesend"
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Stuur het misluk"
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "MAATSKAPPY;CR;VOORNAAM; ;VAN;CR;ADRES;CR;STAD; ;PROV; ;POSKODE;CR;LAND;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Teksformule"
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Geen Item gespesifiseer"
@@ -9728,7 +9734,7 @@ msgstr "Geen Item gespesifiseer"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasievlak hoër is"
@@ -9737,137 +9743,125 @@ msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasie
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Geldig "
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Ongeldig"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Ongeldige handtekening"
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Onderteken deur"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Paragraafhandtekening"
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Visitekaartjies"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Pos-Instellings"
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Voeg in"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Skrap"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Attribute"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Soekterm"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Alternatiewe inskrywing"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1e sleutel"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2e sleutel"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Opmerking"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Selfde kas"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Slegs woord"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ja"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Nee"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Doelgemaak"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr "Data bron is nie beskikbaar. \"Mail merge\" slimmerd sal nie korrek werk nie."
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr "Uitruil Databasis"
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11147,7 +11141,7 @@ msgid "Entry"
msgstr "Inskrywing"
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "Voeg 'n literatuurverwysing in."
@@ -17475,109 +17469,109 @@ msgid "Previous footnote/endnote"
msgstr "Vorige Voet- / Eind-nota"
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "Spring na die vorige voetnota- of eindnota-anker in die dokument."
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr "Volgende Voet- / Eind-nota"
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "Spring na die volgende voetnota- of eindnota-anker in die dokument."
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Outomaties"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr "Ken outomaties opeenvolgende nommers aan die voet- of eind-notas wat u invoeg."
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr "Karakter"
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr "Kies hierdie opsie om 'n karakter of simbool te definieer vir die huidige voetnota."
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Karakter"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr "Kies hierdie opsie om 'n karakter of simbool te definieer vir die huidige voetnota."
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Kies…"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "Voeg in 'n spesiale karakter as 'n voet- of eind-nota anker."
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "Nommering"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "Voetnoot"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "Plaas 'n voetnota-anker in die dokument op die huidige wyserposisie en voeg die ooreenstemmende voetnota by, onderaan die bladsy."
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "Eindnota"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "Voeg 'n eindnota-anker op die huidige wyserposisie in die dokument en voeg die ooreenstemmende eindnota aan die einde van die dokument by."
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Soort"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr "Voeg in 'n voetnota of 'n eindnota in die dokument. Die anker vir die voetnoot of eindnoot word by die huidige wyserposisie ingevoeg."
@@ -24751,7 +24745,7 @@ msgstr "Bladsyagtergrond"
#: sw/uiconfig/swriter/ui/printeroptions.ui:34
msgctxt "printeroptions|extended_tip|pagebackground"
msgid "Specifies whether to print colors and objects that are inserted to the background of the page, which you have specified under Format - Page - Background."
-msgstr ""
+msgstr "Spesifiseer of kleure en voorwerpe aangebring op die agtergrond van die bladsy gedruk moet word, soos deur u onder Formaat ▸ Bladsy ▸ Agtergrond gespesifiseer."
#. K9pGA
#: sw/uiconfig/swriter/ui/printeroptions.ui:46
@@ -24763,7 +24757,7 @@ msgstr "Beelde en ander grafika-objekte"
#: sw/uiconfig/swriter/ui/printeroptions.ui:54
msgctxt "printeroptions|extended_tip|pictures"
msgid "Specifies whether the graphics and drawings or OLE objects of your text document are printed."
-msgstr ""
+msgstr "Spesifiseer of die grafika en tekeninge of OLE objekte in u teks dokument gedruk moet word."
#. VRCmc
#: sw/uiconfig/swriter/ui/printeroptions.ui:66
@@ -24775,7 +24769,7 @@ msgstr "Versteekte teks"
#: sw/uiconfig/swriter/ui/printeroptions.ui:74
msgctxt "printeroptions|extended_tip|hiddentext"
msgid "Enable this option to print text that is marked as hidden."
-msgstr ""
+msgstr "Aktiveer hierdie opsie om teks wat as verborge gemerk is, te druk."
#. boJH4
#: sw/uiconfig/swriter/ui/printeroptions.ui:86
@@ -24787,7 +24781,7 @@ msgstr "Plekhouers vir teks"
#: sw/uiconfig/swriter/ui/printeroptions.ui:94
msgctxt "printeroptions|extended_tip|placeholders"
msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout."
-msgstr ""
+msgstr "Aktiveer hierdie opsie om teks-plekhouers te druk. Deaktiveer die opsie om die teks-plekhouers in die drukstuk, leeg te laat."
#. 3y2Gm
#: sw/uiconfig/swriter/ui/printeroptions.ui:106
@@ -24799,7 +24793,7 @@ msgstr "Vormkontroles"
#: sw/uiconfig/swriter/ui/printeroptions.ui:114
msgctxt "printeroptions|extended_tip|formcontrols"
msgid "Specifies whether the form control fields of the text document are printed."
-msgstr ""
+msgstr "Spesifiseer of die vorm kontrole velde van die teksdokument gedruk word."
#. w7VH3
#: sw/uiconfig/swriter/ui/printeroptions.ui:134
@@ -24811,7 +24805,7 @@ msgstr "Opmerkings:"
#: sw/uiconfig/swriter/ui/printeroptions.ui:150
msgctxt "printeroptions|extended_tip|writercomments"
msgid "Specify where to print comments (if any)."
-msgstr ""
+msgstr "Spesifiseer waar kommentaar (indien enige) gedruk moet word."
#. M6JQf
#: sw/uiconfig/swriter/ui/printeroptions.ui:173
@@ -24829,7 +24823,7 @@ msgstr "Druk teks in swart"
#: sw/uiconfig/swriter/ui/printeroptions.ui:204
msgctxt "printeroptions|extended_tip|textinblack"
msgid "Specifies whether to always print text in black."
-msgstr ""
+msgstr "Spesifiseer dat teks altyd in swart gedruk moet word."
#. uFDfh
#: sw/uiconfig/swriter/ui/printeroptions.ui:213
@@ -24847,7 +24841,7 @@ msgstr "Druk outomaties ingevoegde leë bladsye"
#: sw/uiconfig/swriter/ui/printeroptions.ui:244
msgctxt "printeroptions|extended_tip|autoblankpages"
msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page."
-msgstr ""
+msgstr "As hierdie opsie geaktiveer is, word outomaties ingevoegde leë bladsye, gedruk. Dit is beter as u dubbelsy druk. Byvoorbeeld in 'n boek is paragraafstyl 'hoofstuk' van toepassing sodat dit altyd met 'n onewe genommerde bladsy begin. As die vorige hoofstuk op 'n onewe bladsy eindig, voeg % PRODUCTNAME 'n ewe genommerde leë bladsy in. Hierdie opsie bepaal sodat die ewe genommerde bladsye gedruk word."
#. tkryr
#: sw/uiconfig/swriter/ui/printeroptions.ui:253
@@ -29731,200 +29725,200 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr "Kies die manier waarop u die teks om 'n objek moet beklee."
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr "Afkapping Af"
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr "Plaas die objek op 'n afsonderlike lyn in die dokument. Die teks in die dokument verskyn bo en onder die objek, maar nie aan die sye nie."
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr "Voorheen"
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr "Laat die teks oorloop aan die linkerkant van die objek, mits voldoende spasie."
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr "Daarna"
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr "Laat die teks om die regterkant van die objek, omloop as daar genoeg spasie is."
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "Parallel"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr "Laat die teks aan al vier kante om die rand van die objek draai."
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "Regde_ur"
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr "Plaas die objek voor die teks."
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr "Afkapping Af"
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr "Plaas die objek op 'n afsonderlike lyn in die dokument. Die teks in die dokument verskyn bo en onder die objek, maar nie aan die sye nie."
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "_Optimaal"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr "Vou die teks outomaties na links, regs of aan al vier kante van die objekgrens. As die afstand tussen die objek en die rand van die bladsy minder as 2 cm is, sal die teks nie toegedraai word nie."
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Instelling"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "_Links:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "_Regs:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "_Bo:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "_Onder:"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "Voer die hoeveelheid spasie in wat u wil laat tussen die linkerrand van die objek en die teks."
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "Voer in die hoeveelheid spasie wat u wil laat tussen die regterrand van die objek en die teks."
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "Voer die hoeveelheid spasie in wat u tussen die bokant van die voorwerp en die teks wil laat."
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "Voer in die hoeveelheid spasie wat u tussen die onderkant van die voorwerp en die teks wil laat."
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "Spasiëring"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "Paragra_feer eers"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr "Begin 'n nuwe paragraaf onder 'n objek, nadat u \"Enter\" druk."
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "In agtergr_ond"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr "Stuur die geselekteerde objek na die agtergrond. Hierdie opsie is slegs beskikbaar as \"Deurlopende sirkulasietipe\" gekies is."
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "_Kontoer"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr "Bekleë die teks om die vorm van die objek. Hierdie opsie is nie beskikbaar vir sirkulasietipe Deurlopend of rame nie."
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "Slegs buite"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "Laat die teks net rondom dieobjekte werk, maar nie in oop gebiede binne die objek nie."
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr "Oor"
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Opsies"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr "Kies die manier waarop u die teks om 'n objek moet beklee."
diff --git a/source/af/uui/messages.po b/source/af/uui/messages.po
index 181adee2568..827eea4dd79 100644
--- a/source/af/uui/messages.po
+++ b/source/af/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-01-26 17:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/af/>\n"
@@ -649,17 +649,15 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Dokument in gebruik"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
-"Dokumentlêer “$(ARG1)” is gesluit vir redigering deur uself op ’n ander rekenaar sedert $(ARG2)\n"
-"\n"
-"Open dokument leesalleen, of ignoreer eie lêerslot en open die dokument om te redigeer."
#. 8mKMg
#: uui/inc/strings.hrc:34
@@ -667,14 +665,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~Open"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -686,77 +690,82 @@ msgstr ""
"Sluit dokument op ander rekenaar en probeer weer stoor, of ignoreer eie lêerslot en stoor huidige dokument."
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "~Probeer weer stoor"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~Stoor"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "~Onthou wagwoord tot aan einde van sessie"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "On_thou wagwoord"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Niegeënkripteerde strome"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "Dokument kon nie gesluit word nie"
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "Skepping van die sluitlêer (vir eksklusiewe toegang) deur % PRODUCTNAME faal, weens: of die ontbrekende magtiging om 'n sluitlêer in daardie lêerlokasie te kan skep, of onvoldoende vrye skyfspasie."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Dokument in gebruik"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
-"Dokument lêer '$(ARG1)' is gesluit vir redigering deur:\n"
-"\n"
-"$(ARG2)\n"
-"\n"
-"Maak die dokument oop vir lees-alleen of maak 'n kopie van die dokument oop vir redigering. $(ARG3)"
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -766,31 +775,37 @@ msgstr ""
"U kan ook die lêersluiting ignoreer en die dokument oopmaak vir redigering."
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Open ~kopie"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Onbekende gebruiker"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Dokument is deur andere gewysig"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -802,19 +817,19 @@ msgstr ""
"Wil u in elk geval stoor?"
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "~Stoor in elk geval"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Dokument in gebruik"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -830,7 +845,7 @@ msgstr ""
"Probeer later weer die dokument stoor, of stoor ’n kopie van daardie dokument."
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -846,19 +861,19 @@ msgstr ""
"U kan die lêer sluiting probeer ignoreer en daarna die bestaande dokument oorskryf."
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "~Probeer weer stoor"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "~Stoor as..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -868,7 +883,7 @@ msgstr ""
"Kies Vervang om die bestaande lêer te oorskryf of verskaf 'n nuwe lêernaam."
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -878,59 +893,116 @@ msgstr ""
"Verskaf 'n nuwe lêernaam asseblief."
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Gee asb. ’n ander lêernaam."
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Die wagwoord is verkeerd. Die lêer kan nie geopen word nie."
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Die wagwoord is verkeerd. Die lêer kan nie gewysig word nie."
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Die meesterwagwoord is verkeerd."
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Die wagwoord is verkeerd."
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Die wagwoordbevestiging pas nie."
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "Slotlêer is beskadig"
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
-msgstr "Die slotlêer is beskadig en waarskynlik leeg. Sou u die dokument leesalleen oopmaak en weer toemaak, word die beskadigde slotlêer verwyder."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Open ~leesalleen"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index f08d2a7a702..c38b36a19d8 100644
--- a/source/af/vcl/messages.po
+++ b/source/af/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:17+0200\n"
-"PO-Revision-Date: 2021-04-07 14:15+0000\n"
+"PO-Revision-Date: 2021-05-16 05:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/af/>\n"
"Language: af\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1547709865.000000\n"
#. k5jTM
@@ -609,7 +609,7 @@ msgstr "Druk slegs seleksie"
#: vcl/inc/strings.hrc:25
msgctxt "SV_RESID_STRING_NOSELECTIONPOSSIBLE"
msgid "[No selection possible]"
-msgstr ""
+msgstr "[Geen seleksie moontlik]"
#. QbQEb
#: vcl/inc/strings.hrc:27
@@ -1960,7 +1960,7 @@ msgstr "Laaste bladsy"
#: vcl/uiconfig/ui/printdialog.ui:193
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
-msgstr ""
+msgstr "Vertoon 'n voorskou van die laaste bladsy."
#. CZQLF
#: vcl/uiconfig/ui/printdialog.ui:209
@@ -2008,7 +2008,7 @@ msgstr "Eerste Bladsy"
#: vcl/uiconfig/ui/printdialog.ui:286
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
-msgstr ""
+msgstr "Vertoon 'n voorskou van die eerste bladsy."
#. dQEY8
#: vcl/uiconfig/ui/printdialog.ui:312
@@ -2110,7 +2110,7 @@ msgstr "_Seleksie"
#: vcl/uiconfig/ui/printdialog.ui:593
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
-msgstr ""
+msgstr "Druk slegs die geselekteerde area(s) of objek(te) in die huidige dokument."
#. UKYwM
#: vcl/uiconfig/ui/printdialog.ui:607
@@ -2140,7 +2140,7 @@ msgstr "Ewe Bladsye"
#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
-msgstr ""
+msgstr "Spesifiseer die bladsye om te druk."
#. wn2kB
#: vcl/uiconfig/ui/printdialog.ui:661
@@ -2428,7 +2428,7 @@ msgstr "Brosjure"
#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
-msgstr ""
+msgstr "Spesifiseer om die dokument te druk in brosjure formaat."
#. JMA7A
#: vcl/uiconfig/ui/printdialog.ui:1325
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 32333a90224..d89a44141ea 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4505,79 +4505,79 @@ msgid "_Replace"
msgstr "_መቀየሪያ"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "አኅጽሮተ ቃሎች ማጥፊያ"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr "የ አኅጽሮተ ቃል ዝርዝር ራሱ በራሱ የማያርማቸው "
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "ምህጻረ ቃል (ምንም አቢይ ፊደል የለም)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "በ_ራሱ መጨመሪያ"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr "አዲስ ቃላት ከ ሁለት አቢይ መነሻ ወይንም ትንንሽ መነሻ ጋር:"
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "_መቀየሪያ"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr "አዲስ ቃላት ከ ሁለት አቢይ መነሻ ወይንም ትንንሽ መነሻ ጋር ማጥፊያ:"
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr "የ ቃላቶች ወይንም አኅጽሮተ ቃሎች ዝርዝር የሚጀምሩ በ ሁለት አቢይ ፊደሎች ራሱ በራሱ የማያርማቸው: ሁሉም ቃሎች የሚጀምሩ በ ሁለት አቢይ ፊደሎች በ ሜዳ ውስጥ ተዘርዝረዋል "
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr "ይወስኑ የ አሕፃሮተ ቃል ወይንም ፊደል ቅልቅሎች እርስዎ %PRODUCTNAME ራሱ በራሱ እንዳይታረም የሚፈልጉትን"
@@ -9870,194 +9870,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "አቀራረብ"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "_Hangul/Hanja"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Hanja (Han_gul)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Hang_ul (Hanja)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "_Hangul/Hanja"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "Hanja (Han_gul)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "Hang_ul (Hanja)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "መቀየሪያ"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Hangul _only"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Hanja onl_y"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "_መተው"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "ሁልጊዜ መ_ተው"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "_መቀየሪያ"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr "የ ተመረጠውን መቀየሪያ በ ቀረበው ቃል ወይንም ባህሪ እንደ አቀራረቡ ምርጫ "
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "ሁልጊዜ መ_ቀየሪያ"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "በ_ ባህሪ መቀየሪያ"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr "ምርጫዎች..."
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr "መክፈቻ የ ሀንጉል/ሀንጃ ምርጫ ንግግር "
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr "የ ተመረጠውን የ ኮሪያን ጽሁፍ ከ ሀንጉል ወደ ሀንጃ ወይንም ከ ሀንጃ ወደ ሀንጉል መቀየሪያ: "
@@ -14438,122 +14438,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "መክፈቻ/ማስቀመጫ ንግግሮች"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "መጠቀሚያ %PRODUCTNAME _ንግግሮች"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "የ ማተሚያ ንግግሮች"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ማተሚያ ማሰናጃ ለ \"ሰነድ ማሻሻያ\" ሁኔታ"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "ሰነድ በሚታተም ጊዜ እንደ ማሻሻያ ይቆጠር እንደሆን መወሰኛ: "
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "የሰነድ ሁኔታዎች"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_መተርጓሚያ እንደ በ አመቶች መካከል "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "እና "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "አመት (ሁለት አሀዝ)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "የ አጠቃቀም ዳታ መስብሰቢያ እና ለ ሰነድ አዘጋጆቹ መላኪያ"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr "የ አጠቃቀም ዳታ ለ እርዳታ ለ ሰነድ አዘጋጆቹ የ ሶፍትዌር አጠቃቀሙን ለማሻሻል እንዲችሉ ይላኩ: "
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "እንድናሻሻል ይርዱን %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "መጫኛ %PRODUCTNAME ስርአቱ በሚጀምር-ጊዜ"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "በ ስርአቱ ትሪ ላይ በፍጥነት ማስጀመሪያ ማስቻያ"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME በፍጥነት ማስጀመሪያ"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "ባጠቃላይ ማሰናጃዎች መወሰኛ ለ %PRODUCTNAME."
@@ -15542,14 +15530,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "የ ተጠቃሚ ወኪል"
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "በመስመር ላይ የማሻሻያ ምርጫ"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr "አንዳንድ ምርጫ መወሰኛ ለ ራሱ በራሱ ማስታወቂያ እና ማውረጃ በ መስመር ላይ ማሻሻያ %PRODUCTNAME."
@@ -20452,67 +20446,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr "የ እንቅስቃሴ ውጤት በ ተከታታይ ማጫወቻ: ለ ተወሰነ ቁጥር ጊዜ ውጤቱን ማጫወቻ: ይህን ምልክት ማድረጊያ ያጽዱ እና ቁጥር ያስገቡ በ ተከታታይ ሳጥን ውስጥ"
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr "እንቅስቃሴው በ ተከታታይ ምን ያህል ጊዜ እንዲታይ እንደሚፈልጉ ቁጥር ያስገቡ "
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "ጭማሪ:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "_ፒክስልስ"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr "የ ጭማሪ ዋጋ በ ፒክስሎች መለኪያ"
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr "ጽሁፉ የሚሸበለልበት የ ጭማሪውን ቁጥር ያስገቡ "
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "ማዘግያ:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_ራሱ በራሱ"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr "%PRODUCTNAME ራሱ በራሱ ይወስናል ውጤቱ እንደገና ከ መደገሙ በፊት የሚቆይበትን ጊዜ: የ ማዘግያ ጊዜ በ እጅ ለማስገባት: ይህን ምልክት ማድረጊያ ያጽዱ እና ቁጥር ያስገቡ በ ራሱ በራሱ ሳጥን ውስጥ "
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr "ውጤቱ እንደገና ከ መደገሙ በፊት የሚቆይበትን መጠን ጊዜ ያስገቡ "
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "ባህሪዎች"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr "በ ተመረጠው የ መሳያ እቃ ውስጥ የ ጽሁፍ እንቅስቃሴ ውጤት መጨመሪያ "
@@ -21033,10 +21027,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 93ea7448505..691d6807fbe 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr "<variable id=\"functexample\">ለምሳሌ:</variable>"
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "የ አሁኑን አካል መቀየሪያ"
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ዳይሬክቶሪ መቀየሪያ እንደ ሀረግ"
-
#. ncuAv
#: 03020402.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 ec6399813fa..d6ed5efcd25 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,22 +10339,31 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
-#. yQzKr
+#. vFJRL
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"hd_id201586594659135\n"
+"par_id771621035263403\n"
"help.text"
-msgid "Service invocation"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
msgstr ""
-#. 5YFk5
+#. VAaLU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id211621035276160\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
msgstr ""
#. T8o7G
@@ -10321,6 +10375,15 @@ msgctxt ""
msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
#. HABsh
#: sf_exception.xhp
msgctxt ""
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
msgstr ""
-#. A9gBj
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
+msgstr ""
+
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
msgstr ""
-#. DBbfU
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
+msgstr ""
+
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 0733040380a..37393923e44 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20545,6 +20545,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>ጽሁፍ</emph> የሚያመሳክረው ጽሁፍ ምንም-ሊታተሙ የማይችሉ ባህሪዎችን ለ ማስወገድ ነው"
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20815,14 +20824,14 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>ዴሲማል</emph> በ ምርጫ ቁጥር ነው የ ዴሲማል ቦታ መወሰኛ"
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "<item type=\"input\">=ዶላር(255)</item> ይመልሳል $255.00."
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
#. 2beTG
#: 04060110.xhp
@@ -27151,806 +27160,14 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=ኦክት2ሄክስ(144;4)</item> ይመልሳል 0064."
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ተግባር</bookmark_value>"
-
-#. NNzM9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"help.text"
-msgid "CONVERT"
-msgstr "መቀየሪያ"
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">ዋጋ መቀየሪያ ከ አንዱ መለኪያ ክፍል ወደ ሌላ ተመሳሳይ ዋጋ በ ሌላ መለኪያ ክፍል</ahelp> የ መለኪያ ክፍል በ ቀጥታ ያስገቡ እንደ ጽሁፍ በ ጥቅስ ምልክቶች ውስጥ ወይንም ማመሳከሪያዎች ውስጥ: እርስዎ የ መለኪያ ክፍል በ ክፍሎች ውስጥ ካስገቡ: ተመሳሳይ መሆን አለባቸው በ ትክክል እንደሚቀጥለው ዝርዝር: ይህም ማለት ፊደል መመጠኛ: ለምሳሌ: ለ ማስገባት ዝቅተኛ ጉዳይl (ለ ሊትር) በ ክፍል ውስጥ: ያስገቡ አፖስትሮፊ ' ወዲያውኑ አስከትለው l."
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr "ባህሪ"
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr "መለኪያ"
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr "ክብደት"
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr "<emph>ግራም</emph>, sg, ፓውንድ ሜትሪክ <emph>u</emph>, ozm, ድንጋይ, ቶን, ግሬይን, ፔኒዌት, hweight, shweight, brton"
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr "እርዝመት"
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr "<emph>ሚ</emph>, ማይል, ኖቲካል ማይል, ኢንች, ፊት, ያርድ, አንግስትሮም, ፒካ, ኤል, <emph>ፓርሴክ</emph>, <emph>የ ብርሃን አመት</emph>, የ ቀያሾች_ማይል"
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr "ሰአት"
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr "አመት, ቀን, ሰአት, ደቂቃ, <emph>ሰከንድ</emph>, <emph>ሰ</emph>"
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr "ግፊት"
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr "<emph>ፓስካል</emph>, <emph>አትሞስፌየር</emph>, <emph>በ</emph>, <emph>ሚሚ ሜርኩሪ</emph>, ቶር: ግፊት በ ስዄር ኢንች"
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr "ሐይል"
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr "<emph>ኒውተን</emph>, <emph>ዳይኔ</emph>, <emph>ዳይኔ</emph> ፓውንድ <emph>ፑንዳል</emph>"
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr "ሐይል"
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr "<emph>ጁዉል</emph>, <emph>ሀይል</emph>, <emph>ካሎሪ</emph>, <emph>ካሎሪ</emph>, <emph>ኤሌክትሮ ቮልት</emph>, <emph>ኤሌክትሮ ቮልት</emph>የ ፈረስ ጉበት<emph>ዋት</emph>, <emph>ዋት</emph> ፉት ፑንዳል, ቡት, ቡት"
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "ሀይል"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr "<emph>ዋት</emph>, <emph>ዋት</emph> የ ፈረስ ጉልበት, የ ፈረስ ጉልበት"
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr "የ ሜዳው ጥንካሬ"
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr "<emph>T</emph>, <emph>ga</emph>"
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr "የ አየር ንብረት"
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr "ሴ, ፋ, <emph>ኬ</emph>, <emph>ኬል</emph>, Reau, Rank"
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr "መጠን"
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr "ቦታ"
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr "<emph>ሚ2</emph> ማይል2, Nmi2, ኢንች2, ፊት2, ያርድ2, <emph>ang2</emph> ስንዝር2, Morgen, <emph>ar</emph>, acre, ha"
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr "ፍጥነት"
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr "<emph>ሚ/ሰ</emph>, <emph>ሚ/ሰከንድ</emph> ማ/ሰ, ማይል በ ሰአት, kn, admkn"
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr "መረጃ"
-
-#. UTUhA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr "<emph>ቢት</emph>, <emph>ባይት</emph>"
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr "የ መለኪያ ክፍል በ <emph> ማድመቂያ </emph> ይቀጥላል በ መነሻ ባህሪዎች ከሚቀጥለው ዝርዝር ውስጥ:"
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr "መነሻ"
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr "ማባዣ"
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr "Y (ዮታ)"
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr "10^24"
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr "Z (ዜታ)"
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr "10^21"
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr "E (ኤክሳ)"
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr "10^18"
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr "P (ፔታ)"
-
-#. HnJBh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr "10^15"
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr "T (ቴራ)"
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr "10^12"
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr "G (ጊጋ)"
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr "10^9"
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr "M (ሜጋ)"
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr "10^6"
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr "k (ኪሎ)"
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr "10^3"
-
-#. G2FDE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr "h (ሄክቶ)"
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr "10^2"
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr "e (ዴካ)"
-
-#. iiAPq
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"par_id3149940\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "10^1"
-msgstr "10^1"
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr "d (ዴቺ)"
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr "10^-1"
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr "c (ሴንቲ)"
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr "10^-2"
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr "m (ሚሊ)"
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr "10^-3"
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr "u (ማይክሮ)"
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr "10^-6"
-
-#. GD6Gw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr "n (ናኖ)"
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr "10^-9"
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr "p (ፒኮ)"
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr "10^-12"
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr "f (ፌምቶ)"
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr "10^-15"
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr "a (አቶ)"
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr "10^-18"
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr "z (ዜፕቶ)"
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr "10^-21"
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr "y (ዮክቶ)"
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr "10^-24"
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "መረጃ ክፍል \"ቢት\" እና \"ባይት\" መነሻ መሆን ይችላል በ አንዱ በሚቀጥለው IEC 60027-2 / IEEE 1541 መነሻዎች:"
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ኪሎ ባይት 1024"
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "ሜጋ ባይት 1048576"
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "ጊጋ ባይት 1073741824"
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "ቴቢ ባይት 1099511627776"
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "ፔቢ ባይት 1125899906842620"
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "ኤክስቢ ባይት 1152921504606850000"
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "ዜታ ባይት 1180591620717410000000"
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "ዪ ዮቢ 1208925819614630000000000"
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr "መቀየሪያ(ቁጥር; \"ከ ክፍል\": \"ወደ ክፍል\")"
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>ቁጥር</emph> የሚቀየረው ቁጥር ነው"
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>ከ ክፍል</emph> መቀየሪያው የሚካሄድበት ክፍል ነው"
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>ወደ ክፍል</emph> መቀየሪያው የሚካሄድበት ክፍል ነው: ሁለቱም ክፍሎች ተመሳሳይ መሆን አለባቸው"
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr "<item type=\"input\">=መቀየሪያ(10;\"HP\";\"PS\") </item>ይመልሳል: የ ተጠጋጋ ወደ ሁለት ዴሲማል ቦታዎች: 10.14. 10 HP እኩል ይሆናል 10.14 PS."
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
-msgstr "<item type=\"input\">=መቀየሪያ(10;\"ኪሜ\";\"ማይል\") </item>ይመልሳል: የ ተጠጋጋ በ ሁለት ዴሲማል ቦታዎች: 6.21. 10 ኪሎ ሜትር እኩል ነው ከ 6.21 ማይሎች ጋር: የ k የ ተፈቀደ መነሻ ባህሪ ነው ለ 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
+msgstr ""
#. G7UNe
#: 04060116.xhp
@@ -49543,14 +48760,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "በራሱ ማጣሪያ"
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">በራሱ ማጣሪያ</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
#. cTu3x
#: 12040100.xhp
@@ -49561,6 +48778,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">ራሱ በራሱ ማጣሪያ የ ተመረጠውን ክፍል መጠን: እና መፍጠሪያ አንድ-ረድፍ ዝርዝር ሳጥን እርስዎ የሚመርጡበት እቃዎች እርስዎ ማሳየት የሚፈልጉትን </ahelp>"
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55591,6 +55042,33 @@ msgctxt ""
msgid "Examples"
msgstr "ምሳሌዎች"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57526,6 +57004,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr ""
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58624,14 +59848,23 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr "<item type=\"input\">=የ ወር መጨረሻ(ቀን(2001;9;14);6)</item> ይመልሳል ተከታታይ ቁጥር 37346. እንደ ቀን አቀራረብ ይህ ነው 2002-03-31."
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
-msgstr "<item type=\"input\">=የ ወር መጨረሻ(\"2001-09-14\";6)</item> እንዲሁም ይሰራል: ቀን እንደ ሀረግ ከ ተሰጠ: የ ISO አቀራረብ መሆን አለበት"
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
+msgstr ""
#. BNTm6
#: func_error_type.xhp
@@ -63862,13 +65095,13 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr ""
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
msgstr ""
#. JoYks
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 4c6e2ba72cb..60961306e1d 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-04-16 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/am/>\n"
@@ -3022,13 +3022,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "መጠቆሚያውን በ ባዶ ክፍል ላይ ያድርጉ: ለምሳሌ: J14, እና ይምረጡ <emph> ማስገቢያ - ተግባር </emph>"
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 1fbcf5771e9..ac3aebbc447 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20320,6 +20320,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr ""
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/06.po b/source/am/helpcontent2/source/text/shared/06.po
index ff143f297ab..5577c19e677 100644
--- a/source/am/helpcontent2/source/text/shared/06.po
+++ b/source/am/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2018-10-22 03:15+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -304,13 +304,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr ""
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
+msgid "Impress Screenshots"
msgstr ""
#. c6FJr
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 d6df2a35670..7fe870d64b8 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4556,14 +4556,14 @@ msgctxt ""
msgid "~Number"
msgstr "~ቁጥር"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4576,14 +4576,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 580c06db367..3cb7e0a5929 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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/scmessages/am/>\n"
@@ -16587,112 +16587,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "መደበኛ ማጣሪያ..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "ከፍተኛ 10"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "ባዶ"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "ባዶ አይደለም"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "ያልተሰየመ"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "አምድ %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "ረድፍ %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "ወረቀት"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "ስም"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "ወረቀት መጨመሪያ"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "ወረቀቱን እንደገና መሰየሚያ"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Tab ቀለም"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "ነባር"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "የእቃው ስም"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr "ይህ ምስል ዟሯል: እርስዎ ወደ መደበኛ አቅጣጫው ማዞር ይፈልጋሉ?"
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16700,135 +16706,135 @@ msgstr[0] "አንድ ውጤት ተገኝቷል"
msgstr[1] "%1 ውጤቶች ተገኝተዋል"
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr "(ብቻ %1 ተዘርዝሯል)"
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr "የ ሰንጠረዥ አካል መጠበቂያ"
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr "የ ሰንጠረዥ አካል አትጠብቅ"
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr "ወረቀት አትጠብቅ"
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "መዝገቦችን መጠበቂያ"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "መዝገቦችን አትጠብቅ"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "የመግቢያ ቃል :"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "የመግቢያ ቃል (በምርጫ):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "የተሳሳተ የመግቢያ ቃል"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~መጨረሻ"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "ያልታወቀ"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~አነስተኛ"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~ከፍተኛ"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~ዋጋ"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr "~መቀመሪያ"
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~ምንጭ"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~ማስገቢያዎች"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "ስርአት"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "መደበኛ: ጽሁፍ: ቀን (ቀወአ ):ቀን (ወቀአ ):ቀን (አወቀ ):US English;መደበቂያ"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Tab"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "ክፍተት"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -16840,1593 +16846,1593 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "ምስል ማጣሪያ"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "ወረቀቶች ይምረጡ"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "~የተመረጡት ወረቀቶች"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "ማስመሪያ"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "ይህ ማስመሪያ የሚያስተዳድረው እቃዎችን በ ተወሰነ ቦታ ብቻ ነው"
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "ቅድመ እይታ"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "ይህ ወረቀት የሚያሳየው ዳታው በሰነዱ ውስጥ እንዴት እንደሚቀመጥ ነው"
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "ሰነድ መመልከቻ"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "ወረቀት %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "ክፍል %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "በ ግራ በኩል"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "የገጽ ቅድመ እይታ"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "መሀከል ላይ"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "በ ቀኝ በኩል"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "የ ገጽ ራስጌ %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "የ ገጽ ግርጌ %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "መስመር ማስገቢያ"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "እዚህ ነው ጽሁፍ ማስገባት ወይም ማረም የሚችሉት ቁጥሮች እና መቀመሪያ"
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "መገናኛ በድጋሚ ማጫወቻ"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "የአይጥ ቁልፍ ተጭነዋል"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "የ መቀመሪያ እቃ መደርደሪያ"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME ሰንጠረዥ"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ ብቻ)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(በቅድመ እይታ ዘዴ)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr "ገጾች:"
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "የ ባዶ ገጽ ውጤቶችን ~ማስቆሚያ"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr "ሁሉንም ወረቀቶች ማተሚያ"
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr "የተመረጡትን ወረቀቶች ብቻ ማተሚያ"
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr "የተመረጡትን ክፍሎች ማተሚያ"
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr "ከ የትኛው:"
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr "ሁሉንም ~ገጾች"
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr "ገጾ~ች:"
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr "~ሙሉ ገጾች"
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr "~ጎዶሎ ገጾች"
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "ይህን የ DDE ምንጭ ማሻሻል አልተቻለም ምናልባት የሰነዱ ምንጩ አልተከፈተ ይሆናል ፡ እባክዎን የሰነዱን ምንጭ ያስነሱ እና እንደገና ይሞክሩ"
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "ይህን የሚቀጥለውን ፋይል መጫን አልተቻለም ፡ ከዚህ ፋይል ጋር የተገናኘው ዳታ ፋይል አልተሻሻለም"
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "የ ውጪ አገናኞች ማሻሻያ"
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "መጠኑ የአምድ ምል~ክቶችን ይዟል"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "መጠኑ ~የረድፍ ምልክቶችን ይዟል"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "ዋጋ የሌለው ዋጋ"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "ምንም መቀመሪያ አልተገለጸም"
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "ምንም ረድፍ ወይንም አምድ አልተወሰነም"
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "ያልተገለጸ ስም ወይንም መጠን"
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "ያልተገለጸ ስም ወይንም የተሳሳተ ክፍል ማመሳከሪያ"
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "መቀመሪያ አምድ አይሰራም"
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "መቀመሪያ ረድፍ አይሰራም"
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "በራሱ አቀራረብ መጨመሪያ"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "በራሱ አቀራረብ እንደገና መሰየሚያ"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "ስም"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "በራሱ አቀራረብ ማጥፊያ"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "በ እርግጥ ይህን ማጥፋት ይፈልጋሉ # በራሱ አቀራረብ?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~መዝጊያ"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "ጥር"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "የካ"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "መጋ"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "ሰሜን"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "ደቡብ"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "ጠቅላላ"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "ገጽ ማስቆሚያ"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "ክፍል ማስቆሚያ"
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr "ሁኔታው "
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "ይዞታዎች"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "ወረቀቶች"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "የስሞች መጠን"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "የ ዳታቤዝ መጠኖች"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "ምስሎች"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "የ OLE እቃዎች"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "አስተያየቶች"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "የ ተገናኙ ቦታዎች"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "እቃዎች መሳያ"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "ንቁ"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "የ ቦዘነ"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "የ ተደበቀ"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "ንቁ መስኮት"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "የ ትእይንት ስም"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "አስተያየት"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "እየጨመረ በሚሄድ መለያ"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "እየቀነሰ በሚሄድ መለያ"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "መለያ ማስተካከያ"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "የሳጥኑ ስም"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "መስመር ማስገቢያ"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "የተግባር አዋቂ"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "እቀበላለሁ"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "መሰረዣ"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "መቀመሪያ"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "የ መቀመሪያ መደርደሪያ ማስፊያ"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "የ መቀመሪያ መደርደሪያ ማሳነሻ"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "ደራሲው"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "ቀን"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "ያልታወቀ ተጠቃሚ"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "አምድ ተጨምሯል"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "ረድፍ ተጨምሯል "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "ወረቀት ተጨምሯል "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "አምዱ ጠፍቷል"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "ረድፉ ጠፍቷል"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "ወረቀቱ ጠፍቷል"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "የተንቀሳቀሰው መጠን"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "ይዞታቸው የተቀየረ"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "ይዞታቸው የተቀየረ"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "የተቀየረ ወደ "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "ዋነኛው"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "ለውጡ ተከልክሏል"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "እቀበላለሁ"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "አልቀበልም"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "ማስገቢያ የለም"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<ባዶ>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "ያልተጠበቀ"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "በመግቢያ ቃል-የተጠበቀ አይደለም"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Hash incompatible"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Hash compatible"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "እንደገና-መጻፊያ"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "በ መካከለኛ በ _መጓዝ ላይ"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "ኤክስፖኔንሺያል ማለስለሻ"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "የ ልዩነት መመርመሪያ"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr "መመርመሪያ የ ልዩነት (ANOVA)..."
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "የ ልዩነት መመርመሪያ - ነጠላ ጉዳይ"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "የ ልዩነት መመርመሪያ - ሁለት ጉዳይ"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "ቡድኖች"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "በ ቡድኖች መካከል"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "በ ቡድኖች ውስጥ"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "የ ልዩነቶች ምንጭ"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr "F"
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-value"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F critical"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "ጠቅላላ"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "ኮኦሪሌሽን"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "ኮኦሪሌሽን"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "ኮቫሪያንስ"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "ኮቫሪያንስስ"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "መግለጫ ስታትስቲክስ"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "አማካይ"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "መደበኛ ስህተት"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "ዘዴ"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "መሀከለኛ"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "ልዩነት"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "መደበኛ ልዩነት"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "ኩርቶሲስ"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "የሚያጋድልበት"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "መጠን"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "አነስተኛ"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "ከፍተኛ"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "ድምር"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "መቁጠሪያ"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr "የ መጀመሪያ ሩብ"
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr "የ ሶስተኛ ሩብ"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "በነሲብ ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "ተመሳሳይ"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "ተመሳሳይ ኢንቲጀር"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "መደበኛ"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "ኮቺ"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "ቤርኖሊ"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "ባይኖሚያል"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "አሉታዊ ባይኖሚያል"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "ቺ ስኴርድ"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "ጂኦሜትሪክ"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "አነስተኛ"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "ከፍተኛ"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "አማካይ"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "መደበኛ ልዩነት"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "መሀከለኛ"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "ሲግማ"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p ዋጋ"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "የ ሙከራዎች ቁጥር"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "የ nu ዋጋ"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "ናሙና"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-መሞከሪያ"
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-መሞከሪያ"
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr "የ ተጣመረ t-መሞከሪያ"
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr "የ ተጣመረ t-መሞከሪያ"
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "z-መሞከሪያ"
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "z-መሞከሪያ"
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "የ ነፃነት መሞከሪያ (ቺ-ስኴር)"
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "ዝቅ ማድረጊያ"
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "ዝቅ ማድረጊያ"
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr "ፉሪዬር መመርመሪያ"
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr "ፉሪዬር መመርመሪያ"
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "አምድ %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "ረድፍ %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "አልፋ"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "ተለዋዋጭ 1"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "ተለዋዋጭ 2"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "የ መላምት አማካይ ልዩነት"
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "የታየው"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "የታየው አማካይ ልዩነት"
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr "ተስተካክሏል R^2"
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr "የ X ተለዋዋጭ መቁጠሪያ"
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-ዋጋ"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "አደገኛ ዋጋ"
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "ስታስቲክስ መሞከሪያ"
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr "ዝቅተኛ"
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr "የገባው መጠን ዋጋ የለውም"
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr "የ ውጤቱ መጠን ዋጋ ያለው አይደለም:"
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "ቀጥተኛ"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "ሎጋሪዝም"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "ሀይል"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr "የ ነፃ ተለዋዋጭ(ጮች) መጠን ዋጋ የለውም"
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr "የ ጥገኛ ተለዋዋጭ(ጮች) መጠን ዋጋ የለውም"
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr "የ መተመማኛ ደረጃ ክፍተት በ (0, 1) መካከል መሆን አለበት:"
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr "የ Y ተለዋዋጭ ከ 1 አምድ በላይ ሊኖረው አይችልም:"
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr "የ Y ተለዋዋጭ ከ 1 ረድፍ በላይ ሊኖረው አይችልም:"
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "ዝቅ ማድረጊያ ዘዴ"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr "የ መተማመኛ ደረጃ"
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr "ኮኦፊሺየንትስ"
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr "t-ስታትስቲክስ"
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "ኢንተርሴፕት"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr "የ ተገመተው Y"
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) right-tail"
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F Critical right-tail"
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) left-tail"
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F Critical left-tail"
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P two-tail"
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr "F Critical two-tail"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "ፒርሰን ኮኦሪሌሽን"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "የ ተለዋዋጭ ልዩነቶች"
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t ስታስቲክስ"
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) አንድ-ጭራ"
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t ወሳኝ አንድ-ጭራ"
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) ሁለት-ጭራ"
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr "t ወሳኝ ሁለት-ጭራ"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr "z"
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "የ ታወቀ ልዩነት"
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) አንድ-ጭራ"
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "z ወሳኝ አንድ-ጭራ"
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (Z<=z) ሁለት-ጭራ"
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr "z ወሳኝ ሁለት-ጭራ"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr "ፉሪዬር መቀየሪያ"
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr "ግልባጭ የ ፉሪዬር መቀየሪያ"
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr "በ ግምት"
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr "ደረጃ"
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr "ከ ቡድን ውስጥ ከ ሁለት አምዶች በላይ ተመርጧል በ አምድ ዘዴ:"
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr "ከ ቡድን ውስጥ ከ ሁለት ረድፍ በላይ ተመርጧል በ አምድ ዘዴ:"
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr "በ ማስገቢያ መጠን ውስጥ ዳታ የለም"
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr "ውጤቱ በጣም ትልቅ ነው በ ወረቀት ላይ ለ መጻፍ:"
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr "የ ዳታ መጠን ማስገቢያ"
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr "ወደ ክፍል"
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr "ወደ ክፍል (ከ ክፍል ጋር እንደገና መመጠኛ)"
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr "ወደ ገጽ"
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "ምንም የተጠቃሚ ዳታ የለም"
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusive access)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr "በ ተመረጠው ሰነድ ውስጥ ዝግጁ የ ተሰየመ መጠን አልተገኘም:"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index eb22892bbbc..c6bcb683790 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -3600,9 +3600,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "በሚታተመው ገጽ ልክ"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3612,9 +3612,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "በ በርካታ ወረቀቶች ላይ ማሰራጫ"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index d06b6534bc5..0599c3bf3db 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-04-12 07:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -2998,148 +2998,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "ስለ ሰነዱ መግለጫ መረጃ ይዟል"
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3151,55 +3151,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "ፊደሎችን በሰነድ ውስጥ _ማጣበቂያ"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr "ምልክት ያድርጉ በዚህ ሳጥን ውስጥ ፊደሎች ለማጣበቅ ከ ሰነድ ጋር: ወደ ሰነድ ፋይል ውስጥ: በ ተለያዩ ኮምፒዩተሮች መካከል ለማንቀሳቀስ: "
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr "በ ሰነድ ውስጥ የ ተጣበቁ ፊደሎች _ብቻ ይጠቀማል"
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr "የ _ላቲን ፊደል"
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr "የ _እስያን ፊደል"
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr "_ውስብስብ ፊደል"
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr "የሚጣበቀው የ ፊደል ጽሁፍ"
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3670,19 +3670,19 @@ msgid "Remove Property"
msgstr "ባህሪ ማስወገጃ"
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr "..."
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr "አዎ"
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr "አይ"
@@ -4540,61 +4540,61 @@ msgid "Wrap _around"
msgstr "_ዙሪያውን መጠቅለያ"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "ፋይል ለንባብ-ብቻ _መክፈቻ"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr "ይምረጡ ይህ ሰነድ ሲከፈት በ ንባብ-ዘዴ ብቻ ለማስቻል"
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "_ለውጦችን መመዝገቢያ"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr "ይምረጡ ለውጦችን መመዝገብ እንዲችል ለማስቻል: ይህ ተመሳሳይ ነው ከ ማረሚያ - ለውጦችን መከታተያ - መመዝገቢያ ጋር "
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "መጠበቂያ..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr "ለውጥ ከ መመዝገብ መቀየር ይጠብቀዋል: ለውጥ መመዝገብ ከ ተጠበቀ ለ አሁኑ ሰነድ: ቁልፉ ይሰየማል አትጠብቅ ይጫኑ አትጠብቅ እና ይጻፉ ትክክለኛውን የ መግቢያ ቃል ጥበቃውን ለማሰናከል: "
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "_የማይጠበቅ..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr "ለውጥ ከ መመዝገብ መቀየር ይጠብቀዋል: ለውጥ መመዝገብ ከ ተጠበቀ ለ አሁኑ ሰነድ: ቁልፉ ይሰየማል አትጠብቅ ይጫኑ አትጠብቅ እና ይጻፉ ትክክለኛውን የ መግቢያ ቃል ጥበቃውን ለማሰናከል: "
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "የ ፋይል መጋሪያ ምርጫዎች"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr "ለ አሁኑ ሰነድ የ መግቢያ ቃል ምርጫ ማሰናጃ"
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index c77fb5f76d5..0358ce70a93 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/am/>\n"
@@ -3269,127 +3269,140 @@ msgid "These changes will apply for all new formulas."
msgstr "እነዚህ ለውጦች ለሁሉም አዲስ መቀመሪያዎች ይፈጸማሉ"
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "የ _አርእስት ረድፍ"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr "በሚታተመው ወረቀት ውስጥ የ ሰነዱ ስም ይካተት እንደሆን መወሰኛ "
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "የ _መቀመሪያ ጽሁፍ"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr "በሚታተመው ወረቀት ላይ ይዞታዎቹ ይካተቱ እንደሆን መወሰኛ በ ትእዛዝ መስኮት ውስጥ ከ ታች በኩል "
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "ድ_ንበር"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr "ቀጭን የ መስመር ድንበር በ መቀመሪያ ቦታ መክበቢያ በሚታተመው ወረቀት ላይ መፈጸሚያ "
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "የ ሕትመት ምርጫዎች"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "በ _ዋናው መጠን"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr "የ መቀመሪያ የ አሁኑን ፊደል መጠን ሳያስተካክል ማተሚያ "
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "በ_ገጹ ልክ"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr "መቀመሪያ ማስተካከያ በ ገጽ አቀራረብ በሚጠቀሙት ማተሚያ ልክ "
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "_መመጠኛ:"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr "መቀነሻ ወይንም መጨመሪያ በሚታተመው መቀመሪያ የተወሰነ መጠን መፈጸሚያ "
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "የ ህትመት አቀራረብ"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "መ_ተው ~~ እና ' በ መስመሩ መጨረሻ ላይ"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr "እነዚህ ሁሉገብ ክፍተቶች ይወገዳሉ በ መስመር መጨረሻ ላይ ከሆኑ "
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "የተጠቀሙበትን ምልክቶች ብቻ ማጣበቂያ (ትንሹን የ ፋይል መጠን)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr "እያንዳንዳቸውን የ መቀመሪያ ምልክት ያላቸውን ብቻ በ መቀመሪያ ውስጥ የተጠቀሙበትን ማስቀመጫ "
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "በራሱ ቅንፎች መዝጊያ: ቅንፎች እና ቅንፎች"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "የተለያዩ ምርጫዎች"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr "ለ ሁሉም ሰነዶች ዋጋ ያለው የ መቀመሪያ መግለጫ ማሰናጃ "
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index ee5acb2647c..6322f41aaa2 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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/svxmessages/am/>\n"
@@ -14003,6 +14003,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr "እንደገና ማስጀመሪያ %PRODUCTNAME በ ጥንቃቄ ዘዴ ውስጥ ለ መግባት"
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index efb9dd80917..661db37bbd7 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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-14 16:53+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-31 16:19+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"
@@ -8242,1211 +8242,1217 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "ወደ ገጽ"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X Coordinate:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y Coordinate:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "ከ ላይ"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "መሀከል በ ቁመት"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ከ ታች"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ከ መስመሩ በላይ"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "መሀከል ማስመሪያ"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ከ መስመሩ በታች"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "በ ቀኝ በኩል"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "በ አግድም መሀከል ላይ"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "በ ግራ በኩል"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ውስጥ"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "ውጪ"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "በ ሙሉ ስፋት"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "አምዶች"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "መለያያ ስፋት:"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "ከፍተኛ የ ግርጌ ማስታወሻ ቦታ:"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "በንባብ-ብቻ ሰነድ ውስጥ ሊታረም የሚችል"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "መክፈያ"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "ተገናኝቷል ወደ "
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "እና "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "መስመሮች መቁጠሪያ"
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "መስመሮች አትቁጠር"
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "እንደገና ማስጀመሪያ ቆጠራውን በ: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "ብርሁነት: "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "ቀይ: "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "አረንጓዴ: "
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "ሰማያዊ: "
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "ማነጻጸሪያ: "
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "ጋማ: "
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "ግልጽነት: "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "መገልበጫ"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "አትገልብጥ"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "በ ንድፎች ዘዴ: "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "መደበኛ"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "ግራጫማ"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ጥቁር & ነጭ"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "የ ውሀ ምልክት"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "ማዞሪያ"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "መጋጠሚያ የለም"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "መጋጠሚያ (ለ መስመሮች ብቻ)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "መጋጠሚያ (ለ መስመሮች እና ባህሪዎች)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "የ ጽሁፉን ፍሰት መከተያ"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "የ ጽሁፉን ፍሰት አትከተል"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "ድንበሮች ማዋሀጃ"
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "ድንበሮችን አታዋህድ"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "ሰንጠረዥ"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "ገጽ"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "መሳያ"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "ክፍል"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "ምልክት ማድረጊያ"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "ንድፎች"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "ራስጌዎች"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "ምርጫዎች"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "አስታዋሽ"
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "አስተያየት"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "መፈለጊያ መድገሚያ"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "የ ማውጫ ማስገቢያ"
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "የ መቀመሪያ ሰንጠረዥ"
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "የ ተሳሳተ የ መቀመሪያ ሰንጠረዥ"
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "የሚቀጥለው ሰንጠረዥ"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "የሚቀጥለው ገጽ"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "የሚቀጥለው መሳያ"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "የሚቀጥለው መቆጣጠሪያ"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "የሚቀጥለው ክፍል"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "የሚቀጥለው ምልክት ማድረጊያ"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "የሚቀጥለው ንድፍ"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "የሚቀጥለው የ OLE እቃ"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "የሚቀጥለው ራስጌ"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "የሚቀጥለው ምርጫ"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "የ ሚቀጥለው የ ግርጌ ማስታወሻ"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "የሚቀጥለው አስታዋሽ"
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "የሚቀጥለው አስተያየት"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "ፍለጋውን ወደፊት መቀጠያ"
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "የሚቀጥለው ማውጫ ማስገቢያ"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "ቀደም ያለው ሰንጠረዥ"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "ቀደም ያለው ገጽ"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "ቀደም ያለው መሳያ"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "ቀደም ያለው መቆጣጠሪያ"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "ቀደም ያለው ክፍል"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "ቀደም ያለው ምልክት ማድረጊያ"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "ቀደም ያለው ንድፍ"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "ቀደም ያለው የ OLE እቃ"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "ቀደም ያለው ራስጌ"
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "ቀደም ያለው ምርጫ"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "ቀደም ያለው የ ግርጌ ማስታወሻ"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "ቀደም ያለው አስታዋሽ"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "ቀደም ያለው አስተያየት"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "የ ኋሊዮሽ ፍለጋውን መቀጠያ"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "ቀደም ያለው የማውጫ ማስገቢያ"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "ቀደም ያለው የ ሰንጠረዥ መቀመሪያ"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "የሚቀጥለው የ ሰንጠረዥ መቀመሪያ"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "ቀደም ያለው የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "የሚቀጥለው የተሳሳተ የ ሰንጠረዥ መቀመሪያ"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "ተጨምሯል"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "ጠፍቷል"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "አቀራረብ"
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "ሰንጠረዡ ተቀይሯል"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "የ ተፈጸሙ የ አንቀጽ ዘዴዎች"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "የ አንቀጽ አቀራረብ ተቀይሯል"
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "ረድፍ ገብቷል"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "ረድፍ ጠፍቷል"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "ክፍል ገብቷል"
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "ክፍል ጠፍቷል"
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "የ መጨረሻ ማስታወሻ: "
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "የ ግርጌ ማስታወሻ: "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ይጫኑ Smart Tag menu ለመክፈት"
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "ራስጌ (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "የ መጀመሪያ ገጽ ራስጌ (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "የ ግራ ገጽ ራስጌ (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "የ ቀኝ ገጽ ራስጌ (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "ግርጌ (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "የ መጀመሪያ ገጽ ግርጌ (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "የ ግራ ገጽ ግርጌ (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "የ ቀኝ ገጽ ግርጌ (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "ራስጌ ማጥፊያ..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "የ ራስጌ አቀራረብ..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "ግርጌ ማጥፊያ..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "የ ግርጌ አቀራረብ..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "ሰንጠረዥ-አታንሳፍፍ"
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "የ ምስል ፋይል መክፈት አልተቻለም"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "የ ምስል ፋይል ማንበብ አልተቻለም"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "ያልታወቀ የምስል አቀራረብ"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "ይህ የምስል ፋይል አይነት የተደገፈ አይደለም"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "የምስል ማጣሪያ አልተገኘም"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ስእሉን ለማስገባት በቂ memory የለም"
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "አስተያየት : "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "ማስገቢያ"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "ማጥፊያ"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "በራሱ አራሚ"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "አቀራረብ"
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "ሰንጠረዡ ተቀይሯል"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "የ አንቀጽ ዘዴዎች መፈጸሚያ"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "ገጽ "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "ገጽ %1 ከ %2"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "ገጽ %1 ከ %2 (ገጽ %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "አንቀጽ"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ምስል"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "የሰንጠረዥ ረድፍ"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "የሰንጠረዥ ክፍል"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "ገጽ"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML ሰነድ"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "አርእስት"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "መለያያ"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ፋይሉን \"%1\" በ \"%2\" መንገድ ውስጥ ማግኘት አልተቻለም"
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ተጠቃሚው-የተወሰነ ማውጫ"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<ምንም>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<ምንም>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "የምእራፍ ቁጥር"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ማስገቢያ"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ማስረጊያ ማቆሚያ"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "የ ገጽ ቁጥር"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "የምእራፍ መረጃ"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Hyperlink መጀመሪያ"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Hyperlink መጨረሻ"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "የ ቢብሊዮግራፊ ማስገቢያ...: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "የ ባህሪ ዘዴ: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "የ ጽሁፍ አካል"
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "ይጫኑ Ctrl+Alt+A ትኩረቱን ወደ ተጨማሪ ተግባሮች ለማንቀሳቀስ"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት የ መቆጣጠሪያ አካሎችን ለመምረጥ"
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "ይጫኑ Ctrl+Alt+B ወደ አሁኑ የ መቆጣጠሪያ አካል ትኩረቱን ለ መመለስ"
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
@@ -9455,259 +9461,259 @@ msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "መሰረታዊ መስመር ከ ~ላይ"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~መሰረታዊ መስመር ከ ታች"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "መሰረታዊ መስመር ~መሀከል"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "እቃ ማስገቢያ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "እቃ ማረሚያ"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (ቴምፕሌት: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "ድንበሮች"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "መደብ"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(የ አንቀጽ ዘዴ: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "የ ገጽ ቁጥሮች ወደ አሁኑ ገጽ መስጠት አልተቻለም: ሙሉ ቁጥሮች በ ግራ ገጾች ላይ ይሆናሉ: ጎዶሎ ቁጥሮች በ ቀኝ ገጾች ላይ ይሆናሉ"
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION ዋናው ሰነድ"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "የፋይል ግንኙነት የአሁኑን ክፍል ይዞታዎች ያጠፋቸዋል ፡ ለማንኛውም ልቀጥል?"
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "ያስገቡት የ መግቢያ ቃል ዋጋ የለውም"
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "የመግቢያ ቃል አልተሰናዳም"
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "ጭረት ተጠናቋል"
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "ምንም (ፊደሎቹን አታርም)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "ነባሩን ቋንቋ እንደነበረ መመለሻ"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "ተጨማሪ..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~መተው"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "መግለጫዎች..."
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "የተለዩ አካባቢዎች ተሰናክለው እንደሆን መመርመሪያ: ለማንኛውም ልመርምር?"
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "ሰነዱን ማዋሀድ አልተቻለም"
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "%PRODUCTNAME መሰረታዊ አካል ጎድሏል: የ ደብዳቤ ማዋሀጃ መጠቀም ያስፈልጋል:"
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "ምንጩን መጫን አልተቻለም"
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "ምንም የ ፋክስ ማተሚያ አልተዘጋጀም በ መሳሪያዎች/ምርጫዎች/%1/ማተሚያ ስር"
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "የ ጽሁፍ ሰነድ"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "ምንጩ አልተገለጸም"
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ረቂቅ "
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "የ ግርጌ/መጨረሻ ማስታወሻ ማረሚያ"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "መፈለጊያው ቁልፍ በዚህ XX ያህል ጊዜ ተቀይሯል"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "ረድፍ "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "አምድ "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "ምንጩን ~መላኪያ..."
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~መላኪያ የ ኮፒ ምንጭ..."
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~ይቀጥሉ"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "በመላክ ላይ ወደ: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "ተሳክቶ ተልኳል"
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "መላክ አልተቻለም"
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "ድርጅት;CR;የ መጀመሪያ ስም; ;የ አባት ስም;CR;አድራሻ ;CR;ከተማ ; ;ከፍለ ሀገር; ;ፖ.ሳ.ቁጥር ;CR;አገር;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "ጽሁፍ መቀመሪያ"
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "ምንም እቃ አልተገለጸም"
@@ -9716,7 +9722,7 @@ msgstr "ምንም እቃ አልተገለጸም"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አንቀጽ መመደቢያ ደረጃ ከፍተኛ ነው"
@@ -9725,137 +9731,125 @@ msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አን
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr " ዋጋ ያለው "
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "ዋጋ የሌለው"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "ዋጋ የሌለው ፊርማ"
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "የ ተፈረመው-በ"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "የ አንቀጽ ፊርማ"
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "የ ንግድ ካርዶች"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "ኢሜይል ማሰናጃ"
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "ማስገቢያ"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "ማጥፊያ"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "መለያዎች"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "መፈለጊያ ደንብ"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "አማራጭ ማስገቢያ"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ኛ ቁልፍ"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ኛ ቁልፍ"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "አስተያየት"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ጉዳዩን ማመሳሰያ"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "ቃላት ብቻ"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "አዎ"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "አይ"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "ማስተካከያ"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11135,7 +11129,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "የ ጽሁፎች ዝርዝር ማመሳከሪያ ማስገቢያ"
@@ -17468,110 +17462,110 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "በ ሰነዱ ውስጥ ቀደም ወዳለው የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ ማስቆሚያ ማንቀሳቀሻ "
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "በ ሰነዱ ውስጥ ወደሚቀጥለው የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ ማስቆሚያ ማንቀሳቀሻ"
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr "ራሱ በራሱ ተከታታይ ቁጥር መስጫ ለሚያስገቡት የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ"
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "ባህሪ"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "ይምረጡ…"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "ማሰገቢያ የተለየ ባህሪ እንደ ግርጌ ማስታወሻ ወይንም መጨረሻ ማስታወሻ መጨረሻ"
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "ቁጥር መስጫ"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "በ አሁኑ ሰነዱ ውስጥ የ ግርጌ ማስታወሻ ማስገቢያ: ማስቆሚያ የሚገባው መጠቆሚያው ባለበት ቦታ ነው: እና ከ ገጹ መጨረሻ ላይ የ ግርጌ ማስታወሻ መጨመሪያ "
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "የ መጨረሻ ማስታወሻ"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "በ አሁኑ ሰነዱ ውስጥ የ መጨረሻ ማስታወሻ ማስገቢያ: ማስቆሚያ የሚገባው መጠቆሚያው ባለበት ቦታ ነው: እና ከ ገጹ መጨረሻ ላይ የ መጨረሻ ማስታወሻ መጨመሪያ "
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "አይነት"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr "በ ሰነዱ ውስጥ የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ ማስገቢያ: ለ ማስታወሻው ማስቆሚያ የሚገባው መጠቆሚያው ባለበት ቦታ ነው:"
@@ -29721,201 +29715,201 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr "እርስዎ ጽሁፍ በ እቃ ዙሪያ እንዴት እንደሚጠቀለል ይወስኑ "
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr "እቃውን በ ተለየ መስመር ላይ ያደርጋል በ ሰነድ ውስጥ: ጽሁፉ በ ሰነዱ ውስጥ ከ እቃው ከ ላይ እና ከ ታች በኩል ይታያል: ነገር ግን ከ እቃው ጎን በኩል አይደለም"
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr "ጽሁፍ መጠቅለያ ከ እቃው በ ግራ በኩል በቂ ቦታ ካለ"
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr "ጽሁፍ መጠቅለያ ከ እቃው በ ቀኝ በኩል በቂ ቦታ ካለ"
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "_አጓዳኝ"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr "ጽሁፍ መጠቅለያ ከ እቃው በ አራቱም ጎን የ ድንበር ክፈፍ በኩል"
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "በሙ_ሉ"
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr "እቃውን ከ ጽሁፉ ፊት ለፊት ማድረጊያ"
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr "እቃውን በ ተለየ መስመር ላይ ያደርጋል በ ሰነድ ውስጥ: ጽሁፉ በ ሰነዱ ውስጥ ከ እቃው ከ ላይ እና ከ ታች በኩል ይታያል: ነገር ግን ከ እቃው ጎን በኩል አይደለም"
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "_አጥጋቢ"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
#, fuzzy
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr "ራሱ በራሱ ጽሁፍ በ ግራ እና በ ቀኝ በኩል መጠቅለያ: ወይንም በሁሉም አራት ማእዘኖች በ እቃው ድንበር ክፈፍ ውስጥ: በ እቃዎች እና በ ገጽ መስመር መካከል ያለው እርቀት ከ 2 ሴሚ በታች ከሆነ: ጽሁፉ አይጠቀለልም:"
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "ማሰናጃዎች"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "በ_ግራ:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "በ _ቀኝ:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "ከ _ላይ:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "_ከ ታች:"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "ከ ፖስታው በ ግራ ጠርዝ እና በ ላኪው ሜዳ መካከል እንዲኖር የሚፈልጉትን ክፍተት እና ጽሁፍ ያስገቡ"
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "እርስዎ ያስገቡ የሚፈልጉትን ክፍተት ከ እቃው በ ቀኝ ጠርዝ እና በ ጽሁፉ መካከል"
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "ከ ፖስታው ከ ላይ ጠርዝ እና በ ላኪው ሜዳ መካከል እንዲኖር የሚፈልጉትን ክፍተት እና ጽሁፍ ያስገቡ"
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "እርስዎ ያስገቡ የሚፈልጉትን ክፍተት ከ እቃው በ ታች ጠርዝ እና በ ጽሁፉ መካከል"
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "ክፍተት"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "የ_መጀመሪያው አንቀጽ"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr "አዲስ አንቀጽ ማስጀመሪያ ከ እቃው በታች በኩል እርስዎ ሲጫኑ ማስገቢያውን "
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "እንደ መ_ደብ"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr "የ ተመረጠውን እቃ ወደ መደብ ማንቀሳቀሻ: ይህ ምርጫ ዝግጁ የሚሆነው እርስዎ ከ መረጡ ነው በሙሉ መጠቅለያ አይነት"
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "_ቅርጽ"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr "ጽሁፍ መጠቅለያ በ እቃው ቅርጽ ዙሪያ: ይህ ምርጫ ዝግጁ አይሆንም ለ በሙሉ መጠቅለያ አይነት: ወይንም ለ ክፈፎች "
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "ውጪ ብቻ"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "ጽሁፍ መጠቅለያ በ እቃው ቅርጽ ዙሪያ: ነገር ግን በ ተከፈተ የ እቃው ቅርጽ ቦታ ዙሪያ አይደለም:"
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "ምርጫዎች"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr "እርስዎ ጽሁፍ በ እቃ ዙሪያ እንዴት እንደሚጠቀለል ይወስኑ "
diff --git a/source/am/uui/messages.po b/source/am/uui/messages.po
index afc6dde8b84..9314c2e66bc 100644
--- a/source/am/uui/messages.po
+++ b/source/am/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-01-25 14:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/am/>\n"
@@ -649,17 +649,15 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "እየተጠቀሙበት ያለው ሰነድ"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
-"የ ሰነድ ፋይል '$(ARG1)' ተቆልፏል በ እርስዎ ለ እርማት በ ሌላ ስርአት ከዚህ ጀምሮ $(ARG2)\n"
-"\n"
-"ሰነድ መክፈቻ ለ ንባብ-ብቻ: ወይንም የተቆለፈውን መተው እና ሰነዱን ለ እርማት መክፈቻ"
#. 8mKMg
#: uui/inc/strings.hrc:34
@@ -667,14 +665,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~መክፈቻ"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -686,77 +690,82 @@ msgstr ""
"ሰነድ መክፈቻ ለ ንባብ-ብቻ: ወይንም የተቆለፈውን መተው እና ሰነዱን ለ እርማት መክፈቻ"
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "ለማስቀመጥ ~እንደገና መሞከሪያ"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~ማስቀመጫ"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "ክፍለ ጊዜው እስከሚያልቅ የመግቢያ ቃሉን ~አስታውስ"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "የመግቢያ ቃሉን ~አስታውስ"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "ምንም-ያልተመሰጠረ ማስተላለፊያ"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "ሰነዱን መቆለፍ አልተቻለም"
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "ፋይሉን መቆለፍ አልተቻለም ሙሉ በሙሉ ለ መድረስ %PRODUCTNAME, በ ጎደለ የ ፍቃድ ምክንያት የ ፋይል መቆለፊያ በዚያ ፋይል አካባቢ ለ መፍጠር"
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "እየተጠቀሙበት ያለው ሰነድ"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
-"የ ሰነዱ ፋይል '$(ARG1)' ተዘግቷል ለ ማረም በ:\n"
-"\n"
-"$(ARG2)\n"
-"\n"
-"ሰነዱን ለ ንባብ-ብቻ መክፈቻ ወይንም የ ሰነዱን ኮፒ ለ ማረሚያ መክፈቻ $(ARG3)"
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -766,31 +775,37 @@ msgstr ""
"Yእርስዎ የ ፋይል መቆለፊያውን መተው: እና ሰነዱን ለ ማረም መክፈት ይችላሉ"
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~ኮፒ መክፈቻ"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "ያልታወቀ ተጠቃሚ"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "ሰነዱ በሌሎች ተቀይሯል"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -802,19 +817,19 @@ msgstr ""
"ለማንኛውም ማስቀመጥ ይፈልጋሉ?"
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "~ላስቀምጠው ለማናቸውም"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "እየተጠቀሙበት ያለው ሰነድ"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -830,7 +845,7 @@ msgstr ""
"ሰነዱን ለ ማስቀመጥ እንደገና በኋላ ይሞክሩ ወይንም የ ሰነዱን ኮፒ ለ ማስቀመጥ"
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -846,19 +861,19 @@ msgstr ""
"እርስዎ የ ፋይል መቆለፊያውን መተው: እና በ ነበረው ሰነድ ላይ ደርበው መጻፍ ይችላሉ"
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "ለማስቀመጥ ~እንደገና መሞከሪያ"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "~ማስቀመጫ እንደ..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -868,7 +883,7 @@ msgstr ""
"ይምረጡ መቀየሪያ የሚለውን በ ነበረው ፋይል ላይ ደርቦ ለ መጻፍ ወይንም አዲስ ስም ለመስጠት"
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -878,59 +893,116 @@ msgstr ""
"እባክዎን አዲስ ስም ያስገቡ"
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "እባክዎን የተለየ የ ፋይል ስም ያስገቡ!"
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "የመግቢያ ቃሉ የተሳሳተ ነው ፡ ፋይሉን መክፈት አይቻልም"
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "የመግቢያ ቃሉ የተሳሳተ ነው ፡ ፋይሉን ማሻሻል አይቻልም"
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "ዋናው የመግቢያ ቃል ትክክል አይደለም"
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "የመግቢያ ቃሉ ትክክል አይደለም"
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "የመግቢያ ቃሉ ማረጋገጫ ያስገቡት አይመሳሰልም"
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "የ ተቆለፈው ፋይል የ ተበላሸ ነው"
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
-msgstr "የ ፋይል መቆለፊያ የ ተበላሸ ነው እና ምናልባት ባዲ ይሆናል: ሰነዱን መክፈት ለ ንባብ-ብቻ ዘዴ እና መዝጋት ምናልባት የ ተበላሸውን የ ፋይል መቆለፊያ ሊያስወግደው ይችላል"
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "መክፈቻ ~ለማንበብ-ብቻ"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index bc49c97ef9c..8cfd0b5e6ae 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4513,79 +4513,79 @@ msgid "_Replace"
msgstr ""
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr ""
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr ""
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr ""
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr ""
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9938,194 +9938,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr ""
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr ""
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr ""
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr ""
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr ""
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr ""
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr ""
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr ""
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr ""
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr ""
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr ""
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr ""
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr ""
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr ""
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr ""
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14548,122 +14548,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr ""
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr ""
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15658,14 +15646,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr ""
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20629,69 +20623,69 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr ""
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr ""
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr ""
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
#, fuzzy
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "Automatica"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
#, fuzzy
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Propiedatz..."
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21216,10 +21210,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
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 9e1d9365c2b..e65a4c59f0d 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4831,14 +4831,14 @@ msgctxt ""
msgid "~Number"
msgstr "Numero"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4851,14 +4851,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 79c99fc1e14..81c418a5fd9 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-01-16 04:41+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
@@ -18209,39 +18209,45 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr ""
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
#, fuzzy
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Os 10 primers"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr ""
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr ""
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
#, fuzzy
msgctxt "SCSTR_NONAME"
msgid "unnamed"
@@ -18249,80 +18255,80 @@ msgstr "Sin nombre"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr ""
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr ""
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
#, fuzzy
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Fuella"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Nombre"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
#, fuzzy
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Adchuntar fuella"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
#, fuzzy
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Cambiar nombre de fuella"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
#, fuzzy
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Color d'a pestanya"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
#, fuzzy
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Predeterminau"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
#, fuzzy
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Nombre d'obchecto"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr ""
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -18330,113 +18336,113 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
#, fuzzy
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Protecher grabación"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
#, fuzzy
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Desactivar protección d'a grabación"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Clau:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
#, fuzzy
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Clau (opcional):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
#, fuzzy
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Clau incorrecta"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "Fin"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
#, fuzzy
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Desconoixiu"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
#, fuzzy
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "Minimo"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
#, fuzzy
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "Maximo"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
#, fuzzy
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "Valor"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
#, fuzzy
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "Orichen"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
#, fuzzy
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
@@ -18444,34 +18450,34 @@ msgstr "Dentradas"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
#, fuzzy
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Sistema"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
#, fuzzy
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Predeterminau;Texto;Calendata (DMA);Calendata (MDA);Calendata (AMD);Inglés (US);Amagar"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
#, fuzzy
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Tabuladors"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr ""
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
#, fuzzy
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
@@ -18484,20 +18490,20 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Texto"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
#, fuzzy
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
@@ -18505,863 +18511,863 @@ msgstr "Seleccionar fuellas"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
#, fuzzy
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Fuellas seleccionadas"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
#, fuzzy
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Regle"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
#, fuzzy
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Iste regle administra os obchectos en posicions fixas. "
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
#, fuzzy
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Previsualización"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
#, fuzzy
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Ista fuella amuestra a disposición d'os datos en o documento. "
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
#, fuzzy
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Visualización d'o documento"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
#, fuzzy
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Fuella %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
#, fuzzy
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Celda %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
#, fuzzy
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Aria cucha"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
#, fuzzy
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Vista preliminar"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
#, fuzzy
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Aria central"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
#, fuzzy
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Aria dreita"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
#, fuzzy
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Encabezamiento d'a pachina %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
#, fuzzy
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Piet de pachina d'a pachina %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
#, fuzzy
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Linia d'edición"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
#, fuzzy
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Aquí se puede introducir y editar texto, numeros y formulas. "
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
#, fuzzy
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Reproducción de meyos"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
#, fuzzy
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Botón d'o rato presionado"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
#, fuzzy
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Barra de ferramientas de formula"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "Fuellas de calculo de %PRODUCTNAME"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(solament ta lectura)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
#, fuzzy
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Modo de vista preliminar)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr ""
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "L'intervalo contiene etiquetas de columnas"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "L'intervalo contiene etiquetas de ringleras"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Valor no valida."
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Adhibir una formatación automatica"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Cambiar o nombre d'a formatación automatica"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Nombre"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Eliminar a formatación automatica"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Deseya realment eliminar a dentrada #?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
#, fuzzy
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Zarrar"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Chin."
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb."
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mar."
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "Norte"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Centro"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Sud"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
#, fuzzy
msgctxt "STR_SUM"
msgid "Total"
msgstr "Total"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr ""
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr ""
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Contenius"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Fuellas"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
#, fuzzy
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Nombres d'os entrevalos"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
#, fuzzy
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Entrevalos d'a base de datos"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Imachens"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "Obchectos OLE"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Comentarios"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Arias enlazadas"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Obchectos de dibuixo"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "activo"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "inactivo"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "amagau"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Finestra activa"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Nombre d'o escenario"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Comentarios"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
#, fuzzy
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "Orden ascendent"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
#, fuzzy
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "Orden descendent"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Orden personalizau"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
#, fuzzy
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Quadro de nombre"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
#, fuzzy
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Linia de dentrada"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
#, fuzzy
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Asistent: Funcions"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
#, fuzzy
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Aplicar"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Cancelar"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
#, fuzzy
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Formulas"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr ""
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr ""
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Autor"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Calendata"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Usuario desconoixiu"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
#, fuzzy
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "S'ha ficau una columna"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
#, fuzzy
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "S'ha ficau una ringlera "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
#, fuzzy
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "S'ha ficau una fuella "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
#, fuzzy
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "S'ha eliminau una columna"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
#, fuzzy
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "S'ha eliminau una ringlera"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
#, fuzzy
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "S'ha eliminau una fuella"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
#, fuzzy
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "S'ha moviu un entrevalo"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
#, fuzzy
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "O conteniu s'ha modificau"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
#, fuzzy
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "O conteniu s'ha modificau"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
#, fuzzy
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "S'ha modificau a "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
#, fuzzy
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Orichinal"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
#, fuzzy
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "As modificacions s'han refusau"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
#, fuzzy
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Acceptadas"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
#, fuzzy
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Refusadas"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
#, fuzzy
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Garra dentrada"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
#, fuzzy
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<vuedo>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "No protechiu"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "No protechiu por una clau"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "O hash ye incompatible"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "O hash ye compatible"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Torne a escribir-la"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
#, fuzzy
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Agrupar"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
#, fuzzy
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
@@ -19369,777 +19375,777 @@ msgstr "Total"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
#, fuzzy
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "meya"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
#, fuzzy
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Modo"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr ""
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr ""
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
#, fuzzy
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Aria"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Minimo"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Maximo"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Suma"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
#, fuzzy
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Cantidat"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Normal"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr ""
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Minimo"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Maximo"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "meya"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr ""
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "sigma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
#, fuzzy
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr ""
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr ""
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr ""
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr "L'adreza de salida no ye valida."
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr ""
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr ""
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr ""
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr ""
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index f177cc1323c..02ddb3b6737 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/sdmessages/an/>\n"
@@ -3636,9 +3636,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr ""
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3648,9 +3648,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 38ca95add6e..9550daf3e33 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -2956,148 +2956,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3109,55 +3109,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr ""
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3635,19 +3635,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4512,61 +4512,61 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr ""
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr ""
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr ""
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr ""
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr ""
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/an/starmath/messages.po b/source/an/starmath/messages.po
index 92c62ddd452..ad490db2ada 100644
--- a/source/an/starmath/messages.po
+++ b/source/an/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3306,129 +3306,142 @@ msgid "These changes will apply for all new formulas."
msgstr ""
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr ""
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr ""
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
#, fuzzy
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "Cantos"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr ""
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
#, fuzzy
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Mida ~orichinal"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr ""
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr ""
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr ""
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr ""
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index c6732c4c1a6..35bc6df968d 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-03-17 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
@@ -14063,6 +14063,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
#, fuzzy
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 121fdc1366d..4130a64d199 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8361,1220 +8361,1226 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr ""
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
#, fuzzy
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Columna"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr ""
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Contraste"
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr ""
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Estandar"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabla"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Pachina"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
#, fuzzy
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "~Debuxo"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "Selección"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Graficos"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Selección"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Comentario"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr ""
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr ""
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr ""
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr ""
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr ""
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Eliminar"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr ""
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
#, fuzzy
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Comentario"
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr ""
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
#, fuzzy
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Selección"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr ""
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr ""
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Pachina "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragrafo"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imachen"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr ""
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr ""
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Pachina"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Capitero"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titol"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
#, fuzzy
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separadors"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
#, fuzzy
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "~Tabulacions"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Texto"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9583,263 +9589,263 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Cantos"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fundo"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr ""
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr ""
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documento HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documento de texto"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr ""
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ringlera"
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna"
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9848,7 +9854,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9857,140 +9863,128 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarchetas de pr~esentación"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr ""
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Eliminar"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr ""
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr ""
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr ""
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Conteniu"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr ""
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr ""
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr ""
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizau 1"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11285,7 +11279,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr ""
@@ -17736,110 +17730,110 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr ""
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr ""
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Automatica"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
#, fuzzy
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Importar"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr ""
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr ""
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr ""
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr ""
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr ""
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr ""
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr ""
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Tipo"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -30183,203 +30177,203 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr ""
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr ""
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
#, fuzzy
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Configuración"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr ""
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
#, fuzzy
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "Enta la dreita"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr ""
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
#, fuzzy
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "Cobaixo"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr ""
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr ""
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr ""
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr ""
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr ""
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr ""
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr ""
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr ""
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr ""
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr ""
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Opcions"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/an/uui/messages.po b/source/an/uui/messages.po
index cc463aba156..e540e909fd3 100644
--- a/source/an/uui/messages.po
+++ b/source/an/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-03-28 15:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -605,13 +605,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr ""
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -620,15 +621,21 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
#, fuzzy
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Ubrir"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -637,72 +644,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr ""
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr ""
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr ""
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr ""
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr ""
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -710,31 +727,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Usuario desconoixiu"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -743,19 +766,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr ""
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr ""
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -766,7 +789,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -777,19 +800,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr ""
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr ""
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -797,7 +820,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -805,59 +828,116 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr ""
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr ""
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr ""
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr ""
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr ""
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index 389a2cfe610..df8c65b71a7 100644
--- a/source/an/vcl/messages.po
+++ b/source/an/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:17+0200\n"
-"PO-Revision-Date: 2021-05-12 07:37+0000\n"
+"PO-Revision-Date: 2021-05-18 15:37+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"
"Language: an\n"
@@ -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: 1542022411.000000\n"
#. k5jTM
@@ -609,7 +609,7 @@ msgstr ""
#: vcl/inc/strings.hrc:25
msgctxt "SV_RESID_STRING_NOSELECTIONPOSSIBLE"
msgid "[No selection possible]"
-msgstr ""
+msgstr "[Garra selección posible]"
#. QbQEb
#: vcl/inc/strings.hrc:27
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 1179a672463..f4563d010c8 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4505,79 +4505,79 @@ msgid "_Replace"
msgstr "ا_ستبدل"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "احذف الاختصارات"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "اختصارات (لا تتبع بحرف كبير)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "_ضمّن آليًّا"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "ا_ستبدل"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9870,194 +9870,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "تنسيق"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "_هانغول/هانجا"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "هانجا (هان_غول)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "هان_غول (هانجا)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "_هانغول/هانجا"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "هانجا (هان_غول)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "هان_غول (هانجا)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "تحويل"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "هانغول _فقط"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "هانجا _فقط"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "ت_جاهل"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "تجاهل _دائما"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "ا_ستبدل"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "اس_تبدل دائما"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "استب_دل بالمحرف"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14438,122 +14438,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "مربّعات حوار الفتح و الحفظ"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "استخدم مربعات _حوار %PRODUCTNAME"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "مربعات حوار الطباعة"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ال_طباعة تجعل حالة المستند ”مستند معدل“"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "حالة المستند"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "فسّرها على أنها ال_سنوات بين "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "السنة (رقمان)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "اجمع بيانات الاستخدام و أرسلها إلى «مؤسسة المستند المفتوح»"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "أرس_ل تقارير الإنهيار إلى مؤسسة The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "ساعد في تحسين %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "حمّل %PRODUCTNAME أثناء بدء النظام"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "فعّل التشغيل السريع في صينية النظام"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "تشغيل %PRODUCTNAME السريع"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15542,14 +15530,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "وكيل المستخدم"
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "خيارات التحديث عبر الشابكة"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20452,67 +20446,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "ال_زيادة:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "ب_كسل"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "التأخير:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_تلقائي"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "خصائص"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21033,10 +21027,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "أ_ظهر التلميحات عند البدأ"
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index e4fd5bb6b90..30570b835eb 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr ""
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr ""
-
#. ncuAv
#: 03020402.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 07ab2d14473..1081f6f5173 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,22 +10339,31 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
-#. yQzKr
+#. vFJRL
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"hd_id201586594659135\n"
+"par_id771621035263403\n"
"help.text"
-msgid "Service invocation"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
msgstr ""
-#. 5YFk5
+#. VAaLU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id211621035276160\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
msgstr ""
#. T8o7G
@@ -10321,6 +10375,15 @@ msgctxt ""
msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
#. HABsh
#: sf_exception.xhp
msgctxt ""
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
msgstr ""
-#. A9gBj
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
+msgstr ""
+
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
msgstr ""
-#. DBbfU
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
+msgstr ""
+
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 6b2f486a47c..86c2fcffafc 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20545,6 +20545,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr ""
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20815,13 +20824,13 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr ""
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
msgstr ""
#. 2beTG
@@ -27151,805 +27160,13 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr ""
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr ""
-
-#. NNzM9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"help.text"
-msgid "CONVERT"
-msgstr ""
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr ""
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr ""
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr ""
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr ""
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr ""
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr ""
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr ""
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr ""
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr ""
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr ""
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr ""
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr ""
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr ""
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr ""
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "القوة"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr ""
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr ""
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr ""
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr ""
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr ""
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr ""
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr ""
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr ""
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr ""
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr ""
-
-#. UTUhA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr ""
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr ""
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr ""
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr ""
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr ""
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr ""
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr ""
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr ""
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr ""
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr ""
-
-#. HnJBh
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"par_id3149934\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "10^15"
-msgstr ""
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr ""
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr ""
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr ""
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr ""
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr ""
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr ""
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr ""
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr ""
-
-#. G2FDE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr ""
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr ""
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr ""
-
-#. iiAPq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr ""
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr ""
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr ""
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr ""
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr ""
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr ""
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr ""
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr ""
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr ""
-
-#. GD6Gw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr ""
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr ""
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr ""
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr ""
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr ""
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr ""
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr ""
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr ""
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr ""
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr ""
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr ""
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr ""
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr ""
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr ""
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr ""
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr ""
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr ""
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr ""
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr ""
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr ""
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr ""
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr ""
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr ""
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr ""
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr ""
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr ""
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
msgstr ""
#. G7UNe
@@ -49543,13 +48760,13 @@ msgctxt ""
msgid "AutoFilter"
msgstr ""
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
msgstr ""
#. cTu3x
@@ -49561,6 +48778,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr ""
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55591,6 +55042,33 @@ msgctxt ""
msgid "Examples"
msgstr "مثال:"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57526,6 +57004,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr ""
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58624,13 +59848,22 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr ""
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
msgstr ""
#. BNTm6
@@ -63862,13 +65095,13 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr ""
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
msgstr ""
#. JoYks
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index dbeb9d992ba..60e40726457 100644
--- a/source/ar/helpcontent2/source/text/scalc/guide.po
+++ b/source/ar/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ar/>\n"
@@ -3022,13 +3022,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr ""
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 1b20b69b2c4..3341448c665 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20320,6 +20320,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr ""
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/06.po b/source/ar/helpcontent2/source/text/shared/06.po
index 6bacd427ae5..7b328c7f14f 100644
--- a/source/ar/helpcontent2/source/text/shared/06.po
+++ b/source/ar/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2018-09-03 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -304,13 +304,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr ""
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
+msgid "Impress Screenshots"
msgstr ""
#. c6FJr
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 b68a9e01ae6..7f8ff380bb2 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-04-11 06: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"
@@ -4556,14 +4556,14 @@ msgctxt ""
msgid "~Number"
msgstr "الر~قم"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4576,14 +4576,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index e1ce2a81740..6b934aad3f9 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-04-11 06: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"
@@ -16893,113 +16893,119 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "المرشّح القياسي..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "أعلى 10"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "فارغ"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "غير فارغ"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "غير مسمى"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "العمود %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "الصف %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "ورقة"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "الاسم"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "إلحاق ورقة"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "أعد تسمية الورقة"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "لون الجدولة"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "المبدئيّ"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "اسم الكائن"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
#, fuzzy
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "أدرج صورة"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -17011,135 +17017,135 @@ msgstr[4] ""
msgstr[5] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "حماية السجلات"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "إلغاء حماية السجلات"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "كلمة السر:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "كلمة السر (اختيارية):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "كلمة السر غير صحيحة"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "إ~نهاء"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "غير معروف"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "الحد الأد~نى"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "الحد الأ~قصى"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "ال~قيمة"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "ال~مصدر"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "الإ~دخالات"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "النظام"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "قياسي;نص;تاريخ (ي‏ش‏س);تاريخ (ش‏ي‏س);تاريخ (س‏ش‏ي);إنجليزية الولايات المتحدة;إخفاء"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "علامة جدولة"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "مسافة"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17151,406 +17157,406 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "مرشّح الصور"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "النص"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "تحديد الأوراق"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "أوراق محد~دة"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "المسطرة"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "هذه المسطرة تدير الكائنات في أماكن ثابتة."
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "معاينة"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "هذه الورقة تظهر كيفية ترتيب البيانات في المستند."
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "عرض المستند"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "الورقة %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "الخلية %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "المنطقة اليسرى"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "معاينة الصفحة"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "المنطقة الوسطى"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "المنطقة اليمنى"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "ترويسة الصفحة %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "تذييل الصفحة %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "سطر اﻹدخال"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "يمكنك هنا إدخال نص أو أرقام أو معادلات أو تحريرها."
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "تشغيل الوسائط"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "الضغط على زر الفأرة"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "شريط أدوات الصيغة"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "جداول %PRODUCTNAME مُمتدة"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(للقراءة فقط)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(وضع المعاينة)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "تعذر تحديث المصدر DDE التالي، لربما لأن المستند المصدري لم يُفتح. يرجى تشغيل المستند المصدري والمحاولة ثانيةً."
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "تعذر تحميل الملف الخارجي التالي. البيانات الموصلة من هذا الملف لم تُحدّث."
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "كالك A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "إكسل A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "إكسل R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "يتضمن النطاق ت~سميات الأعمدة"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "يتضمن النطاق تسميات ال~صفوف"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "قيمة غير صالحة"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "المعادلات لا تشكل عمودًا."
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "المعادلات لا تشكل صفًا."
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "أضِف تنسيق تلقائي"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "غيّر اسم التنسيق التلقائي"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "الاسم"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "غيّر اسم التنسيق التلقائي"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "هل تريد بالفعل حذف التنسيق التلقائي #؟"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "إ~غلاق"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "يناير"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "فبراير"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "مارس"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "شمال"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "وسط"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "جنوب"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "المجموع"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "مربط الصفحة"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "مربط الخلية"
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17558,331 +17564,331 @@ msgstr "الشّروط"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "المحتويات"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "أوراق"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "أسماء النطاقات"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "مجالات قاعدة البيانات"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
#, fuzzy
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "الصورة"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "كائنات OLE"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "التعليقات"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "مناطق مرتبطة"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "كائنات رسومية"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "نشط"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "غير نشط"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "مخفي"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "النافذة النشطة"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "اسم السيناريو"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "_التعليقات"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
#, fuzzy
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "فرز تصاعدي"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
#, fuzzy
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "فرز تنازلي"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "فرز مخصص"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "مربع الاسم"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "سطر اﻹدخال"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "مرشد الدوال"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "قبول"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "ألغِ"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
#, fuzzy
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "المعادلة"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "وسّع شريط المعادلة"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "طي شريط الصيغة"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "المؤلف"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "التاريخ"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "مستخدم غير معروف"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "تم إدارج العمود"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "تم إدارج السطر "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "تم إدارج الورقة "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "تم حذف العمود"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "تم حذف السطر"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "تم حذف الورقة"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "تم نقل النطاق"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "تم تغيير المحتويات"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "تم تغيير المحتويات"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "تم التغيير إلى "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "الأصل"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "تم رفض التغييرات"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "مقبول"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "مرفوض"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "لا يوجد إدخال"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<فارغ>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "غير محمي"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "ليس محميا بكلمة سر"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "التجزئة غير متوافقة"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "التجزئة متوافقة"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "إعادة كتابة"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "معدّل التحرّك"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
#, fuzzy
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
@@ -17890,111 +17896,111 @@ msgstr "~تجانس أسي..."
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
#, fuzzy
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "تجميع"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "المجموع"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "ترابط"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
#, fuzzy
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
@@ -18002,13 +18008,13 @@ msgstr "ترابط"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "التّغاير"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
#, fuzzy
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
@@ -18016,760 +18022,760 @@ msgstr "التّغاير"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
#, fuzzy
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "إحصائيات تف~صيلية..."
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "متوسط"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "الوضع"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "الوسائط"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "المتغير"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
#, fuzzy
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "التحديد القياسي"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "المجال"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "الأدنى"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "الأقصى"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "المجموع"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "العدد"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "عادي"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
#, fuzzy
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "الهندسة"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "الحد الأدنى"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "الحد الأقصى"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "متوسط"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "التحديد القياسي"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "الوسائط"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "سيجما"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
#, fuzzy
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "عمود %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
#, fuzzy
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "صف %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "ألفا"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "المتغير"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "المتغير"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "العمليات:"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
#, fuzzy
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "خطّي"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "لوغارثميّ"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "الأس"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "قاطِع"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "لا تتوفر بيانات مستخدم."
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(وصول حصري)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index a076dd6be2a..6706492392c 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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/sdmessages/ar/>\n"
@@ -3632,9 +3632,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "لائم المنطقة المطبوعة"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3644,9 +3644,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "توزيع على العديد من الأوراق الخاصة بورقة"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index df0418c7be0..e234490127f 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3027,148 +3027,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr "النوع"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3180,55 +3180,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "_ضمّن الخطوط في المستند"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3699,20 +3699,20 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
#, fuzzy
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr "..."
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4571,61 +4571,61 @@ msgid "Wrap _around"
msgstr "أعد من الب_داية"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "ا_فتح الملف للقراءة فقط"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "سجّل الت_غييرات"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "احمِ..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "أل_غِ الحماية..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "خيارات مشاركة الملف"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index 7ae4d7eb7ff..7b5989109db 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-03-19 16:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ar/>\n"
@@ -3283,127 +3283,140 @@ msgid "These changes will apply for all new formulas."
msgstr "ستُطبَّق هذه التغييرات على كل المعادلات الجديدة."
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "_سطر العنوان"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "_نص المعادلة"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "ال_حد"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "خيارات الطباعة"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "الحجم الأ_صلي"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "_ملائمة حجم الصفحة"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "ال_مقياس:"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "تنسيق الطباعة"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "تجا_هل ~~ و ' في نهاية السطر"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "اغرس الرموز المستعملة فقط (حجم أصغر للملف)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "أغلق الأقواس تلقائيًا"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "خيارات متنوعة"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 62c62db8076..e7df3d54bb6 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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/svxmessages/ar/>\n"
@@ -14088,6 +14088,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr "أعِد تشغيل %PRODUCTNAME لدخول الوضع الآمن"
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 7088fd51e8d..07db371330a 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8280,1230 +8280,1236 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "مرتبط بالصفحة"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "الإحداثي س:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "الإحداثي ص:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "للأعلى"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "موسط عمودياً"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "للأسفل"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "أعلى السطر"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "وسط اليسار"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "أسفل السطر"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "على اليمين"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "موسط أفقياً"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "على اليسار"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "داخل"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "خارج"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "كامل العرض"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "الأعمدة"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "عرض الفاصل:"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "الحد الأقصى لمنطقة الحاشية:"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "يمكن تحريره في المستندات المفتوحة للقراءة فقط"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
#, fuzzy
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "تقسيم"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "و "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "السطوع: "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "الأحمر: "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "الأخضر: "
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "الأزرق: "
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "التباين: "
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "غاما: "
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "الشفافية: "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "اعكس"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "لا تعكس"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "وضع الرسوم: "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "_قياسي"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "تدرج رمادي"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "أسود و أبيض"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "علامة مائيّة"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "اقتباس"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "بدون شبكة"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "شبكة (السطور فقط)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "شبكة (سطور وحروف)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "اتباع تدفق النّص"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "لا تتبع تدفق النص"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "لا تدمج الحدود"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
msgstr "الجدول"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
#, fuzzy
msgctxt "ST_PGE"
msgid "Page"
msgstr "الصفحة"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "الرسم"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "عنصر تحكم"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "قسم"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "علامة"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
#, fuzzy
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "رسوميات"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
#, fuzzy
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "عناوين رئيسية"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "التحديد"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "حاشية"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "تعليق"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "تكرار البحث"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "الجدول التالي"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "الصفحة التالية"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "الرسمة التالية"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "المتحكّم التالي"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "القسم التالي"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "العلامة التالية"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "الرسم التالي"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "كائن OLE التالي"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "العنوان الرئيسي التالي"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "الحاشية التالية"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "التعليق التالي"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "إدراج مدخل في الفهرس"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "الجدول السابق"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "الصفحة السابقة"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "الرسمة السابقة"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "المتحكّم السابق"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "القسم السابق"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "العلامة السابقة"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "الرسمة السابقة"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "كائن OLE السابق"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "العنوان الرئيسي السابق"
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "التحديد السابق"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "الحاشية السابقة"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "التذكير السابق"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "التعليق السابق"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "تابع البحث خلفًا"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "مدخلة الفهرس السابقة"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "معادلة الجدول السابقة"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "معادلة الجدول التالية"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "معادلة الجدول الخاطئة السابقة"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "معادلة الجدول الخاطئة التالية"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "أدرج"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "احذف"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "تغيير الجدول"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرات المطبقّة"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
#, fuzzy
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "تغيير تنسيق الفقرة"
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "أُدرج السطر"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "تم حذف السطر"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "حاشية ختامية: "
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "حاشية: "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "الترويسة (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "ترويسة الصفحة الأولى (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "ترويسة الصفحة اليسرى (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "ترويسة الصفحة اليمنى (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "التذييل (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "تذييل الصفحة الأولى (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "تذييل الصفحة اليسرى (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "تذييل الصفحة اليمنى (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "احذف الترويسة..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "نسّق الترويسة..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "احذف التذييل..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "نسّق التذييل..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "تعذّر فتح الصورة"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "تعذّرت قراءة الصورة"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "نسق الصّورة مجهول"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "إصدارة ملفّ الصّورة هذا غير مدعومة"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "تعذّر العثور على مرشّح الصورة"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "لا توجد ذاكرة كافية لإدراج الصّورة."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "أدرج صورة"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "تعليق: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "إدراج"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "حذف"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "التصحيح التلقائي"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "تغييرات الجدول"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرة المُطبّقة"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "الصفحة "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "الصفحة %1 من %2"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "الصفحة %1 من %2 (الصّفحة %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "فقرة"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "صورة"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "إطار"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "جدول"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "صف جدول"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "خلية جدول"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "صفحة"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ترويسة"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "ملف %PRODUCTNAME %PRODUCTVERSION HTML"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "العنوان"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "الفاصل"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "المستوى "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "تعذر العثور على الملف ”%1“ في المسار ”%2“."
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "فهرس معرف من المستخدم"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<لا شيء>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<لا شيء>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "رقم الفصل"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "المدخلة"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "علامة جدولة"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "النص"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "رقم الصفحة"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "معلومات الفصل"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "بداية الرابط"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "نهاية الرابط"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "مُدخل بيبلوجرافيا: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "نمط الأحرف: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "اضغط Ctrl+Alt+A لنقل التّركيز لعمليّات أكثر"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9512,259 +9518,259 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "أ~على الخط الأساسي"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "أ~سفل الخط الأساسي"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "و~سط الخط الأساسي"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "أدرج كائن"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "حرّر الكائن"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (قالب: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "الحدود"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "الخلفية"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(نمط الفقرة: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "لا يمكن تطبيق أرقام الصفحات على الصفحة الحالية. الأرقام الفردية للصفحات اليمنى والأرقام الزوجية للصفحات اليسرى."
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "مستند %PRODUCTNAME‏ %PRODUCTVERSION رئيسي"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "سيحذف اتّصال الملفّ متحويات القسم الحاليّ. أأتّصل بأيّ حال؟"
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "كلمة السر المدخلة غير صالحة."
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "لم تُضبط كلمة السر."
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "بلا (لا تدقّق الإملاء)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "صفّر إلى اللغة المبدئيّة"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "أكثر..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "ت~جاهل"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "التّفسيرات..."
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "تعذّر دمج المستندات."
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "تعذّر تحميل المصدر."
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "لم تعيَّن طابعة تحت أدوات/خيارات/%1/طباعة."
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "مستند HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "مستند نصّيّ"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "المصدر غير محدّد."
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "المستوى "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "المخطط العام "
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "حرّر الحاشية/الحاشية الختامية"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "استُبدل مفتاح البحث XX مرّة."
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "الصّفّ "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "العمود "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~صدّر المصدر..."
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~صدّر نسخة عن المصدر…"
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~تابع"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "يرسل إلى: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "نجح الإرسال"
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "فشل الإرسال"
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9773,7 +9779,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9782,138 +9788,126 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "وقّعها"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "توقيع الفقرة"
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "بطاقات عمل"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "إعدادات البريد الالكتروني"
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "إضافة"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "احذف"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "الصفات"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "ابحث عن مصطلح"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "مُدخلة بديلة"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "المفتاح الأول"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "المفتاح الثاني"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "التعليقات"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "مطابقة حالة الأحرف"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "الكلمة فقط"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "نعم"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "لا"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "مخصص"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11207,7 +11201,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr ""
@@ -17557,109 +17551,109 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr ""
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr ""
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "تلقائي"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "محرف"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "اختر…"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr ""
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "تعداد رقمي"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "حاشية"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr ""
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "حاشية ختامية"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr ""
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "النوع"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -29971,200 +29965,200 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "_موازي"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "_خلال"
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "الأ_مثل"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "إعدادات"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "من الي_سار:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "من الي_مين:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "من أ_على:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "من أ_سفل:"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr ""
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr ""
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr ""
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr ""
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "التباعد"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "الفق_رة الأولى"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "في ال_خلفية"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "ال_حد الخارجي"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "الخارج فقط"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr ""
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "خيارات"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/ar/uui/messages.po b/source/ar/uui/messages.po
index e66909d3fe7..aec0c0df66f 100644
--- a/source/ar/uui/messages.po
+++ b/source/ar/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-03-06 20:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ar/>\n"
@@ -642,13 +642,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "المستند يُستخدم الآن"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -657,14 +658,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "ا~فتح"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -673,72 +680,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "أ~عد محاولة الحفظ"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "احف~ظ"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "~تذكر كلمة السر حتى نهاية الجلسة"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "ت~ذكر كلمة السر"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "تدفقات غير معمّاة"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "تعذّر قفل المستند"
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "تعذّر إنشاء ملف القفل ليصل إليه %PRODUCTNAME حصرا، وذلك لنقص تصريح إنشاء ملف قفل في ذلك المكان أو أن مساحة القرص الحرة غير كافية."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "المستند قيد الاستخدام"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -746,31 +763,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "ا~فتح نسخة"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "مستخدم غير معروف"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "غيّر آخرون المستند"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -779,19 +802,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "ا~حفظ على أي حال"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "المستند قيد الاستخدام"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -802,7 +825,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -813,19 +836,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "أ~عد محاولة الحفظ"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "ا~حفظ باسم..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -835,7 +858,7 @@ msgstr ""
"اختر \"استبدل\" للكتابة فوق الملفّ الموجود أو وفّر اسمًا آخر."
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -845,59 +868,116 @@ msgstr ""
"فضلًا أدخل اسمًا جديدًا."
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "فضلًا اختر اسم ملفّ مختلف!"
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "كلمة السر غير صحيحة. تعذّر فتح الملف."
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "كلمة السر غير صحيحة. تعذّر تعديل الملف."
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "كلمة السر الرئيسية غير صحيحة."
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "كلمة السر غير صحيحة."
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "تأكيد كلمة السر غير متطابق."
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "ملف القفل تالف"
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
-msgstr "ملف القفل تالف ولربما يكون فارغا. بفتح المستند للقراءة فقط وإغلاقه بعدها يمكن إزالة ملف القفل التالف."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "افتح لل~قراءة فقط"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 3cf93760d0a..0ed1f837d41 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+0200\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/as/>\n"
@@ -4556,80 +4556,80 @@ msgid "_Replace"
msgstr "প্ৰতিস্থাপন কৰক (_R)"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "এব্ৰিভিয়েষণসমূহ মচি দিয়ক"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
#, fuzzy
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "এব্ৰিভিয়েষণসমূহ (কোনো পৰৱৰ্তী উপৰফলা নাই)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "স্বঅন্তৰ্ভুক্ত কৰক (_u)"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "প্ৰতিস্থাপন কৰক (_R)"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -10078,204 +10078,204 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "বিন্যাস (_r)"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "হেঙুল/হাঞ্জা (~H)"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "হাঞ্জা (হেঙুল) (~g)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "হেঙুল (হাঞ্জা) (~u)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "হেঙুল/হাঞ্জা (~H)"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "হাঞ্জা (হেঙুল) (~g)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "হেঙুল (হাঞ্জা) (~u)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
#, fuzzy
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "পৰিৱৰ্তন"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
#, fuzzy
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "কেৱল হেঙুল (~o)"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
#, fuzzy
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "কেৱল হাঞ্জা (~y)"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "উপেক্ষা কৰক (~I)"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "সদায় উপেক্ষা কৰক (~g)"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "প্ৰতিস্থাপন কৰক (_R)"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "সদায় প্ৰতিস্থাপন কৰক (~e)"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "আখৰেৰে প্ৰতিস্থাপন কৰক (~y)"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14801,125 +14801,112 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ডাইলগসমূহ খোলক/সঞ্চয় কৰক"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_d)"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-#, fuzzy
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "ডাইলগসমূহ প্ৰিন্ট কৰক"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "সংহতিসমূহ \"দস্তাবেজ সলনি কৰা হৈছে\" অৱস্থা প্ৰিন্ট কৰা হৈ আছে (_P)"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দস্তাবেজ অৱস্থা"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "বছৰসমূহ মাজত থকাকে অনুবাদ কৰক (_I) "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "আৰু "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছৰ (দুটা ডিজিট)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME -ক চিস্টেম আৰম্ভ হোৱাৰ সময়ত লোড কৰক"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter সামৰ্থবান কৰক"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15936,14 +15923,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "অনলাইন আপডেইট বিকল্পসমূহ"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20984,70 +20977,70 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
#, fuzzy
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "বৃদ্ধি"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr ""
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
#, fuzzy
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "বিলম্ব (_D):"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
#, fuzzy
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "স্বচালিত"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "বৈশিষ্ট্যবোৰ"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21585,10 +21578,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
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 1cb6274031a..c4abc165e4b 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4614,14 +4614,14 @@ msgctxt ""
msgid "~Number"
msgstr "সংখ্যা"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4634,14 +4634,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index 055e616f4da..a7b796f4164 100644
--- a/source/as/sc/messages.po
+++ b/source/as/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/as/>\n"
@@ -16918,112 +16918,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "প্ৰামাণিক ফিল্টাৰ..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "ওপৰ ১০"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "ৰিক্ত"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "ৰিক্ত নহয়"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "নাম নহোৱা"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "স্তম্ভ %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "শাৰী %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "শ্বিট"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "নাম"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "শ্বিট সংলগ্ন কৰক"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "শ্বিটৰ পুনৰ নাম দিয়ক"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "টেবৰ ৰঙ"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "অবিকল্পিত"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "নিৰ্বাচিত বস্তুটোৰ কাৰণে নতুন নামটো সুমুৱাওক."
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "ছবি সুমুৱাওক"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -17031,135 +17037,135 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "ৰেকৰ্ডবোৰ সুৰক্ষিত কৰক"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "ৰেকৰ্ডবোৰ অসুৰক্ষিত কৰক"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "পাছৱাৰ্ড:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "পাছৱাৰ্ড (বৈকল্পিক):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "অশুদ্ধ পাছৱর্ড"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "অন্ত (~E)"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "অজ্ঞাত"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "নূন্যতম (~M)"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "সর্বাধিক (~M)"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "মান (~V)"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "উৎস (~S)"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "প্ৰৱিষ্টিবোৰ (~E)"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "চিস্টেম"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "মানবিশিষ্ট;লিখনী;তাৰিখ (DMY);তাৰিখ (MDY);তাৰিখ (YMD);US ইংৰাজী;লুকুৱাওক"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "টেব"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "ব্যৱধান"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17171,409 +17177,409 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "ছবি ফিল্টাৰ"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "লিখনী"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "শ্বিটবোৰ নিৰ্বাচিত কৰক"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "নিৰ্বাৰ্চিত শ্বিটবোৰ (~S)"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "মাপনী"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "নিৰ্দিষ্ট স্থানবোৰত এই মাপনীটোৱে বস্তুবোৰ নিয়ন্ত্ৰণ কৰে।"
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "পূৰ্বদৃশ্য"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "এই শ্বিটখনে দস্তাবেজত কেনেকৈ তথ্য সজোৱা হ'ব তাক দেখুৱায়।"
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "দস্তাবেজ দৃশ্য"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "শ্বিট %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "কোষ %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "বাওঁফালৰ ক্ষেত্র"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "পৃষ্ঠাৰ পূর্বদৃশ্য"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "মধ্যভাগ এৰিয়া"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "সোঁফালৰ এৰিয়া"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "পৃষ্ঠা %1 ৰ হেডাৰ"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "পৃষ্ঠা %1 ৰ ফুটাৰ"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "ইনপুট ৰেখা"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "এইখিনিতেই আপুনি লিখনী, সংখ্যাবোৰ আৰু সূত্ৰবোৰ সুমুৱাওক বা সম্পাদনা কৰক।"
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "মিডিয়া পুনৰ বজাওক"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "মাউছ বাটন হেঁচা হ'ল"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "সূত্র টুলবাৰ"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME স্প্ৰেডশিটসমূহ"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(কেৱল-পঢ়িব পাৰি)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(পূৰ্বদৰ্শন অৱস্থা)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME কেলক"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "নিম্নলিখিত DDE উৎস আপডেইট কৰিব নোৱাৰাৰ সম্ভাব্য কাৰণ হল উৎস দস্তাবেজ খোলা নাছিল। অনুগ্ৰহ কৰি উৎস দস্তাবেজ আৰম্ভ কৰক আৰু পুনৰ চেষ্টা কৰক।"
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "নিম্নলিখিত বহিৰ্তম ফাইল ল'ড কৰিব পৰা নগল। এই ফাইলৰ পৰা সংযোগ কৰা তথ্য আপডেইট নহল।"
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "বিস্তাৰত স্তম্ভ লেবেলসমূহ অন্তৰ্ভুক্ত (~b)"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "বিস্তাৰ শাৰী লেবেলসমূহ অন্তৰ্ভুক্ত (~r)"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "অকার্যকৰী মান।"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "স্ববিন্যাস যোগ কৰক"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "স্ববিন্যাস পুনৰ নামকৰণ কৰক"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "নাম"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "স্ববিন্যাস মচি পেলাওক"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "আপুনি সঁচাকৈয়ে # প্ৰৱিষ্টিটো মচি পেলাবলৈ বিচাৰেনেকি?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "বন্ধ কৰক (~C)"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "জানুৱাৰী"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "ফেব"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "মার্চ"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "উত্তৰ"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "মাজ"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "দক্ষিণ"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "সর্বমুঠ"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "এংকৰ পৰিবৰ্তন কৰক"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17581,322 +17587,322 @@ msgstr "কণ্ডিষণ"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "বিষয়বোৰ"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "শ্বীটছ"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "পৰিসৰৰ নাম"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "ডাটাবেইচৰ বিস্তাৰসমূহ"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
#, fuzzy
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "ছবি"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE বস্তুবোৰ"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "মন্তব্য"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "সংযোগকৃত ক্ষেত্রবোৰ"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "অঁকা বস্তুবোৰ"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "সক্রিয়"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "নিষ্ক্রিয়"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "লুকুৱাই থোৱা"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "সক্রিয় উইণ্ড'"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "ছীনাৰিঅ'ৰ নাম"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "বিষয়সূচী (_C)"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "আৰোহণ কৰি আছে"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "অৱৰোহণ কৰি আছে"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "স্বনিৰ্বাচিত সজোৱা"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "নাম বাকছ"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "ইনপুট ৰেখা"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "ফলন উইজাৰ্ড"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "স্বীকাৰ কৰক"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "বাতিল কৰক"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "সূত্র"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "সূত্ৰ বাৰ প্ৰসাৰণ কৰক"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "সূত্ৰ বাৰ স্খলিত কৰক"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "তাৰিখ"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "অজ্ঞাত ব্যৱহাৰকাৰী"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "স্তম্ভ অন্তর্ভূক্ত কৰা হ'ল"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "শাৰী সুমুৱা হল "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "শ্বিট সুমুৱা হল "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "স্তম্ভ মচি পেলোৱা হ'ল"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "শাৰী মচি পেলোৱা হ'ল"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "শ্বিট মচি পেলোৱা হ'ল"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "বিস্তাৰ নিয়া হ'ল"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "পৰিবৰ্তন কৰা সমল"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "পৰিবৰ্তন কৰা সমল"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "চিহ্নিত বস্তুলৈ পৰিবৰ্তন কৰা হল "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "প্রকৃত"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "পৰিবৰ্তনবোৰ অস্বীকাৰ কৰা হল"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "স্বীকৃত"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "অস্বীকৃত"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "কোনো প্রৱিষ্টি নাই"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<empty>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "সুৰক্ষীত নহয়"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "পাছৱাৰ্ড সুৰক্ষীত নহয়"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "হেষ অসংগত"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "হেষ সংগত"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "পুনৰ সুমুৱাওক"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
#, fuzzy
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
@@ -17904,7 +17910,7 @@ msgstr "গতিশীল গড়"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
#, fuzzy
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
@@ -17912,122 +17918,122 @@ msgstr "গনকীয় নিমজতা"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
#, fuzzy
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "অপৰৰ বিশ্লেষণ"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
#, fuzzy
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - এটা কাৰক"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
#, fuzzy
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "ANOVA - দুটা কাৰক"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
#, fuzzy
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "গোট"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
#, fuzzy
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "দলৰ মাজত"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
#, fuzzy
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "দলৰ অন্তৰ্গত"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "ভেদৰ উৎস"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
#, fuzzy
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
#, fuzzy
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
#, fuzzy
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-value"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
#, fuzzy
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F critical"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "সর্বমুঠ"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "ক'ৰিলেষণ"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
#, fuzzy
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
@@ -18035,14 +18041,14 @@ msgstr "ক'ৰিলেষণ"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
#, fuzzy
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "কভেৰিয়েন্স"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
#, fuzzy
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
@@ -18050,235 +18056,235 @@ msgstr "কভেৰিয়েন্স"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
#, fuzzy
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "বিৱৰিত পৰিসংখ্যা"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "গড়"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
#, fuzzy
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "প্ৰামাণিক ত্ৰুটি"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "ধৰণ"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "মিডিয়ান"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "ভেৰিয়েন্স"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
#, fuzzy
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "স্টেণ্ডাৰ্ড ডিভিয়েষণ"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
#, fuzzy
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "কাৰ্টচিচ"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
#, fuzzy
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "স্কুনেচ"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
#, fuzzy
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "বিস্তাৰ"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "নূন্যতম"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "সৰ্বাধিক"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
#, fuzzy
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "সমষ্টি"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "গণনা"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
#, fuzzy
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "যাদৃচ্ছিক ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
#, fuzzy
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "সুষম"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
#, fuzzy
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "সুষম পূৰ্ণসংখ্যা"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "স্বাভাৱিক"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
#, fuzzy
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "কচি"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
#, fuzzy
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "বাৰ্নলি"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
#, fuzzy
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "দ্বিপদ"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
#, fuzzy
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "ঋণাত্মক দ্বিপদ"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
#, fuzzy
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "চি বৰ্গ"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
#, fuzzy
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "জ্যামিতিক"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "নূন্যতম"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "সৰ্বাধিক"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "গড়"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "স্টেণ্ডাৰ্ড ডিভিয়েষণ"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "মিডিয়ান"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "ছিগমা"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p মান"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "ট্ৰায়েলসমূহৰ সংখ্যা"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
@@ -18286,7 +18292,7 @@ msgstr "nu মান"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
#, fuzzy
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
@@ -18294,354 +18300,354 @@ msgstr "নমুনা"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
#, fuzzy
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-test"
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
#, fuzzy
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-test"
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
#, fuzzy
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "F-test"
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
#, fuzzy
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "F-test"
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
#, fuzzy
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "স্তম্ভ %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
#, fuzzy
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "শাৰী %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "আলফা"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "চলক ১"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "চলক ২"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
#, fuzzy
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "প্ৰকল্পিত গড় পাৰ্থক্য"
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "চোৱা"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
#, fuzzy
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "চোৱা গড় পাৰ্থক্য"
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-value"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "ৰৈখিক"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "লগাৰিথিমিক"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "পাৱাৰ"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
#, fuzzy
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "ৰিগ্ৰেষণ ধৰণ"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "ইন্টাৰনেট"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
#, fuzzy
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) ৰাইট-টেইল"
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F ক্ৰিটিকেল ৰাইট-টেইল"
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
#, fuzzy
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) বাঁও-টেইল"
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F ক্ৰিটিকেল বাঁও-টেইল"
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
#, fuzzy
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P টু-টেইল"
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
@@ -18649,49 +18655,49 @@ msgstr "F ক্ৰিটিকেল টু-টেইল"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
#, fuzzy
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "পিয়াৰচন কৰিলেষণ"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
#, fuzzy
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "পাৰ্থক্যবোৰৰ অপৰ"
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
#, fuzzy
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t Stat"
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
#, fuzzy
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) এটা-টেইল"
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t ক্ৰিটিকেল এটা-টেইল"
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) দুটা-টেইল"
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
@@ -18699,40 +18705,40 @@ msgstr "t ক্ৰিটিকেল দুটা-টেইল"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (T<=t) এটা-টেইল"
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "t ক্ৰিটিকেল এটা-টেইল"
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
#, fuzzy
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (T<=t) দুটা-টেইল"
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
@@ -18740,111 +18746,111 @@ msgstr "F ক্ৰিটিকেল টু-টেইল"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "কোনো ব্যৱহাৰকাৰী তথ্য নাই।"
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusive access)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index dd833d8a3a1..18af94e5180 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/as/>\n"
@@ -3654,9 +3654,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "প্ৰিন্ট হব পৰা পৃষ্ঠাৰ সৈতে খাপ খুৱাওক"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3666,9 +3666,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "পৃষ্টাৰ বহু চাদৰত বিলাওক"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 4fee96bb309..e462666ab55 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/as/>\n"
@@ -3034,148 +3034,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3187,55 +3187,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "দস্তাবেজত ফন্টসমূহ অন্তৰ্ভুক্ত কৰক (_E)"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3721,19 +3721,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4616,62 +4616,62 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "কেৱল-পঢ়িআ পৰা ফাইল খোলক (_O)"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "পৰিৱৰ্তনসমূহ ৰেকৰ্ড কৰক (_c)"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "ৰক্ষা কৰক..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "অসুৰক্ষীত কৰক (_U)..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
#, fuzzy
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "ফাইল সেয়াৰ কৰা বিকল্পসমূহ"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/as/starmath/messages.po b/source/as/starmath/messages.po
index c6240fcf0d9..330abbbe870 100644
--- a/source/as/starmath/messages.po
+++ b/source/as/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/as/>\n"
@@ -3319,134 +3319,147 @@ msgid "These changes will apply for all new formulas."
msgstr ""
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr ""
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
#, fuzzy
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "সূত্র লিখনী"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
#, fuzzy
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "সীমাৰেখাবোৰ"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
#, fuzzy
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "প্ৰিন্টাৰৰ বিকল্পবোৰ"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
#, fuzzy
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "প্ৰকৃত আকাৰ"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
#, fuzzy
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "পৃষ্ঠাত খাপ খুৱাওক"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
#, fuzzy
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "স্কেইলিং"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr ""
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
#, fuzzy
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "বিৱিধ বিকল্পসমূহ"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index 2d75b8d7865..c0a046ae23e 100644
--- a/source/as/svx/messages.po
+++ b/source/as/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/as/>\n"
@@ -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: 1542022474.000000\n"
#. 3GkZj
@@ -14197,6 +14197,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index cb0afc70ab6..447568cb052 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/as/>\n"
@@ -8401,1257 +8401,1263 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "কোনো পৃষ্ঠা নাই"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "উলম্বভাৱে কেন্দ্ৰীত"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "তললৈ"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ৰেখাৰ ওপৰত"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "বাওঁফালে কেন্দ্রীকৃত"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ৰেখাৰ তলত"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "আনুভূমিকভাৱে কেন্দ্ৰীত"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "অভ্যন্তৰ"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "বাহিৰ"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "সম্পূর্ণ প্রস্থ"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "কেৱল পঢ়িবৰ বাবে দস্তাবেজত সম্পাদনা কৰিব পাৰি (_d)"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "বিভাজন কৰক"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "আৰু "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "উজ্জ্বলতা"
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "পুনৰ কৰক "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "পার্থক্য"
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "স্বচ্ছতা"
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "সুমুৱাওক"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "গ্ৰাফিক্সৰ প্ৰকাৰ"
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "মানবিশিষ্ট"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "গ্রেস্কেল"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "ক'লা আৰু বগা"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "জলচিহ্ন"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "উদ্ধৃতি"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "জাল নাই"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "জাল (কেৱল শাৰী)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "জাল (শাৰী আৰু আখৰবোৰ)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "টেবুল"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "ছবি"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "নিয়ন্ত্রণ"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "খণ্ড"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "পৃষ্ঠাসংকেত"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "গ্ৰাফিক্স"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
#, fuzzy
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLEবস্তু"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "শিৰোনামবোৰ"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "নিৰ্বাচন"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
#, fuzzy
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "পাদটীকা"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "মন্তব্যবোৰ"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "বিচৰাৰ পুনৰাবৃত্তি"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "পৰৱর্তী পৃষ্ঠা"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "কোনো শিৰোনাম নাই"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "পৰৱৰ্তী পৃষ্ঠাসংকেতলৈ"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "কোনো শিৰোনাম নাই"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "পৰৱৰ্তী পাদটীকালৈ"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "পৰৱৰ্তী মন্তব্য"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "সূচী প্রৱিষ্টি সুমুৱাওক"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠা"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "পৰৱৰ্তী খণ্ডলৈ"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "পূৰ্বৱৰ্তী পৃষ্ঠাসংকেতলৈ"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "পূৰ্বৱৰ্তী পাদটীকালৈ"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "পূৰ্বৱৰ্তী মন্তব্য"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "পূৰ্বৱৰ্তী টেবুল সূত্ৰলৈ যাওক"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "অশুদ্ধ টেবুল সূত্ৰলৈ যাওক"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "পৰৱৰ্তী অশুদ্ধ টেবুল সূত্ৰলৈ যাওক"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "সুমুৱাওক"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "মচি পেলাওক"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "টেবুল সলনি হয়"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "শাৰী সুমুৱা হল "
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "শাৰী মচি পেলোৱা হ'ল"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "অন্তিম টীকা"
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "পাদটীকা"
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "স্তৰ মচি পেলাওক (~L)..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "পৃষ্ঠা ফৰমেট কৰক (~P)..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "স্তৰ মচি পেলাওক (~L)..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "মজীয়া ফৰমেট..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "ছবি ফাইলখন খুলিব নোৱাৰি"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "ছবি ফাইল পঢ়িব নোৱাৰি"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "অজ্ঞাত ছবি বিন্যাস"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "এই ছবি ফাইল সংস্কৰণ সমৰ্থিত নহয়"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "ছবি ফিল্টাৰ পোৱা নগল"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ছবি সুমুৱাবলৈ পৰ্যাপ্ত মেমৰি নাই।"
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ছবি সুমুৱাওক"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "মন্তব্য: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "অন্তর্ভূক্তি"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "ডিলিশ্বন"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "স্বশুদ্ধকৰণ"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "টেবুল সলনি হয়"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "পৃষ্ঠা "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
#, fuzzy
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "%n ৰ %p পৃষ্ঠা"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "পেৰেগ্ৰাফ"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ছবি"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE বস্তু"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "টেবুল"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "টেবুলৰ শাৰী"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "টেবুল কক্ষ"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML দস্তাবেজ"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "পৃথক কৰোঁতা"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Level "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ফাইল, \"%1\" যি \"%2\" পথত আছে তাক বিচাৰি পোৱা নগ'ল।"
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ব্যৱহাৰকাৰী-বিৱৰিত সূচী"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<None>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<None>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "পাঠ সংখ্যা"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "প্রৱিষ্টি"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "টেব বন্ধ"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "লিখনি"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "পৃষ্ঠাৰ সংখ্যা"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "পাঠৰ তথ্য"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "হাইপাৰলিংক আৰম্ভ"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "হাইপাৰলিংক অন্ত"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "আখৰৰ শৈলী: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "গঠন লিখনি"
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "অধিক কাৰ্য্যৰ বাবে ফকাচ স্থানান্তৰ কৰিবলে Ctrl+Alt+A টিপক"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "গঠন নিয়ন্ত্ৰণসমূহ বাছিবলে বাঁও অথবা সোঁ কাঁড় টিপক"
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "ফকাচ পুনৰ বৰ্তমান গঠন নিয়ন্ত্ৰণলৈ নিবলৈ Ctrl+Alt+B টিপক"
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "বর্ণমালা সূচীৰ বাবে বাছনী ফাইল (*.sdi)"
@@ -9660,268 +9666,268 @@ msgstr "বর্ণমালা সূচীৰ বাবে বাছনী
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "ওপৰত আধাৰ ৰেখা (~t)"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "তলত আধাৰ ৰেখা (~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "আধাৰ ৰেখা কেন্দ্রীকৃত (~c)"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "বস্তু ভৰাওক"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "বস্তু সম্পাদনা কৰক"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (নমুনা: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(পেৰেগ্ৰাফ শৈলী: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "বৰ্তমান পৃষ্ঠালে পৃষ্ঠা নম্বৰসমূহ প্ৰয়োগ কৰিব নোৱাৰি। যুগ্ম নম্বৰসমূহ বাও পৃষ্ঠাসমূহত ব্যৱহাৰ কৰিব পাৰি, অযুগ্ম নম্বৰসমূহ সোঁ পৃষ্ঠাসমূহত ব্যৱহাৰ কৰিব পাৰি।"
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION মুখ্য দস্তাবেজ"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "কোনো নহয় (বানান নিৰীক্ষন নকৰিব)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "অবিকল্পিত ভাষালৈ পুনৰ সংহতি কৰা"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "অধিক..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "উপেক্ষা কৰক (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML ডকুমেন্ট"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Level "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ৰূপৰেখা"
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "ফুটনোট/এণ্ডনোট সুমুৱাওক"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "সন্ধান চাবিৰে XX সময় সলনি কৰা হ'ল"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "শাৰীবোৰ"
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "স্তম্ভ"
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "চলাই থাকক"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9930,7 +9936,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9939,141 +9945,129 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "স্বাক্ষৰ কৰিছে "
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "ব্যৱসায়িক কার্ডসমূহ (~u)"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "সুমুৱাওক"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "মচি পেলাওক"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
#, fuzzy
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "এট্রিবিয়ুটবোৰ"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "প্ৰথম চাবি"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "দ্বিতীয় চাবি"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "মন্তব্যসমূহ"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ফলা মিল খোৱাওক"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "হয়"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "নহয়"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -11396,7 +11390,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr ""
@@ -17907,110 +17901,110 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr ""
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr ""
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "স্বচালিত"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "আখৰ"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "বাছক"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr ""
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "নম্বৰিং"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "ফুটনোট"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr ""
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "এণ্ডনোট"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr ""
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "ধৰণ"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -30555,209 +30549,209 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
#, fuzzy
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "সমান্তৰাল"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
#, fuzzy
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "অনুকূলিত"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "সংহতিসমূহ"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
#, fuzzy
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "বাওঁফালৰ:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
#, fuzzy
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "উচ্চতা"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
#, fuzzy
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "ওপৰ"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
#, fuzzy
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "তলত"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr ""
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr ""
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr ""
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr ""
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "ব্যৱধান"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
#, fuzzy
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "প্রথম দফা (~F)"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
#, fuzzy
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "পৃষ্ঠভূমিত (~B)"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
#, fuzzy
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "ৰূপৰেখা"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr ""
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr ""
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/as/uui/messages.po b/source/as/uui/messages.po
index 141f245890a..500fb5f5348 100644
--- a/source/as/uui/messages.po
+++ b/source/as/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-05-12 07:38+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/as/>\n"
@@ -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: 1522251341.000000\n"
#. DLY8p
@@ -643,13 +643,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "দস্তাবেজ ব্যৱহৃত"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -658,14 +659,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "খোলক (~O)"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -674,73 +681,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "সঞ্চয়ৰ পুনৰ চেষ্টা কৰক (~R)"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "সঞ্চয় কৰক (~S)"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "অধিবেশনৰ অন্তলৈকে পাছওৱাৰ্ড মনত ৰাখিব (~R)"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "পাছওৱাৰ্ড মনত পেলাওক (~R)"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "ইনক্ৰিপ্ট নোহোৱা স্ট্ৰিমসমূহ"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
-#, fuzzy
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "%PRODUCTNAME ৰ দ্বাৰা নথিপত্ৰ লক কৰিব পৰা ন'গ'ল, সেই স্থানত লক নথিপত্ৰ সৃষ্টি কৰা অনুমতি নথকাৰ বাবে।"
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "দস্তাবেজ ব্যৱহৃত"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -748,31 +764,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "খোলক (~O)"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "অজ্ঞাত ব্যৱহাৰকাৰী"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "দস্তাবেজ অন্যৰ দ্বাৰা পৰিৱৰ্তন কৰা হৈছে"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -781,19 +803,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "যিকোনো উপায়ে সঞ্চয় কৰক (~S)"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "দস্তাবেজ ব্যৱহৃত"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -804,7 +826,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -815,19 +837,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "সঞ্চয়ৰ পুনৰ চেষ্টা কৰক (~R)"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "হিচাপে সঞ্চয় কৰক...(~S)"
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -835,7 +857,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -843,59 +865,116 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "পাছওৱাৰ্ড ভুল । দস্তাবেজ খুলিব নোৱাৰি ।"
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "পাছওৱাৰ্ড ভুল । দস্তাবেজ খুলিব নোৱাৰি ।"
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "মূখ্য পাছওৱাৰ্ডটো ভুল।"
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "পাছওৱাৰ্ডটো ভুল হয়।"
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "পাছওৱাৰ্ড নিশ্চিতকৰণ অমিল ।"
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "অকল পঢ়িবলৈ খোলক (~R)"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/ast/chart2/messages.po b/source/ast/chart2/messages.po
index 01464cc42ff..e0a9c320895 100644
--- a/source/ast/chart2/messages.po
+++ b/source/ast/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-05 17:14+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-20 19:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ast/>\n"
"Language: ast\n"
@@ -2015,7 +2015,7 @@ msgstr "Amiesta llinies de cuadrícules a la exa Z del gráficu."
#: chart2/uiconfig/ui/insertgriddlg.ui:167
msgctxt "insertgriddlg|label1"
msgid "Major Grids"
-msgstr "Cuadrícules principales"
+msgstr "Rexaos principales"
#. wqXds
#: chart2/uiconfig/ui/insertgriddlg.ui:198
@@ -2057,7 +2057,7 @@ msgstr "Amiesta cuadrícules que subdividen la exa Z en seiciones más pequeñes
#: chart2/uiconfig/ui/insertgriddlg.ui:263
msgctxt "insertgriddlg|label2"
msgid "Minor Grids"
-msgstr "Cuadrícules menores"
+msgstr "Rexaos menores"
#. URB9E
#: chart2/uiconfig/ui/insertgriddlg.ui:295
@@ -2417,7 +2417,7 @@ msgstr "Secundaria vertical"
#: chart2/uiconfig/ui/sidebarelements.ui:472
msgctxt "sidebarelements|label_gri"
msgid "Gridlines"
-msgstr "Llinies de la cuadrícula"
+msgstr "Llinies del rexáu"
#. uacDo
#: chart2/uiconfig/ui/sidebarelements.ui:493
@@ -5528,4 +5528,4 @@ msgstr "Amuesa les llinies de les cuadrícules que son paraleles a la exa-z. Est
#: chart2/uiconfig/ui/wizelementspage.ui:482
msgctxt "wizelementspage|label2"
msgid "Display Grids"
-msgstr "Visualizar les cuadrícules"
+msgstr "Amosar los rexaos"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index edb09a67117..34601f047e2 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:14+0200\n"
+"PO-Revision-Date: 2021-05-28 21:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ast/>\n"
"Language: ast\n"
@@ -3858,7 +3858,7 @@ msgstr "Ayudes al formatu"
#: cui/inc/treeopt.hrc:91
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Grid"
-msgstr "Cuadrícula"
+msgstr "Rexáu"
#. stfD4
#: cui/inc/treeopt.hrc:92
@@ -4412,13 +4412,13 @@ msgstr ""
#: cui/uiconfig/ui/accelconfigpage.ui:348
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
-msgstr "Escriba pa guetar"
+msgstr "Escribi pa guetar"
#. nGtvW
#: cui/uiconfig/ui/accelconfigpage.ui:352
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
-msgstr ""
+msgstr "Escribi equí pa guetar na llista de funciones."
#. T5FGo
#: cui/uiconfig/ui/accelconfigpage.ui:374
@@ -4505,79 +4505,79 @@ msgid "_Replace"
msgstr "_Trocar"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Desaniciar abreviatures"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Abreviatures (a les que nun siguen mayúscules)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "Incl_uyir automáticamente"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "_Trocar"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9830,10 +9830,9 @@ msgstr "Conversión Hangul/Hanja"
#. kh2or
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:103
-#, fuzzy
msgctxt "hangulhanjaconversiondialog|label1"
msgid "Original"
-msgstr "_Orixinal"
+msgstr "Orixinal"
#. bJGUF
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:120
@@ -9868,216 +9867,214 @@ msgstr ""
#. 3NS8C
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:195
-#, fuzzy
msgctxt "hangulhanjaconversiondialog|label4"
msgid "Suggestions"
-msgstr "S_uxerencies"
+msgstr "Suxerencies"
#. ECK62
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:288
-#, fuzzy
msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
-msgstr "Fo_rmatu"
+msgstr "Formatu"
+
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "~Hangul/Hanja"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Hanja (Han~gul)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Hang~ul (Hanja)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "~Hangul/Hanja"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "Hanja (Han~gul)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "Hang~ul (Hanja)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
#, fuzzy
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Conversión"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
#, fuzzy
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Hangul s~olo"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
#, fuzzy
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Hanja s~olo"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "Inorar"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "I~norar siempres"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "_Trocar"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "~Trocar siempres"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "~Trocar caráuteres ún a ún"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -10151,10 +10148,9 @@ msgstr ""
#. ZiDNN
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:353
-#, fuzzy
msgctxt "hangulhanjaeditdictdialog|label3"
msgid "Suggestions"
-msgstr "S_uxerencies"
+msgstr "Suxerencies"
#. Kyy78
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:22
@@ -10164,10 +10160,9 @@ msgstr ""
#. TLs2q
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:122
-#, fuzzy
msgctxt "hangulhanjaoptdialog|new"
msgid "New..."
-msgstr "_Nuevu..."
+msgstr "Nuevu..."
#. hNjua
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:129
@@ -10177,10 +10172,9 @@ msgstr ""
#. UbGjT
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:141
-#, fuzzy
msgctxt "hangulhanjaoptdialog|edit"
msgid "Edit..."
-msgstr "_Editar..."
+msgstr "Editar..."
#. NKvWY
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:147
@@ -14586,125 +14580,112 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diálogos p'abrir/guardar"
-#. JAW5C
-#: 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:177
-#, fuzzy
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "Diálogos d'imprentación"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
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:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
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:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estáu del documentu"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años ente "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Añu (con dos díxitos)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME nel arranque del sistema"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar l'aniciu rápidu nel área de notificación"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Aniciu rápidu de %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Especifica la configuración xeneral de %PRODUCTNAME."
@@ -15720,14 +15701,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Opciones d'anovamientu online"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20715,67 +20702,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Incrementu:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "_Pixels"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Retrasu:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_Automáticu"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Propiedaes"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21306,10 +21293,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
diff --git a/source/ast/editeng/messages.po b/source/ast/editeng/messages.po
index 2f0bc750871..710d2f8260b 100644
--- a/source/ast/editeng/messages.po
+++ b/source/ast/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-20 19:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/ast/>\n"
"Language: ast\n"
@@ -1566,13 +1566,13 @@ msgstr "Direición del testu d'izquierda a drecha (vertical dende abaxo)"
#: include/editeng/editrids.hrc:275
msgctxt "RID_SVXITEMS_PARASNAPTOGRID_ON"
msgid "Paragraph snaps to text grid (if active)"
-msgstr "El párrafu axúntase a la parriella de testu (si ta activa)"
+msgstr "El párrafu axúntase al rexáu de testu (si ta activu)"
#. nYY6v
#: include/editeng/editrids.hrc:276
msgctxt "RID_SVXITEMS_PARASNAPTOGRID_OFF"
msgid "Paragraph does not snap to text grid"
-msgstr "El párrafu nun s'axunta a la parriella de testu"
+msgstr "El párrafu nun s'axunta al rexáu de testu"
#. VGGHB
#: include/editeng/editrids.hrc:277
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index 1f59ef4c6cc..4e1058e5dee 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-04-27 17:02+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-20 19:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ast/>\n"
"Language: ast\n"
@@ -3366,7 +3366,6 @@ msgstr ""
#. 25yKb
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:371
-#, fuzzy
msgctxt "gridfieldsselectionpage|label1"
msgid "Existing fields"
msgstr "Campos esistentes"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 7fefabf8b78..6880901430f 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-07 05:37+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"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "Camuda la unidá actual."
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Testu As String"
-
#. ncuAv
#: 03020402.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 631687dfe3e..d473a442216 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-01 20: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"
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,6 +10339,24 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
+#. vFJRL
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id771621035263403\n"
+"help.text"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
+msgstr ""
+
+#. VAaLU
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id211621035276160\n"
+"help.text"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
#. yQzKr
#: sf_exception.xhp
msgctxt ""
@@ -10303,22 +10366,22 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
-#. 5YFk5
+#. T8o7G
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id161610652161795\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
-#. T8o7G
+#. tGmaZ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id161610652161795\n"
+"par_id901621036227048\n"
"help.text"
-msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
msgstr ""
#. HABsh
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr "Propiedaes"
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr "Nome"
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
msgstr ""
-#. A9gBj
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
+msgstr ""
+
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
msgstr ""
-#. DBbfU
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
+msgstr ""
+
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index eb72d97d3b6..6eb1aae7a39 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20546,6 +20546,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>Testu</emph> fai referencia al testu del que se van desaniciar tolos caráuteres non imprentables."
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20816,14 +20825,14 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>Decimales</emph> ye'l númberu opcional de posiciones decimales."
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "<item type=\"input\">=MONEDA(255)</item> devuelve $255,00."
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
#. 2beTG
#: 04060110.xhp
@@ -27152,805 +27161,13 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=OCT.A.HEX(144;4)</item> devuelve 0064."
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr ""
-
-#. NNzM9
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"hd_id3148446\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "CONVERT"
-msgstr ""
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Convierte un valor espresáu nuna unidá de midida nel valor correspondiente n'otra unidá.</ahelp> Escriba les unidaes de midida directamente en forma de testu ente comines o bien en forma de referencia. Si escribe les unidaes de midida en caxelles, tendrán de correspondese esactamente cola llista siguiente; tenga en cuenta la distinción ente mayúscules y minúscules: Por exemplu, pa escribir una l minúscula (de \"llitru\") nuna caxella, escriba un apóstrofu ' y de siguío una l."
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr "Propiedá"
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr "Unidaes"
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr "Midida"
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr "Llargor"
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>añu-lluz</emph>, survey_mi"
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr "Hora"
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr "Presión"
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr "Fuerza"
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr "Enerxía"
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "Potencia"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr "<emph>W</emph>, <emph>w</emph>, HP, PS"
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr "Potencia de campu"
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr "<emph>T</emph>, <emph>ga</emph>"
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr "Temperatura"
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr "Volume"
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr "Superficie"
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr "Velocidá"
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr "Información"
-
-#. UTUhA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr "<emph>bit</emph>, <emph>byte</emph>"
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr "Les unidaes de midida en <emph>negrina</emph> puen venir precedíes por un prefixu de la siguiente llista:"
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr "Prefixu"
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr "Multiplicador"
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr "Y (yotta)"
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr "10^24"
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr "Z (zetta)"
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr "10^21"
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr "E (exa)"
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr "10^18"
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr "P (peta)"
-
-#. HnJBh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr "10^15"
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr "T (tera)"
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr "10^12"
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr "G (giga)"
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr "10^9"
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr "M (mega)"
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr "10^6"
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr "k (kilo)"
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr "10^3"
-
-#. G2FDE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr "h (hecto)"
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr "10^2"
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr "e (deca)"
-
-#. iiAPq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr "10^1"
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr "d (deci)"
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr "10^-1"
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr "c (centi)"
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr "10^-2"
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr "m (milli)"
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr "10^-3"
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr "u (micro)"
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr "10^-6"
-
-#. GD6Gw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr "n (nano)"
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr "10^-9"
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr "p (pico)"
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr "10^-12"
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr "f (femto)"
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr "10^-15"
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr "a (atto)"
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr "10^-18"
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr "z (zepto)"
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr "10^-21"
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr "y (yocto)"
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr "10^-24"
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "Les unidaes d'información \"bit\" y \"byte\" tamién puen tar prefijadas por unu de los siguientes prefixos IEC 60027-2 / IEEE 1541:"
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ki kibi 1024"
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "El mio mebi 1048576"
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "Gi gibi 1073741824"
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "Ti tebi 1099511627776"
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "Pi pebi 1125899906842620"
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "Ei exbi 1152921504606850000"
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "Zi zebi 1180591620717410000000"
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "Yi yobi 1208925819614630000000000"
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr ""
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>Númberu</emph> ye'l númberu que se va a convertir."
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>DeUnidad</emph> ye la unidá dende la que s'efeutúa la conversión."
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>AUnidad</emph> ye la unidá a la que s'efeutúa la conversión. Dambes unidaes tienen de ser del mesmu tipu."
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr ""
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
msgstr ""
#. G7UNe
@@ -49544,14 +48761,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Filtru automáticu"
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFiltru</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
#. cTu3x
#: 12040100.xhp
@@ -49562,6 +48779,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Peñera automáticamente l'área de caxelles escoyida, y crea cuadros de llista d'una filera nos que pue escoyer los elementos que deseya amosar.</ahelp>"
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55592,6 +55043,33 @@ msgctxt ""
msgid "Examples"
msgstr "Exemplos"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57527,6 +57005,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr ""
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58625,14 +59849,23 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr "<item type=\"input\">=FIN.MES(FECHA(2001;9;14);6)</item> devuelve'l númberu de serie 37346. Formateáu como fecha, queda 2002-03-31."
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
-msgstr "Tamién funciona <item type=\"input\">=FIN.MES(\"2001-09-14\";6)</item>. Si la fecha escríbese como cadena, tien que tar nel formatu ISO.."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
+msgstr ""
#. BNTm6
#: func_error_type.xhp
@@ -63863,13 +65096,13 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr ""
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
msgstr ""
#. JoYks
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index 6241d750caf..c4ba75e7a89 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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/textscalcguide/ast/>\n"
@@ -3023,13 +3023,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "Asitie'l cursor nuna caxella balera, por exemplu, J14, y escueya <emph>Inxertar - Función</emph>."
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index f5be874745c..bba1a262eb2 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-04-28 12:22+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"
@@ -20320,6 +20320,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr ""
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/06.po b/source/ast/helpcontent2/source/text/shared/06.po
index b25114cfa86..efc4b9d5a4d 100644
--- a/source/ast/helpcontent2/source/text/shared/06.po
+++ b/source/ast/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-03-06 10:51+0000\n"
"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared06/ast/>\n"
@@ -304,13 +304,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr ""
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
+msgid "Impress Screenshots"
msgstr ""
#. c6FJr
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office.po b/source/ast/officecfg/registry/data/org/openoffice/Office.po
index 4d8f3d35b40..260905acb38 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"PO-Revision-Date: 2021-05-28 21:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/ast/>\n"
"Language: ast\n"
@@ -965,7 +965,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Grey"
-msgstr "Gris"
+msgstr "Buxu"
#. E2j8q
#: FormWizard.xcu
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index 9caa5d949ac..26cf3b6415e 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-31 13:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -4615,14 +4615,14 @@ msgctxt ""
msgid "~Number"
msgstr "Númberu"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4635,14 +4635,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
@@ -23202,7 +23202,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contents"
-msgstr "Conteníos"
+msgstr "Conteníu"
#. BgCJp
#: GenericCommands.xcu
@@ -25942,7 +25942,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. EBfym
#: GenericCommands.xcu
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 09e7317faae..e0e19eab22a 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-31 13:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
"Language: ast\n"
@@ -16845,112 +16845,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "Filtru estándar"
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Los 10 primeros"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Baleru"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Non baleru"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr "Color de testu"
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr "Color de fondu"
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "ensin nome"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Columna %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Filera %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Fueya"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Nome"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Añadir fueya"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Renomar fueya"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Color de la llingüeta"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Predetermináu"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Nomar oxetu"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Inxertar una imaxe"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16958,135 +16964,135 @@ msgstr[0] "Atopóse 1 resultáu"
msgstr[1] "Atopáronse %1 resultaos"
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Protexer rexistros"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Desprotexer rexistros"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Contraseña:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Contraseña (opcional):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Contraseña incorreuta"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~Fin"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Desconocíu"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Mínimu"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Máximu"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Valor"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~Fonte"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~Entraes"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Sistema"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Estándar;Testu;Data (DMA);Data (MDA);Data (AMD);Inglés EE.XX.;Tapecer"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Tabulador"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "espaciu"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17098,409 +17104,409 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "Filtru d'imaxes"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Testu"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Escoyer fueyes"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Fueye~s esbillaes"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Regla"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Esta regla alministra oxetos en posiciones fixes."
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Vista previa"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Esta fueya amuesa cómo se coloquen los datos nel documentu."
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Vista de documentu"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Fueya %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Caxella %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Área izquierda"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Vista previa"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Área central"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Área drecha"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Testera de la páxina %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Pie de páxina %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Llinia d'entrada"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Equí puede ponese y editar testu, númberos y fórmules."
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Reproducción de ficheros multimedia"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Botón del mur calcáu"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Barra de fórmules"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "Fueyes de cálculu de %PRODUCTNAME"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(namái llectura)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Mou d'entever)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr "Páxines:"
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
#, fuzzy
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "_Suprimir la salida de les páxines baleres"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr "Imprentar toles fueyes"
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "L'orixe DDE darréu nun se pudo anovar seique'l documentu d'orixe nun taba abiertu. Abri'l documentu d'orixe ya inténtalo otra vuelta."
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "El siguiente ficheru esternu nun se pudo cargar. Los datos enllazaos d'esti ficheru nun s'anovaron."
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "L'intervalu tien etiquetes de ~columnes"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "L'intervalu tien etiquetes de ~fileres"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Valor non válidu"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Amestar Autoformatu"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Renomar Autoformatu"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Nome"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Desaniciar Autoformatu"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "¿De verdá quier desaniciar la entrada #?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Zarrar"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Xin"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mar"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "Norte"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mediu"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Sur"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "Total"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Camudar ancla"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17508,449 +17514,449 @@ msgstr "Condición"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
-msgstr "Conteníos"
+msgstr "Conteníu"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
-msgstr "Fueyes de cálculu"
+msgstr "Fueyes"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Nomes de les árees"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Rangos de la base de datos"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
#, fuzzy
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Imaxe"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "Oxetos OLE"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Comentarios"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Árees enllazaes"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Oxetos de dibuxu"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "activa"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "inactivu"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "anubríu"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Ventana activa"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Nome del escenariu"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Comentariu"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "Orde ascendente"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "Orde descendente"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Orde personalizáu"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Cuadru de nome"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Llinia d'entrada"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Asistente pa funciones"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Aceutar"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Encaboxar"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
#, fuzzy
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "_Fórmules"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Espander la barra de fórmules"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Soverar la barra de fórmules"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Autor"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Data"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Usuariu desconocíu"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Columna inxertada"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Filera inxertada "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Fueya inxertada "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Columna desaniciada"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Fierla desaniciada"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Fueya desaniciada"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Área desplazada"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Modificación de conteníu"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Modificación de conteníu"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Cambiada a "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Orixinal"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Modificación refugada"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Aceutaes"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Refugaes"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Denguna entrada"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<ermu>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Ensin proteicion"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Ensin proteición de contraseña"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Hash incompatible"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Hash compatible"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Reescribi"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Media móvil"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Suavizáu esponencial"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
#, fuzzy
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Análisis de la varianza"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
#, fuzzy
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - Factor únicu"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Grupos"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
#, fuzzy
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Ente grupos"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
#, fuzzy
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "Dientro de los grupos"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Fonte de la variación"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
#, fuzzy
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
#, fuzzy
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
#, fuzzy
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "Valor p"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
#, fuzzy
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F críticu"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Total"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Correllación"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
#, fuzzy
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
@@ -17958,13 +17964,13 @@ msgstr "Correllación"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Covarianza"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
#, fuzzy
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
@@ -17972,229 +17978,229 @@ msgstr "Covarianza"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Estadístiques descriptives"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Media"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
#, fuzzy
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Error estándar"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Mou"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Mediana"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Varianza"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
#, fuzzy
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Esviación estándar"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
#, fuzzy
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Curtosis"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
#, fuzzy
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Asimetría"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Estaya"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
#, fuzzy
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Mínim_u"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
#, fuzzy
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "_Máximu"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Suma"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
#, fuzzy
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Cuenta"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
#, fuzzy
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "Al debalu ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Uniforme"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "Enteru uniforme"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Normal"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Cauchy"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Bernoulli"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Binomial"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Binomial negativa"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Chi al cuadráu"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Xeométrica"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Mínim_u"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "_Máximu"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Media"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Esviación estándar"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Mediana"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "sigma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "Valor p"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "Númberu d'intentos"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
@@ -18202,542 +18208,542 @@ msgstr "Valor nu"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Muestréu"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
#, fuzzy
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Columna %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
#, fuzzy
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Filera %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Variable"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Variable"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Operaciones:"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "Valor p"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
#, fuzzy
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Lli_nial"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Logarítmica"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Potencia"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
#, fuzzy
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Tipu de regresión"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Internet"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "Nun hai datos d'usuariu disponibles."
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accesu esclusivu)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
@@ -25084,10 +25090,9 @@ msgstr ""
#. dCSrW
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:238
-#, fuzzy
msgctxt "navigatorpanel|contents|tooltip_text"
msgid "Contents"
-msgstr "Conteníos"
+msgstr "Conteníu"
#. yrRED
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:263
@@ -25228,13 +25233,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:5974
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. HnjBi
#: sc/uiconfig/scalc/ui/notebookbar.ui:6082
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. xmARL
#: sc/uiconfig/scalc/ui/notebookbar.ui:6493
@@ -25447,7 +25452,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5785
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. EvytN
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6419
@@ -26091,10 +26096,9 @@ msgstr "Ver"
#. h6EHi
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10097
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
-msgstr "Inxertar"
+msgstr "_Inxertar"
#. eLnnF
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10242
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index dc68c8f49db..a62d52db375 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-20 19:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ast/>\n"
"Language: ast\n"
@@ -3655,9 +3655,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Axustar a la zona d'imprentación"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3667,9 +3667,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuyir en delles fueyes de papel"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
@@ -3953,13 +3953,13 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar.ui:5598
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. Z3UCg
#: sd/uiconfig/sdraw/ui/notebookbar.ui:5705
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. TVDXM
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6421
@@ -4171,13 +4171,13 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5634
msgctxt "notebookbar_draw_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. d8cey
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5685
msgctxt "notebookbar_draw_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. kkPza
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6399
@@ -4377,7 +4377,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13062
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. 4p9DA
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3432
@@ -6899,13 +6899,13 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:6122
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. t3YwN
#: sd/uiconfig/simpress/ui/notebookbar.ui:6228
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. 58fjG
#: sd/uiconfig/simpress/ui/notebookbar.ui:7021
@@ -7129,13 +7129,13 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5923
msgctxt "notebookbar_impress_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. ZPHaB
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:5974
msgctxt "notebookbar_impress_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. zEEiz
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:6778
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index ab6304e2957..015965d61e0 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-31 13:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
"Language: ast\n"
@@ -867,10 +867,9 @@ msgstr "Tolos ficheros"
#. E39E2
#: include/sfx2/strings.hrc:160
-#, fuzzy
msgctxt "STR_SFX_FILTERNAME_PDF"
msgid "PDF files"
-msgstr "Ficheru PDF"
+msgstr "Ficheros PDF"
#. gCHbP
#: include/sfx2/strings.hrc:161
@@ -2069,14 +2068,12 @@ msgstr "Reunviar a"
#. xwv85
#: sfx2/inc/dinfdlg.hrc:38
-#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "Grupu"
#. u59Qp
#: sfx2/inc/dinfdlg.hrc:39
-#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr "Información"
@@ -2890,10 +2887,9 @@ msgstr "Nueva versión mayor"
#. PYDWP
#: sfx2/uiconfig/ui/checkin.ui:106
-#, fuzzy
msgctxt "checkin|label2"
msgid "Version comment:"
-msgstr "Comentariu sobre la versión"
+msgstr "Comentariu sobre la versión:"
#. CEnTA
#: sfx2/uiconfig/ui/cmisline.ui:45
@@ -2917,7 +2913,7 @@ msgstr "Non"
#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
-msgstr ""
+msgstr "Guetar una orde"
#. w2G7M
#: sfx2/uiconfig/ui/custominfopage.ui:15
@@ -3024,148 +3020,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr "Oxetu"
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr "Esbilla actual nel documentu"
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr "Esbilla actual"
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr "Oxetu"
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr "Inspeicionar"
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr "Inspeicionar"
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "Nome de la clase:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr "Nome"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr "Servicios"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr "Valor"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr "Triba"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr "Información"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr "Propiedaes"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr "Métodu"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr "Métodos"
@@ -3177,55 +3173,55 @@ msgid "Inspect"
msgstr "Inspeicionar"
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "_Incrustar les tipografíes nel documentu"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3432,10 +3428,9 @@ msgstr ""
#. 66AnB
#: sfx2/uiconfig/ui/editdurationdialog.ui:132
-#, fuzzy
msgctxt "editdurationdialog|negative"
msgid "_Negative"
-msgstr "Negativu"
+msgstr "_Negativu"
#. LeAmz
#: sfx2/uiconfig/ui/editdurationdialog.ui:149
@@ -3445,10 +3440,9 @@ msgstr ""
#. kFDdM
#: sfx2/uiconfig/ui/editdurationdialog.ui:163
-#, fuzzy
msgctxt "editdurationdialog|label"
msgid "_Months:"
-msgstr "Meses"
+msgstr "_Meses:"
#. CHLhB
#: sfx2/uiconfig/ui/editdurationdialog.ui:177
@@ -3529,10 +3523,9 @@ msgstr "Vista"
#. S7ppr
#: sfx2/uiconfig/ui/helpcontrol.ui:77
-#, fuzzy
msgctxt "helpcontrol|contents"
msgid "Contents"
-msgstr "Comentarios"
+msgstr "Conteníu"
#. vxPLh
#: sfx2/uiconfig/ui/helpcontrol.ui:126
@@ -3649,7 +3642,7 @@ msgstr ""
#: sfx2/uiconfig/ui/helpwindow.ui:117
msgctxt "helpwindow|print|tooltip_text"
msgid "Print"
-msgstr ""
+msgstr "Imprentar"
#. 7wgqt
#: sfx2/uiconfig/ui/helpwindow.ui:129
@@ -3709,19 +3702,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr "Sí"
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr "Non"
@@ -3730,7 +3723,7 @@ msgstr "Non"
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
-msgstr ""
+msgstr "Modificar l'enllaz DDE"
#. CZn3G
#: sfx2/uiconfig/ui/linkeditdialog.ui:102
@@ -3826,7 +3819,7 @@ msgstr "Plantíes"
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:245
msgctxt "loadtemplatedialog|label2|tooltip_text"
msgid "Templates in the selected category"
-msgstr ""
+msgstr "Plantíes na categoría esbillada"
#. rFENe
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:264
@@ -3887,7 +3880,7 @@ msgstr "Carga los estilos de páxina del documentu escoyíu nel documentu actual
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:324
msgctxt "loadtemplatedialog|numbering"
msgid "_List"
-msgstr ""
+msgstr "_Llista"
#. VZxbf
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:329
@@ -4597,61 +4590,61 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "_Abrir documentu namái pa llectura"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Rexistrar los _cambeos"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Protexer..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "_Desprotexer..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Opciones pa compartir ficheros"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/ast/starmath/messages.po b/source/ast/starmath/messages.po
index 08218c756bd..8403b19db6d 100644
--- a/source/ast/starmath/messages.po
+++ b/source/ast/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ast/>\n"
@@ -3292,132 +3292,145 @@ msgid "These changes will apply for all new formulas."
msgstr "Estos cambios aplicaránse pa toles fórmules nueves."
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "Llinia de _títulu"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "Testu de la _fórmula"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "B_orde"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr "Aplica un borde finu al área de la fórmula na salida impresa."
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
#, fuzzy
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Opciones d'impresión"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Tamañu o_rixinal"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Axustar a la _páxina"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
#, fuzzy
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "E_scaláu"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
#, fuzzy
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Formatu d'impresión"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
#, fuzzy
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "I_norar ~ y ` al final de la llinia"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Incrustar sólo los símbolos usaos (menor tamañu de ficheru)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
#, fuzzy
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Opciones diverses"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 6f7e4884dbb..cf4f54726cd 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-19 16:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. fLdeV
@@ -112,7 +112,7 @@ msgstr "Formatu de sirvidor Star"
#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
-msgstr "Star, formatu d'oxetu"
+msgstr "Formatu d'oxetu Star"
#. VFT89
#: include/svtools/strings.hrc:43
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 9a24a7c6285..a16043db38b 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-31 13:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022499.000000\n"
#. 3GkZj
@@ -3239,13 +3239,13 @@ msgstr ""
#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
-msgstr ""
+msgstr "Azul"
#. UdEYr
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
-msgstr ""
+msgstr "Mariellu"
#. 9AUDK
#: include/svx/strings.hrc:567
@@ -7632,10 +7632,9 @@ msgstr "Viñeta hacia la drecha, viñeta en forma de flecha a la drecha, viñeta
#. nEJiF
#: include/svx/strings.hrc:1364
-#, fuzzy
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
-msgstr "Nun pudo crease'l ficheru."
+msgstr "Nun pudo crease'l ficheru ZIP."
#. CC6Sw
#: include/svx/strings.hrc:1366
@@ -7725,43 +7724,43 @@ msgstr ""
#: include/svx/strings.hrc:1383
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
-msgstr ""
+msgstr "Imaxe PNG"
#. Fkrjs
#: include/svx/strings.hrc:1384
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
-msgstr ""
+msgstr "Imaxe TIFF"
#. VWyEb
#: include/svx/strings.hrc:1385
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
-msgstr ""
+msgstr "Imaxe WMF"
#. pCpoE
#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_MET"
msgid "MET image"
-msgstr ""
+msgstr "Imaxe MET"
#. DELaB
#: include/svx/strings.hrc:1387
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
-msgstr ""
+msgstr "Imaxe PCT"
#. 3AZAG
#: include/svx/strings.hrc:1388
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
-msgstr ""
+msgstr "Imaxe SVG"
#. aCEJW
#: include/svx/strings.hrc:1389
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
-msgstr ""
+msgstr "Imaxe BMP"
#. p2L8C
#: include/svx/strings.hrc:1390
@@ -7785,25 +7784,25 @@ msgstr "Mou d'imaxe"
#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
-msgstr "Proporción de colloráu"
+msgstr "Coloráu"
#. CiQvY
#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
-msgstr "Proporción de verde"
+msgstr "Verde"
#. BhvBe
#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
-msgstr "Proporción d'azul"
+msgstr "Azul"
#. HSP36
#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
-msgstr "Brillu"
+msgstr "Rellumu"
#. w5BYP
#: include/svx/strings.hrc:1399
@@ -14146,6 +14145,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
@@ -19352,7 +19357,7 @@ msgstr ""
#: svx/uiconfig/ui/sidebargallery.ui:354
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME"
msgid "New..."
-msgstr ""
+msgstr "Nuevu..."
#. RfChe
#: svx/uiconfig/ui/sidebargallery.ui:373
@@ -19364,7 +19369,7 @@ msgstr ""
#: svx/uiconfig/ui/sidebargraphic.ui:52
msgctxt "sidebargraphic|brightnesslabel"
msgid "_Brightness:"
-msgstr "_Brillu:"
+msgstr "Re_llumu:"
#. X5Qk5
#: svx/uiconfig/ui/sidebargraphic.ui:66
@@ -19374,10 +19379,9 @@ msgstr "Especifique la lluminancia del gráficu."
#. DQXTc
#: svx/uiconfig/ui/sidebargraphic.ui:72
-#, fuzzy
msgctxt "sidebargraphic|setbrightness-atkobject"
msgid "Brightness"
-msgstr "_Brillu:"
+msgstr "Rellumu"
#. FnFeA
#: svx/uiconfig/ui/sidebargraphic.ui:85
@@ -19393,10 +19397,9 @@ msgstr "Especifique'l grau de diferencia ente les partes más clares y les más
#. zJs2p
#: svx/uiconfig/ui/sidebargraphic.ui:105
-#, fuzzy
msgctxt "sidebargraphic|setcontrast-atkobject"
msgid "Contrast"
-msgstr "_Contraste:"
+msgstr "Contraste"
#. 6cABJ
#: svx/uiconfig/ui/sidebargraphic.ui:118
@@ -20127,10 +20130,9 @@ msgstr "Onda"
#. xJTZe
#: svx/uiconfig/ui/textunderlinecontrol.ui:204
-#, fuzzy
msgctxt "textunderlinecontrol|moreoptions"
msgid "_More Options..."
-msgstr "Más opciones"
+msgstr "_Más opciones..."
#. QWLND
#: svx/uiconfig/ui/xformspage.ui:36
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 84437721968..d469633bbc9 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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-28 21:15+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"
@@ -8348,1256 +8348,1262 @@ msgstr "al párrafu"
#: sw/inc/strings.hrc:1114
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
+msgstr "como caráuter"
+
+#. Uszmm
+#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "a la páxina"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Coordenada X:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Coordenada Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Centráu en vertical"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "P'abaxo"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Llinia superior"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Centru izquierda"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Cabero de llinia"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Centráu n'horizontal"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "Adientro"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "Afuera"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Anc_hor completu"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Columnes"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "E_ditable en documentos de namái llectura"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Dixebrar"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "y "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Rellumu"
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Restaurar "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Contraste"
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Tresparencia"
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Inxertar"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Mou gráficos"
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Estándar"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Escala de buxos"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Blancu y prietu"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Marca d'agua"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Xiru"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Ensin cuadrícula"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Cuadrícula (sólo llinies)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Cuadrícula (llinies y caráuteres)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Siguir el fluxu del testu"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Tabla"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Páxina"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Dibuxu"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
#, fuzzy
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Control"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "Seición"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Marcador"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Gráficos"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Testeres"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Esbilla"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Nota al pie"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Comentariu"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Repitir la Gueta"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Próxima páxina"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Ensin encabezamientu"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
#, fuzzy
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Seición nueva"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Dir al siguiente marcador"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Ensin encabezamientu"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
#, fuzzy
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Seición nueva"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Dir a la nota al pie siguiente"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Comentariu Siguiente"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Inxertar entrada d'índiz"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Páxina anterior"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Páxina anterior"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Seición anterior"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Dir a la marca anterior"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Dir a la nota al pie anterior"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Comentariu Anterior"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Dir a la fórmula anterior"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Dir a l'anterior fórmula incorreuta"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Dir a la siguiente fórmula incorreuta"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Inxertar"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Desaniciar"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Camudamientu de tabla"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Filera inxertada "
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Fierla desaniciada"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Nota final"
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Nota al pie"
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Desaniciar ~capa..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "~Formatu de páxina..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "¿Desaniciar el pie de páxina?"
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formatu del suelu..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "El ficheru d'imaxe nun pue abrise"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "El ficheru d'imaxe nun pue lleese"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Formatu d'imaxe desconocíu"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
#, fuzzy
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Esta versión del ficheru d'imaxe nun tien encontu"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "El filtru d'imaxe nun s'alcontró"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nun hai memoria bastante pa inxertar la imaxe."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Inxertar una imaxe"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Comentariu: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Inxerción"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Desaniciu"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "AutoCorreición"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Camudamientu de tabla"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Páxina "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Párrafu"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imaxe"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Marcu"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Filera de tabla"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Caxella de la tabla"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Páxina"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Testera"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Pie"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Documentu HTML de %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Títulu"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separtador"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Nivel "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Nun pudo atopase'l ficheru «%1» nel camín «%2»."
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Índiz definíu pol usuariu"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Nengún>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Nengún>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Númberu capítulu"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Entrada"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Tabulador parada"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Testu"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Númberu páxina"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Información capítulu"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Aniciar enllaz"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Fin d'enllaz"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Entrada bibliográfica: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Estilu de caráuter: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
@@ -9606,264 +9612,264 @@ msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Llinia base no cime~ro"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Llinia base no ca~bero"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Llinia base ~centrada"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Inxertar oxetu"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Editar oxetu"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Plantilla: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Bordes"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fondu"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Estilu Párrafu: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Los númberos de páxina nun se puen aplicar na páxina actual. Los númberos pares se puen aplicar nes páxines izquierdes, los impares en páxines dereches."
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Documentu maestru de %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Dengún (Nun igua la ortografía)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Reafitar a la llingua predeterminada"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Más..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Inorar"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documentu HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documentu de testu"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Nun s'especificó l'orixe."
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Nivel "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Esquema"
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Inxertar nota al pie/nota final"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "La clave de busca sustituyó XX vegaes"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Filera "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Siguir"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9872,7 +9878,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9881,138 +9887,126 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Firmáu por "
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarxetes d'empresa"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Inxertar"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Desaniciar"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Atributos"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Términu de gueta"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Entrada alternativa"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ᵉʳ clave"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ª clave"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Comentariu"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Concasar mayúscules y minúscules"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Sólo pallabra"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Sí"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Non"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizáu"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -11319,7 +11313,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "Inxerta una referencia de la bibliografía."
@@ -17724,111 +17718,111 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "Mover pol documentu hasta l'ancla de la nota al pie o de la nota final anterior."
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "Mover pol documentu hasta l'ancla de la nota al pie o de la nota final siguiente."
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Automático"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr "Asigna automáticamente númberos consecutivos a les notes al pie o les notes finales qu'inxerte."
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Caráuter"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Escoyer"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "Inxerta un caráuter especial como fondia de nota al pie o de nota final."
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "Numberación"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "Nota al pie"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "Inxerta una ancla de nota al pie na posición del cursor y amiesta una nota al pie a la fin de la páxina."
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "Nota final"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "Inxerta una ancla de nota a la fin na posición del cursor y amiesta una nota a la fin na última parte del documentu."
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Triba"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -21093,7 +21087,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar.ui:5930
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. 4t2ES
#: sw/uiconfig/swriter/ui/notebookbar.ui:7024
@@ -21279,13 +21273,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5879
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. CDXv3
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5934
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inxertar"
#. a5p4d
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6732
@@ -21493,7 +21487,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6466
msgctxt "notebookbar_groupedbar_compact|InsertButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. ZDLUo
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4701
@@ -21724,7 +21718,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10105
msgctxt "notebookbar_groupedbar_full|InsertButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inxertar"
#. F9WAK
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5634
@@ -29658,10 +29652,9 @@ msgstr "Opciones"
#. cCW7C
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1141
-#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
-msgstr "Llingua"
+msgstr "Llingua:"
#. r3DqW
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1157
@@ -30230,204 +30223,204 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "_Paralelu"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "Continu_u"
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "_Ideal"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Axustes"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
#, fuzzy
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "Izqui_erda"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
#, fuzzy
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "D_recha"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
#, fuzzy
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "_Arriba"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
#, fuzzy
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "A_baxo"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "Escriba la cantidá d'espaciu que deseye qu'haya ente'l borde esquierdu del oxetu y el testu."
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "Escriba la cantidá d'espaciu que deseye qu'haya ente'l borde derechu del oxetu y el testu."
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "Escriba la cantidá d'espaciu que deseye qu'haya ente'l borde cimeru del oxetu y el testu."
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "Escriba la cantidá d'espaciu que deseye qu'haya ente'l borde inferior del oxetu y el testu."
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "Espaciáu"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "Primer párra_fu"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "Nel fon_du"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "_Contornu"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "Sólo fuera"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "Afai'l testu namái alredor de la contorna del oxetu y non en zones abiertes dientro del oxetu."
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Opciones"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/ast/uui/messages.po b/source/ast/uui/messages.po
index 77d87c6481c..5db3e35dd8b 100644
--- a/source/ast/uui/messages.po
+++ b/source/ast/uui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-31 13:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ast/>\n"
"Language: ast\n"
@@ -13,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: 1522251360.000000\n"
#. DLY8p
@@ -646,13 +646,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Documentu n'usu"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -661,14 +662,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~namái pa llectura"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~Abrir"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -677,73 +684,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "~Retentar guardar"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~Guardar"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "Alco~rdase de la contraseña fasta'l final de la sesión"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Alco~rdase de la contraseña"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Tresmisión non encriptada"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
-#, fuzzy
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "El ficheru nun pudo bloquiase esclusivamente pal accesu dende %PRODUCTNAME, darréu que fálten-y permisos pa crear un ficheru de bloquéu nel allugamientu d'esi ficheru."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~Namái llectura"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Documentu n'usu"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -751,31 +767,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~Namái llectura"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Abrir ~Copia"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Usuariu desconocíu"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Otres persones camudaron el documentu"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -784,19 +806,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "~Guardar de toes formes"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Documentu n'usu"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -807,7 +829,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -818,19 +840,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "~Retentar guardar"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "~Guardar como..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -838,7 +860,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -846,59 +868,116 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "La contraseña nun ye correuta. El documentu nun pue abrise."
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "La contraseña nun ye correuta. El documentu nun pue camudase."
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "La contraseña maestra ye incorreuta."
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "La contraseña ye incorreuta."
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "La confirmación de la contraseña ye distinta."
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Abrir ~Namái llectura"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
@@ -1180,10 +1259,9 @@ msgstr ""
#. jMfYF
#: uui/uiconfig/ui/sslwarndialog.ui:53
-#, fuzzy
msgctxt "sslwarndialog|view"
msgid "View Certificate"
-msgstr "Ver certificáu..."
+msgstr "Ver el certificáu"
#. rrW2e
#: uui/uiconfig/ui/unknownauthdialog.ui:8
diff --git a/source/ast/vcl/messages.po b/source/ast/vcl/messages.po
index a162950fcfb..d4008cc4429 100644
--- a/source/ast/vcl/messages.po
+++ b/source/ast/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:17+0200\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-21 01:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1542022501.000000\n"
#. k5jTM
@@ -609,7 +609,7 @@ msgstr "Imprentar namái la esbilla"
#: vcl/inc/strings.hrc:25
msgctxt "SV_RESID_STRING_NOSELECTIONPOSSIBLE"
msgid "[No selection possible]"
-msgstr ""
+msgstr "[Denguna escoyeta posible]"
#. QbQEb
#: vcl/inc/strings.hrc:27
@@ -675,7 +675,7 @@ msgstr "Ayuda"
#: vcl/inc/strings.hrc:38
msgctxt "SV_HELPTEXT_SCREENSHOT"
msgid "Take and annotate a screenshot"
-msgstr ""
+msgstr "Facer y anotar una captura de pantalla"
#. tEF9o
#: vcl/inc/strings.hrc:39
diff --git a/source/ast/wizards/messages.po b/source/ast/wizards/messages.po
index 526af40d65f..4deaa453b56 100644
--- a/source/ast/wizards/messages.po
+++ b/source/ast/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-28 21:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/ast/>\n"
"Language: ast\n"
@@ -1528,7 +1528,7 @@ msgstr "Minutes pa"
#: wizards/com/sun/star/wizards/common/strings.hrc:302
msgctxt "RID_AGENDAWIZARDDIALOG_START_82"
msgid "Discussion:"
-msgstr "Discusión:"
+msgstr "Alderique:"
#. VFngE
#: wizards/com/sun/star/wizards/common/strings.hrc:303
@@ -1556,7 +1556,6 @@ msgstr "Fecha tope:"
#. L5Eso
#: wizards/com/sun/star/wizards/common/strings.hrc:307
-#, fuzzy
msgctxt "RID_AGENDAWIZARDDIALOG_START_87"
msgid "Blue"
msgstr "Azul"
@@ -1565,7 +1564,7 @@ msgstr "Azul"
#: wizards/com/sun/star/wizards/common/strings.hrc:308
msgctxt "RID_AGENDAWIZARDDIALOG_START_88"
msgid "Classic"
-msgstr ""
+msgstr "Clásicu"
#. 7DoeB
#: wizards/com/sun/star/wizards/common/strings.hrc:309
@@ -1591,7 +1590,7 @@ msgstr "Verde"
#: wizards/com/sun/star/wizards/common/strings.hrc:312
msgctxt "RID_AGENDAWIZARDDIALOG_START_92"
msgid "Grey"
-msgstr "Gris"
+msgstr "Buxu"
#. TgsQK
#: wizards/com/sun/star/wizards/common/strings.hrc:313
diff --git a/source/ast/writerperfect/messages.po b/source/ast/writerperfect/messages.po
index 5dfbf2f35bb..03f0b068e36 100644
--- a/source/ast/writerperfect/messages.po
+++ b/source/ast/writerperfect/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-23 11:46+0100\n"
-"PO-Revision-Date: 2021-05-13 23:37+0000\n"
+"PO-Revision-Date: 2021-05-28 21:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/ast/>\n"
"Language: ast\n"
@@ -194,7 +194,7 @@ msgstr ""
#: writerperfect/uiconfig/ui/exportepub.ui:207
msgctxt "exportepub|generalft"
msgid "General"
-msgstr ""
+msgstr "Xeneral"
#. ET3pr
#: writerperfect/uiconfig/ui/exportepub.ui:244
@@ -206,7 +206,7 @@ msgstr ""
#: writerperfect/uiconfig/ui/exportepub.ui:258
msgctxt "exportepub|titleft"
msgid "Title:"
-msgstr ""
+msgstr "Títulu:"
#. 4UDMh
#: writerperfect/uiconfig/ui/exportepub.ui:272
@@ -218,13 +218,13 @@ msgstr ""
#: writerperfect/uiconfig/ui/exportepub.ui:286
msgctxt "exportepub|dateft"
msgid "Date:"
-msgstr ""
+msgstr "Data:"
#. B5NKD
#: writerperfect/uiconfig/ui/exportepub.ui:300
msgctxt "exportepub|languageft"
msgid "Language:"
-msgstr ""
+msgstr "Llingua:"
#. MRBgx
#: writerperfect/uiconfig/ui/exportepub.ui:381
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 352040cc2c5..e11be511505 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4501,80 +4501,80 @@ msgid "_Replace"
msgstr "Əvəzlə"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr ""
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr ""
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr ""
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
#, fuzzy
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "Əvəzlə"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9919,195 +9919,195 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr ""
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr ""
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr ""
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr ""
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr ""
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr ""
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr ""
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr ""
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr ""
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr ""
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr ""
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr ""
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Əvəzlə"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr ""
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr ""
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14528,124 +14528,111 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-#, fuzzy
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "%PRODUCTNAME Dialoqları"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr ""
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "və"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15636,14 +15623,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr ""
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20570,68 +20563,68 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr ""
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr ""
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr ""
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr ""
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
#, fuzzy
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Xassələr"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21157,10 +21150,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
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 0fad108c1ab..19ddd734276 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4574,14 +4574,14 @@ msgctxt ""
msgid "~Number"
msgstr ""
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4594,14 +4594,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 55b2b1de2b2..2144e5bddb3 100644
--- a/source/az/sc/messages.po
+++ b/source/az/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -16549,113 +16549,119 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr ""
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr ""
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr ""
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr ""
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr ""
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr ""
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr ""
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
#, fuzzy
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Cədvəllər"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr ""
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr ""
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr ""
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr ""
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Varsayılan"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr ""
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Şəkil Daxil et"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16663,137 +16669,137 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr ""
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr ""
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
#, fuzzy
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Pa_rol:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr ""
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Yanlış Şifrә"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr ""
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Naməlum"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr ""
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr ""
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
#, fuzzy
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "Dәyәr"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr ""
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr ""
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr ""
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr ""
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr ""
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr ""
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -16802,1605 +16808,1605 @@ msgid ""
msgstr ""
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr ""
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr ""
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr ""
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr ""
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr ""
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
#, fuzzy
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Öncəbaxış"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr ""
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr ""
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr ""
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr ""
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr ""
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr ""
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr ""
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr ""
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr ""
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr ""
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr ""
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr ""
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr ""
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr ""
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr ""
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr ""
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr ""
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr ""
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr ""
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr ""
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr ""
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr ""
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr ""
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr ""
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Etibarsız Ad"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr ""
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr ""
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr ""
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
#, fuzzy
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Qapat"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr ""
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr ""
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr ""
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr ""
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr ""
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr ""
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr ""
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr ""
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
#, fuzzy
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Şərhlər"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Cədvəllər"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr ""
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr ""
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Şəkillər"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
#, fuzzy
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE Obyektləri"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Şərhlər"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr ""
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr ""
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "Fəal"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr ""
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr ""
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr ""
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr ""
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Şərhlər"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr ""
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr ""
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr ""
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr ""
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr ""
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr ""
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr ""
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
#, fuzzy
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Xərçəng"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr ""
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr ""
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr ""
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Müəllif"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr ""
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr ""
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr ""
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr ""
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr ""
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr ""
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr ""
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr ""
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr ""
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr ""
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr ""
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr ""
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
#, fuzzy
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Mənbə"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr ""
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr ""
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr ""
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr ""
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr ""
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr ""
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr ""
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr ""
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr ""
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr ""
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr ""
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr ""
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr ""
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr ""
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr ""
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Dәyişәn"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr ""
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr ""
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr ""
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr ""
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr ""
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr ""
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr ""
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr ""
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr ""
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr ""
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr ""
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "Siqma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Dәyişәn"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Dәyişәn"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr ""
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr ""
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr ""
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr ""
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr ""
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index 51d0ca57aeb..93d45c8b7fd 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3611,9 +3611,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr ""
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3623,9 +3623,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 27e255b5be3..0c20ffc53ec 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -2954,148 +2954,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3107,55 +3107,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr ""
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3636,19 +3636,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4512,61 +4512,61 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr ""
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr ""
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr ""
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr ""
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr ""
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/az/starmath/messages.po b/source/az/starmath/messages.po
index e7ad561588e..ef7fb97c900 100644
--- a/source/az/starmath/messages.po
+++ b/source/az/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2020-11-14 08:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Azerbaijani <https://weblate.documentfoundation.org/projects/libo_ui-master/starmathmessages/az/>\n"
@@ -3300,127 +3300,140 @@ msgid "These changes will apply for all new formulas."
msgstr ""
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr ""
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr ""
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr ""
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr ""
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr ""
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr ""
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr ""
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr ""
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr ""
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 9fb32a287a1..289cc331dae 100644
--- a/source/az/svx/messages.po
+++ b/source/az/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -14032,6 +14032,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
#, fuzzy
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 997df08aa8c..4f9178786c8 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8300,1225 +8300,1231 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr ""
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr ""
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr ""
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr ""
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr ""
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr ""
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr ""
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr ""
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr ""
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr ""
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr ""
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
#, fuzzy
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "və"
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr ""
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr ""
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr ""
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr ""
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Daxil et"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr ""
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr ""
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr ""
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr ""
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
msgstr "Cədvəllər"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Sәhifә"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr ""
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr ""
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
#, fuzzy
msgctxt "ST_REG"
msgid "Section"
msgstr "bölmə"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr ""
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr ""
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
#, fuzzy
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE Obyektləri"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr ""
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr ""
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr ""
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
#, fuzzy
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Şərhlər"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr ""
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr ""
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr ""
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr ""
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr ""
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr ""
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr ""
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr ""
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr ""
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr ""
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr ""
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr ""
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr ""
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr ""
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr ""
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Daxil et"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Sil"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr ""
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr ""
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr ""
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr ""
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr ""
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr ""
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Şəkil Daxil et"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
#, fuzzy
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Şərhlər"
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr ""
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr ""
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr ""
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr ""
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
#, fuzzy
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Sәhifә"
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
#, fuzzy
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paraqraflar"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
#, fuzzy
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Şəkillər"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
#, fuzzy
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE Obyektləri"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
#, fuzzy
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Cədvəllər"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr ""
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr ""
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Sәhifә"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr ""
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr ""
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Başlıq"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr ""
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr ""
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr ""
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9527,260 +9533,260 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr ""
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr ""
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Heç biri (İmla qaydalarını yoxlama)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Əsas dilə sıfırla"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Daha çox..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr ""
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr ""
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Açar sözü XX dəfə dəyişdirildi"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr ""
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr ""
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9789,7 +9795,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9798,140 +9804,128 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr ""
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
#, fuzzy
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Daxil et"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
#, fuzzy
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Sil"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr ""
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr ""
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr ""
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Şərhlər"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr ""
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Hə"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Yox"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr ""
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11226,7 +11220,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr ""
@@ -17620,111 +17614,111 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr ""
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr ""
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr ""
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
#, fuzzy
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Simvollar"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Seç"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr ""
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr ""
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr ""
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr ""
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr ""
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr ""
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Növ"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -29975,201 +29969,201 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
#, fuzzy
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "paralel"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr ""
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr ""
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr ""
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr ""
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr ""
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr ""
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr ""
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr ""
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr ""
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr ""
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr ""
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr ""
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr ""
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr ""
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr ""
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr ""
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Seçimlər"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/az/uui/messages.po b/source/az/uui/messages.po
index 9af923242bd..f2b88f2f2bb 100644
--- a/source/az/uui/messages.po
+++ b/source/az/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-03-28 15:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -606,13 +606,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr ""
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -621,15 +622,21 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
#, fuzzy
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Aç"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -638,73 +645,83 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr ""
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "~Saxla"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr ""
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
#, fuzzy
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Parolu _yadda saxla"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr ""
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -712,31 +729,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr ""
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -745,19 +768,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr ""
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr ""
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -768,7 +791,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -779,19 +802,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr ""
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr ""
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -799,7 +822,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -807,59 +830,116 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr ""
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr ""
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr ""
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr ""
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr ""
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr ""
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 43ac1758b83..d13219631ea 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4503,79 +4503,79 @@ msgid "_Replace"
msgstr "Замяніць"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Сцерці скарачэнні"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Скарачэнні (без наступнай загалоўнай)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "Збіранне слова_ў"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "Замяніць"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9868,194 +9868,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Фармат"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "_Хангыль/Ханджа"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Ханджа (Хангыль)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Хангыль (Ханджа)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "_Хангыль/Ханджа"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "Ханджа (Хангыль)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "Хангыль (Ханджа)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Ператварэнне"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Толькі Хангыл"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Толькі Ха_нджа"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "_Ігнараваць"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "Ігнараваць усё"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Замяніць"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "Заўсёды замяняць"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Замяняць знакам"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14436,122 +14436,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Дыялогі Адкрыцця і Запісу"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "Ужываць дыялогі %PRODUCTNAME"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "Дыялогі друкавання"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Друкаванне азначае \"дакумент зменены\""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Стан дакумента"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Інтэрпрэтаваць як гады паміж "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "і "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Год (дзве лічбы)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Збіраць звесткі пра выкарыстанне і адпраўляць у The Document Foundation"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Дапамажыце палепшыць %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Пуск %PRODUCTNAME пры пуску сістэмы"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Значок Хуткапуску ў сістэмным трэі"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Хуткі Пускальнік %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15540,14 +15528,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Настаўленні абнаўлення праз Сеціва"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20450,67 +20444,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Прырост:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "Пікселі"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Затрымка:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "Аўтаматычна"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Уласцівасці"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21031,10 +21025,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
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 82578f6b444..842d130e2cf 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4556,14 +4556,14 @@ msgctxt ""
msgid "~Number"
msgstr "Лік"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4576,14 +4576,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index aaff565f07d..307b831ad58 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -17002,112 +17002,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "Стандартны фільтр..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Верхнія 10"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Пустыя"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Непустыя"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "без назвы"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Калонка %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Радок %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Аркуш"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Назва"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Дадаць аркуш у канцы"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Назваць аркуш"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Колер вушка карткі"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Прадвызначана"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Назваць аб'ект"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Уставіць відарыс"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -17116,135 +17122,135 @@ msgstr[1] ""
msgstr[2] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Засцерагаць запісы"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Зняць засцераганне запісаў"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Пароль:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Пароль (неабавязкова):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Несапраўдны пароль"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "Скончыць"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Невядома"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "Мінімум"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "Максімум"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "Значэнне"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "Крыніца"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "Складнікі"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Сістэмны"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Стандартна;Тэкст;Дата (ДМГ);Дата (МДГ);Дата (ГМД);Амерыканская;Не паказваць"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Табуляцыя"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "прабел"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17256,408 +17262,408 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "Фільтр відарысаў"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Тэкст"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Выбар аркушаў"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "Азначаныя аркушы"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Лінейка"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Гэтая лінейка кіруе аб'ектамі на замацаваных месцах."
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Перадпаказ"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Гэты аркуш паказвае, якім чынам даныя будуць выкладзены ў дакуменце."
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Від: дакумент"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Аркуш %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Клетка %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Абсяг злева"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Перадпаказ старонкі"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Абсяг у цэнтры"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Абсяг справа"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Верхні калантытул старонкі %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Ніжні калантытул старонкі %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Радок уводу"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Тут можна ўводзіць ці правіць тэкст, лікі і формулы."
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Націснута кнопка на мышцы"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Стужка формул"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "Разліковыя аркушы %PRODUCTNAME"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(толькі-чытаць)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(рэжым перадпаказу)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "Не выводзіць пустыя старонкі"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "Не ўдалося абнавіць азначаную крыніцу DDE з-за таго, магчыма, што не быў адкрыты крынічны дакмент. Адкрыйце крынічны дакумент і паспрабуйце ізноў."
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "Не ўдалося прачытаць азначаны вонкавы файл. Даныя, прывязаныя да яго зместу, не былі абноўлены."
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "Абнаўленне вонкавых спасылак."
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Абсяг утрымлівае меткі калонак"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Абсяг утрымлівае меткі радкоў"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Недапушчальнае значэнне."
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Нявызначаная формула."
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "Нявызначаныя радок і калонка."
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "Нявызначаныя назва або абсяг."
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "Нявызначаная назва або некарэктная спасылка на клетку."
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Формулы не ўтвараюць калонкі."
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Формулы не ўтвараюць радка."
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Дадаць Аўта-фармат"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Назваць Аўта-фармат"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Назва"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Сцерці Аўта-фармат"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Сапраўды сцерці складнік #?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Закрыць"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Сту"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Лют"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Сак"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "Поўнач"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Між"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Поўдзень"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "Разам"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Змяніць мацаванне"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17665,418 +17671,418 @@ msgstr "Умова 1"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Змесціва"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Аркушы"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Назвы абсягаў"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Абсягі баз даных"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Відарысы"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "Аб'екты OLE"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Заўвагі"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Далучаныя абсягі"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Рысавальныя аб'екты"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "актыўны"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "неактыўны"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "скрыты"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Актыўнае акно"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Назва сцэнарыя"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Каментарый"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "У парадку павелічэння"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "У парадку памяншэння"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Па-свойму"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Назоўны бокс"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Радок уводу"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Майстар Функцый"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Прыняць"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Нічога"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Формула"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Разгарнуць стужку формул"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Згарнуць стужку формул"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Аўтар"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Дата"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Невядомы карыстальнік"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Калонка ўстаўлена"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Радок устаўлены "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Аркуш устаўлены "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Калонка сцёрта"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Радок сцёрты"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Аркуш сцёрты"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Дыяпазон перамешчаны"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Змененае змесціва"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Змененае змесціва"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Зменена на"
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Пачатковыя"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Папраўкі адхіленыя"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Прынята"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Адхілена"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Няма ўводу"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<пуста>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Без аховы"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Без аховы паролем"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Несумяшчальны хэш"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Хэш сумяшчальны (добра)"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Увесці нанова"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Слізгальнае сярэдняе"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Экспаненцыйнае згладжванне"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Дысперсійны аналіз"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "Аднафактарны аналіз ANOVA"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "Двухфактарны аналіз ANOVA"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Групы"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Між групамі"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "Унутры груп"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Крыніца дысперсіі"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-значэнне"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F крытычнае"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
#, fuzzy
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
@@ -18084,777 +18090,777 @@ msgstr "Разам"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Карэляцыя"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "Карэляцыі"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Каварыяцыя"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "Каварыяцыі"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Апісальная статыстыка"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Сярэдняе"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Стандартная памылка"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Мода"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Медыяна"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Дысперсія"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Стандартнае адхіленне"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
#, fuzzy
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "У інтэрвале"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Мінімум"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Максімум"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Сума"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Колькасць"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Нармальнае"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Хі-квадрат"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Геаметрычнае"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Мінімум"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Максімум"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Сярэдняе"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Стандартнае адхіленне"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Медыяна"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "sigma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "nu-значэнне"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "nu-значэнне"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Сэмпліраванне"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "Рэгрэсія"
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "Рэгрэсія"
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Калонка %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Радок %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Альфа"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Зменная 1"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Зменная 2"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Аперацыі"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-значэнне"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "Крытычнае значэнне"
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Лінейная"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Лагарыфмічная"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Ступенная"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Рэгрэсійная мадэль"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Інтэрнэт"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "Карэляцыя Пірсана"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
#, fuzzy
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "Не data."
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 725ac61a2b2..4da5bf74dc5 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3609,9 +3609,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Умяшчаць на друкавальны аркуш"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3621,9 +3621,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index 7e75c8cc2c1..4d6215700ed 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -2991,148 +2991,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3144,55 +3144,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "Зашыць* шрыфты ў дакумент"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3664,19 +3664,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4534,61 +4534,61 @@ msgid "Wrap _around"
msgstr "Увесь дакумент"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "_Адкрыць толькі для чытання"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Запісваць змены"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Засцерагаць..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "Зняць засцярогу..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Параметры супольнага доступу"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/be/starmath/messages.po b/source/be/starmath/messages.po
index fd6899eae80..1a99b029d8f 100644
--- a/source/be/starmath/messages.po
+++ b/source/be/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-05-08 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3272,127 +3272,140 @@ msgid "These changes will apply for all new formulas."
msgstr ""
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "Радок загалоўка"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "Тэкст формулы"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "Мяжа"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Настаўленні друку"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Пачатковы памер"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Дапасоўваць да старонкі"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "Маштаб:"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Фармат друку"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Не ўлічваць ~~ і ' у канцах радкоў"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Закрываць дужкі аўтаматычна"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Іншыя магчымасці"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index d366a490c5f..d872d834865 100644
--- a/source/be/svx/messages.po
+++ b/source/be/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Belarusian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/be/>\n"
@@ -14017,6 +14017,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr "Перазапуск %PRODUCTNAME у бяспечным рэжыме"
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 4350e77d2b8..158585cbb9d 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8256,1211 +8256,1217 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "да старонкі"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Каардыната X:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Каардыната Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "уверсе"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Раўнаванне да паловы вышыні"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "унізе"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Верх радка"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Цэнтр вышыні радка"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Ніз радка"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "справа"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Раўнаванне ў цэнтры"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "злева"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "унутры"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "звонку"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Поўная шырыня"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Калонкі"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Шырыня межніка:"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Макс. абсяг зносак:"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Можна правіць у толькі-чытаным дакуменце"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Падзяліць"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "злучана з "
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "і "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Лічыць радкі"
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "не лічыць радкі"
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "нанова лічыць радкі з: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Яркасць: "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Чырвоны: "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Зялёны: "
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Сіні: "
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Кантраст: "
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Гама: "
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Празрыстасць: "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Інвэртаваць"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "не інвертаваць"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Рэжым графікі: "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Стандартна"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Шэрыя адценні"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Чорна-белае"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Вадзяны знак"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Паварот"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Без рашоткі"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Рашотка (толькі для радкоў)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Рашотка (для радкоў і знакаў)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Следаваць плыні тэксту"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Не следаваць плыні тэксту"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Яднаць межы"
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Не яднаць межы"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Табліца"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Старонка"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Рысунак"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Кантрольнік"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "Раздзел"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Закладка"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Графіка"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Аб'ект OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Загалоўкі"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Пазначанае"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Зноска"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Напамінак"
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Заўвага"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Паўтарыць пошук"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Элемент паказальніка"
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Формула табліцы"
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Няправільная формула табліцы"
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Наступная табліца"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Наступная старонка"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Наступны рысунак"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Наступны кантрольнік"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Наступны раздзел"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Наступная закладка"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Наступны відарыс"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Наступны аб'ект OLE"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Наступны загаловак"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Наступнае пазначэнне"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Наступная зноска"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Наступны напамін"
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Наступная заўвага"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Працягваць пошук наперад"
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Наступны элемент паказальніка"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Папярэдняя табліца"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Папярэдняя старонка"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Папярэдні рысунак"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Папярэдні кантрольнік"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Папярэдні раздзел"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Папярэдняя закладка"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Папярэдні відарыс"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Папярэдні аб'ект OLE"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Папярэдні загаловак"
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Папярэдняе пазначэнне"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Папярэдняя зноска"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Папярэдні напамін"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Папярэдні каментарый"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Працягваць пошук назад"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Папярэдні элемент паказальніка"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Папярэдняя формула табліцы"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Наступная формула табліцы"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Папярэдняя хібная формула табліцы"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Наступная хібная формула табліцы"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Устаўлена"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Сцёрта"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Адфарматавана"
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Табліца зменена"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Ужыты стылі абзацаў"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Фармат абзаца зменены"
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Радок устаўлены"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Радок сцёрты"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Клетка ўстаўлена"
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Клетка сцёрта"
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Зноска затэкставая:"
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Зноска: "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s+клік, каб адкрыць магчымасці разумных метак"
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Верхні калантытул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Верхні калантытул першай старонкі (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Верхні калантытул левай старонкі (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Верхні калантытул правай старонкі (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Ніжні калантытул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Ніжні калантытул першай старонкі (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Ніжні калантытул левай старонкі (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Ніжні калантытул правай старонкі (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Сцерці верхні калантытул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Фарматаваць верхні калантытул..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Сцерці ніжні калантытул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Фарматаваць ніжні калантытул..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Немагчыма адкрыць файл відарыса"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Немагчыма прачытаць файл відарыса"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Нявызначаны фармат відарыса"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Не падтрымліваецца гэта версія графічнага файла"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Фільтр відарысаў не знойдзены"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Недастаткова памяці, каб уставіць відарыс."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Уставіць відарыс"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Заўвага: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Устаўленне"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Сціранне"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Аўта-карэкцыя"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Змены табліцы"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ужыты стылі абзацаў"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Старонка "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Старонка %1 з %2"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Старонка %1 з %2 (старонка %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Відарыс"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Аб'ект OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Рамка"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Табліца"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Радок табліцы"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Клетка табліцы"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Старонка"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Калантытул верхні"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Калантытул ніжні"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Дакумент HTML %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Загаловак"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Межнік"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Узровень "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Не ўдалося знайсці файл \"%1\" на сцежцы \"%2\"."
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Свой індэкс"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Няма>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Няма>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Нумар раздзела"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Элемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Крок табуляцыі"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Тэкст"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Нумар старонкі"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Інфармацыя аб раздзеле"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Пачатак гіперспасылкі"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Канец гіперспасылкі"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Складнік бібліяграфіі: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Стыль знакаў: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Тэкст структуры"
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Націсніце Ctrl+Alt+A для дадатковых аперацый"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Націсніце левую або правую стрэлку, каб выбраць элемент структуры"
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Націсніце Ctrl+Alt+B для вяртання фокуса к цяперашняму кантрольніку структуры"
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Файл выбранага для алфавітнага індэкса (*.sdi)"
@@ -9469,259 +9475,259 @@ msgstr "Файл выбранага для алфавітнага індэкса
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Базавая лінія зверху"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Базавая лінія знізу"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Базавая лінія ў цэнтры"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Уставіць аб'ект"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Правіць аб'ект"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Шаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Межы"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Фон"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Стыль абзацу: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Недазволеныя нумары для гэтай старонкі. Цотныя нумары ўжываюцца на левых старонках, няцотныя - на правых."
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Майстар-дакумент %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "Далучэнне да файла знішчыць змесціва гэтага раздзелу. Ці працягваць?"
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Уведзены няправільны пароль."
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Пароль не зададзены."
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Расстаноўка пераносаў скончана"
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Няма (без праверкі правапісу)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Да прадвызначанай мовы"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Яшчэ..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ігнараваць"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Тлумачэнні..."
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Праверка спецыяльных абсягаў адключана. Праверыць усё роўна?"
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Не ўдалося аб'яднаць дакументы."
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Немагчыма адчытаць зыходны тэкст."
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "У пункце 'Прылады/Настаўленні/%1/Друкаваць' не вызначаны прынтар для факсаў."
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Дакумент HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Тэкставы дакумент"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Крыніца не ўказана."
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Узровень "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Структура "
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Правіць зноску ці затэкставую зноску"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Шуканае заменена XX разоў."
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Радок "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Калонка "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Экспартаваць зыходны тэкст..."
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Экспартаваць копію крыніцы..."
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Працягваць"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адсыланне: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Паспяхова адаслана"
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Не ўдалося адаслаць"
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Тэкставая формула"
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9730,7 +9736,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Класіфікацыя дакумента зменена, таму што узровень класіфікацыі абзаца вышэй"
@@ -9739,137 +9745,125 @@ msgstr "Класіфікацыя дакумента зменена, таму ш
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Сапраўдна"
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Нядзейсна"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Несапраўдны подпіс"
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Падпісана"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Подпіс абзаца"
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Візітныя карткі"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Уставіць"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Сцерці"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрыбуты"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Пошук тэксту"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтэрнатыўны элемент"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-ы ключ"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-і ключ"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Заўвагі"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Адрозніваць рэгістр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Толькі слова"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Так"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Не"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Свой"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11149,7 +11143,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr ""
@@ -17477,109 +17471,109 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr ""
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr ""
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Аўтаматычна"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Знак"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Выбраць..."
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr ""
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "Нумараванне"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "Зноска"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr ""
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "Зноска затэкставая"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr ""
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Тып"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -29727,200 +29721,200 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "Паралельна"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "Наскрозь"
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "Аптымальна"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Настаўленні"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "Злева:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "Справа:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "Зверху:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "Знізу:"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr ""
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr ""
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr ""
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr ""
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "Інтэрвал"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "Першы абзац"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "У фоне"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "Контур"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "Толькі па-за абрысам"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr ""
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Настаўленні"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/be/uui/messages.po b/source/be/uui/messages.po
index 6558ac7e41d..50c098905eb 100644
--- a/source/be/uui/messages.po
+++ b/source/be/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-03-28 15:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -642,13 +642,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Дакумент зараз заняты"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -657,14 +658,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толькі для чытання"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "Адкрыць"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -673,72 +680,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "Паўтарыць спробу запісу"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "Запісаць"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "Памятаць пароль да заканчэння сеанса"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "Памятаць пароль"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Нешыфраваныя струмяні*"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "Немагчыма заблакаваць дакумент"
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "%PRODUCTNAME не змог стварыць блакавальны файл для манапольнага доступу, бо там, дзе знаходзіцца файл, няма дазволу на стварэнне файла, або не хапае месца на дыску."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толькі для чытання"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Дакумент зараз заняты"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -746,31 +763,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толь~кі для чытання"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Адкрыць копію"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Невядомы карыстальнік"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Дакумент зменены іншымі"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -779,19 +802,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "Запісаць абавязкова"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Дакумент зараз заняты"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -802,7 +825,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -813,19 +836,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "Паўтарыць спробу запісу"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "Запісаць як..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -835,7 +858,7 @@ msgstr ""
"Для замены наяўнага файла, выберыце Замяніць, або дайце новую назву."
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -845,59 +868,116 @@ msgstr ""
"Дайце іншую назву."
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Дайце іншую назву файлу!"
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Няправільны пароль. Немагчыма адкрыць дакумент."
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Няправільны пароль. Немагчыма змяніць дакумент."
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Няправільны майстар-пароль."
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Няправільны пароль."
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Не супадаюць пароль і ягоны паўтор."
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "Файл блакавання пашкоджаны"
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
-msgstr "Файл блакавання пашкоджаны і, імаверна, пусты. Адкрыццё дакумента толькі для чытання і паўторнае закрыццё сцірае пашкоджаны блакавальны файл."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Адкрыць толькі для чытання"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index d08f0b1211a..74ec9050fb4 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-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-01 15:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:14+0200\n"
+"PO-Revision-Date: 2021-05-26 11: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"
@@ -661,7 +661,7 @@ msgstr "Стилове"
#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
-msgstr ""
+msgstr "Колоди в страничната лента"
#. hFEBv
#: cui/inc/strings.hrc:119
@@ -4505,79 +4505,79 @@ msgid "_Replace"
msgstr "_Замяна"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Изтриване на съкращения"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr "Изброява съкращенията, които не подлежат на автоматично коригиране."
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Съкращения (продължаване без главна буква)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr "Въведете думата или съкращението с две начални главни букви или начална малка буква, за което не желаете %PRODUCTNAME да извършва замяна с една начална главна буква. Например, въведете „PC“, за да забраните на %PRODUCTNAME да замества „PC“ с „Pc“, или „eBook“, за да предотвратите заместване с „Ebook“."
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "_Автовключване"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr "Автоматично добавяне към списъка с изключения, ако автокорекцията бъде незабавно отменена."
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr "Добавя автокоригирани думи с две начални главни букви към списъка с изключения, ако автокорекцията бъде незабавно отменена. Тази функция работи само когато е отметнато „Коригиране на ДВе ГЛавни БУкви“ в колоната [В] на раздела „Настройки“ в този диалог."
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr "Нови думи с две главни букви или малка буква в началото"
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "_Замяна"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr "Изтриване на думи с две главни букви или малка буква в началото"
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr "Изброява думи или съкращения, започващи с две главни букви, които не подлежат на автоматично коригиране. Всички думи, започващи с две главни букви, са изброени тук."
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr "Думи с ДВе ГЛавни БУкви или мАЛКА бУКВА в началото"
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr "Задайте съкращенията или комбинациите от букви, за които не желаете да бъдат автоматично коригирани от %PRODUCTNAME."
@@ -9870,194 +9870,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Формат"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "Хангъл/ханджа"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr "Оригиналните знаци се заместват с предложените."
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Ханджа (Ха_нгул)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr "Частта на хангъл ще бъде показана в скоби след тази на ханджа."
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Ха_нгул (Ханджа)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr "Частта на ханджа ще бъде показана в скоби след тази на хангъл."
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr "Ханджа отгоре"
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr "Частта на хангъл ще бъде показана като транслитерация над тази на ханджа."
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr "Ханджа отдолу"
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr "Частта на хангъл ще бъде показана като транслитерация под тази на ханджа."
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr "Хангъл отгоре"
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr "Частта на ханджа ще бъде показана като транслитерация над тази на хангъл."
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr "Хангъл отдолу"
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr "Частта на ханджа ще бъде показана като транслитерация под тази на хангъл."
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "Хангъл/ханджа"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr "Оригиналните знаци се заместват с предложените."
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "Ханджа (Ха_нгул)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr "Частта на хангъл ще бъде показана в скоби след тази на ханджа."
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "Ха_нгул (Ханджа)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr "Частта на ханджа ще бъде показана в скоби след тази на хангъл."
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Преобразуване"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Само ха_нгул"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr "Отметнете, за да се преобразува само хангъл. Ханджа няма да се преобразува."
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Само ханд_жа"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr "Отметнете, за да се преобразува само ханджа. Хангъл няма да се преобразува."
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "Игнориране"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr "Няма да бъдат внесени промени в текущата селекция. Следващата дума или знак ще бъде избран за конвертиране."
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "Игнориране - винаги"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr "Текущата селекция няма да бъде променена и при всяко срещане на същия текст той ще бъде прескачан автоматично."
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Замяна"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr "Заменя селекцията с предложените знаци или дума според настройките за формат."
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "Замяна - всички"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr "Заменя селекцията с предложените знаци или дума според настройките за формат. При всяко срещане на същия текст той ще бъде заместван автоматично."
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Замяна знак по знак"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr "Отметнете за преминаване знак по знак през избрания текст. Ако не е отметнато, се заменят цели думи."
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr "Настройки..."
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr "Отваря диалоговия прозорец Настройки за хангъл/ханджа dialog."
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr "Преобразува избрания текст на корейски от хангъл към ханджа или обратно."
@@ -14438,122 +14438,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Диалогови прозорци за отваряне/записване"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "_Диалогови прозорци на %PRODUCTNAME"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "Диалогови прозорци за печат"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Печатането установява състояние „променен документ“"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "Определя дали отпечатването на документ се счита за промяна."
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Състояние на документа"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Интерпретиране като години между "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Двуцифрени години"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Събиране и изпращане на данни за употребата към TDF"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
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:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Изпращане на доклади за сривове към The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Помогнете за подобряване на %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Зареждане на %PRODUCTNAME при стартиране на системата"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Икона за бързо стартиране"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Подразбирани приложения на Windows"
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr "Проверка за подразбираните файлови асоциации при стартиране"
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Файлови асоциации на %PRODUCTNAME"
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "Задава общите настройки за %PRODUCTNAME."
@@ -15542,14 +15530,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "Потребителски агент"
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Настройки за обновяване по Интернет"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr "Задава някои настройки за автоматичното откриване и изтегляне на обновявания за %PRODUCTNAME през Интернет."
@@ -20452,67 +20446,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr "Възпроизвежда анимационния ефект непрекъснато. За да зададете броя повторения на ефекта, изчистете отметката от това поле и въведете брой в полето Непрекъсната."
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr "Въведете желания брой на повторенията за анимационния ефект."
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Стъпка:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "_Пиксели"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr "Определя големината на стъпката в пиксели."
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr "Въведете броя стъпки, с който да се превърти текстът."
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Закъснение:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_Автоматично"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr "%PRODUCTNAME автоматично определя времето между повторенията на ефекта. За да зададете закъснението ръчно, изчистете отметката от това поле и въведете стойност в текстовото поле Автоматично."
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr "Въведете продължителността на изчакването преди повтарянето на ефекта."
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Свойства"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr "Добавя ефект - анимация към текста в избрания графичен обект."
@@ -21033,11 +21027,11 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "Показване на съвети при стартиране"
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
-msgstr "За да разрешите диалога отново, изберете „Инструменти > Настройки > Общи“."
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
+msgstr ""
#. GALqP
#: cui/uiconfig/ui/tipofthedaydialog.ui:43
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index a38a8ea7879..41f652db669 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/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-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-08 18:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-31 13:28+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"
"Language: bg\n"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr "<variable id=\"functexample\">Пример:</variable>"
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -8015,7 +8060,7 @@ msgctxt ""
"par_id3147228\n"
"help.text"
msgid "<emph>buttons</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>buttons</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
-msgstr ""
+msgstr "<emph>buttons</emph>: произволен израз от тип цяло число, който задава типа на диалоговия прозорец, броя и вида на показваните бутони и вида на иконата. <emph>buttons</emph> представлява комбинация от битови маски, т.е. от елементи, които могат да бъдат включени чрез прибавяне на съответните им стойности:"
#. xuEUm
#: 03010101.xhp
@@ -8627,7 +8672,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "If <literal>xpostwips</literal> and <literal>ypostwips</literal> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
-msgstr ""
+msgstr "Ако <literal>xpostwips</literal> и <literal>ypostwips</literal> са пропуснати, диалоговият прозорец се центрира върху екрана. Позицията се задава в <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">туипове</link>."
#. Mh8Z6
#: 03010201.xhp
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr "Някои специфични за DOS функции за файлове и директории вече не се предлагат в %PRODUCTNAME или функционалността им е ограничена. Например, не се предлага поддръжка за функциите <literal>ChDir</literal>, <literal>ChDrive</literal> и <literal>CurDir</literal>. Някои специфични за DOS свойства вече не се използват във функциите, които очакват файлови свойства като параметри (например, за да се отличават скрити и системни файлове). Така се осигурява възможно най-високо ниво на платформена независимост за %PRODUCTNAME. Затова тази функционалност ще бъде премахната в бъдещо издание."
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "Сменя текущото устройство."
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
#. ncuAv
#: 03020402.xhp
msgctxt ""
@@ -13010,7 +13055,7 @@ msgctxt ""
"hd_id381619878817271\n"
"help.text"
msgid "<variable id=\"DateSerial_H1\"><link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function\">DateSerial Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"DateSerial_H1\"><link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function\">Функция DateSerial</link></variable>"
#. sh2RC
#: 03030101.xhp
@@ -13145,7 +13190,7 @@ msgctxt ""
"hd_id3156344\n"
"help.text"
msgid "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">DateValue Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"DateValue_H1\"><link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">Функция DateValue</link></variable>"
#. K3nhZ
#: 03030102.xhp
@@ -13460,7 +13505,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "<variable id=\"WeekDay_H1\"><link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function\">WeekDay Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"WeekDay_H1\"><link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function\">Функция WeekDay</link></variable>"
#. knGHF
#: 03030105.xhp
@@ -13469,7 +13514,7 @@ msgctxt ""
"par_id3146795\n"
"help.text"
msgid "This function returns the number corresponding to the weekday represented by a serial date number that is generated by the <literal>DateSerial</literal> or the <literal>DateValue</literal> functions."
-msgstr ""
+msgstr "Приема серийно число, генерирано от функцията <literal>DateSerial</literal> или <literal>DateValue</literal> и връща число, съответстващо на деня от седмицата."
#. mDEaF
#: 03030105.xhp
@@ -13478,7 +13523,7 @@ msgctxt ""
"par_id91620239579003\n"
"help.text"
msgid "This help page describes the <literal>WeekDay</literal> function used in Basic scripts. If you are interested in the <literal>WeekDay</literal> function used in %PRODUCTNAME Calc, refer to <link href=\"text/scalc/01/func_weekday.xhp\" name=\"WeekDay_Calc Function\">this help page</link>."
-msgstr ""
+msgstr "Тази страница описва функцията <literal>WeekDay</literal>, използвана в скриптове на Basic. Ако ви интересува функцията <literal>WeekDay</literal>, използвана в %PRODUCTNAME Calc, вижте <link href=\"text/scalc/01/func_weekday.xhp\" name=\"WeekDay_Calc Function\">тази страница от помощта</link>."
#. Gq6UR
#: 03030105.xhp
@@ -13487,7 +13532,7 @@ msgctxt ""
"par_id3149655\n"
"help.text"
msgid "WeekDay (SerialDate, [FirstDayOfWeek])"
-msgstr ""
+msgstr "WeekDay (SerialDate, [FirstDayOfWeek])"
#. XtUpe
#: 03030105.xhp
@@ -13496,7 +13541,7 @@ msgctxt ""
"par_id3151042\n"
"help.text"
msgid "<emph>SerialDate:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week."
-msgstr ""
+msgstr "<emph>SerialDate:</emph> числов израз – серийно число на дата, за която искате да бъде изчислен денят от седмицата."
#. NAuVs
#: 03030105.xhp
@@ -13505,7 +13550,7 @@ msgctxt ""
"par_id351619718411921\n"
"help.text"
msgid "<emph>FirstDayOfWeek:</emph> Integer value indicating which weekday should be considered as the first day of the week. The default value is <emph>0</emph>, meaning that the system locale settings are used to determine the first day of the week."
-msgstr ""
+msgstr "<emph>FirstDayOfWeek:</emph> целочислена стойност, указваща кой ден от седмицата се смята за първи. Подразбираната стойност е <emph>0</emph>, която означава, че за определяне на първия ден от седмицата се използват системните настройки за локал."
#. rEWdW
#: 03030105.xhp
@@ -13514,7 +13559,7 @@ msgctxt ""
"par_id411619718769819\n"
"help.text"
msgid "The parameter <emph>FirstDayOfWeek</emph> accepts values ranging from 0 to 7. The table below describes the meaning of each possible value:"
-msgstr ""
+msgstr "Параметърът <emph>FirstDayOfWeek</emph> приема стойности от 0 до 7. В таблицата по-долу са описани значенията на допустимите стойности."
#. mXgMu
#: 03030105.xhp
@@ -13523,7 +13568,7 @@ msgctxt ""
"par_id651619719561092\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#. PGZPg
#: 03030105.xhp
@@ -13532,7 +13577,7 @@ msgctxt ""
"par_id251619718816238\n"
"help.text"
msgid "VBA Constant"
-msgstr ""
+msgstr "Константа на VBA"
#. NHbqP
#: 03030105.xhp
@@ -13541,7 +13586,7 @@ msgctxt ""
"par_id711619718816238\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Описание"
#. zLssD
#: 03030105.xhp
@@ -13550,7 +13595,7 @@ msgctxt ""
"par_id521619718818972\n"
"help.text"
msgid "Use system locale settings"
-msgstr ""
+msgstr "Използват се системните настройки за локал."
#. EWo2z
#: 03030105.xhp
@@ -13559,7 +13604,7 @@ msgctxt ""
"par_id581619719174897\n"
"help.text"
msgid "Sunday (default)"
-msgstr ""
+msgstr "Неделя (по подразбиране)"
#. BHVEx
#: 03030105.xhp
@@ -13568,7 +13613,7 @@ msgctxt ""
"par_id581619719173258\n"
"help.text"
msgid "Monday"
-msgstr ""
+msgstr "Понеделник"
#. TFvid
#: 03030105.xhp
@@ -13577,7 +13622,7 @@ msgctxt ""
"par_id581619719174633\n"
"help.text"
msgid "Tuesday"
-msgstr ""
+msgstr "Вторник"
#. fiXHk
#: 03030105.xhp
@@ -13586,7 +13631,7 @@ msgctxt ""
"par_id581619719173641\n"
"help.text"
msgid "Wednesday"
-msgstr ""
+msgstr "Сряда"
#. A9CRq
#: 03030105.xhp
@@ -13595,7 +13640,7 @@ msgctxt ""
"par_id581619719170014\n"
"help.text"
msgid "Thursday"
-msgstr ""
+msgstr "Четвъртък"
#. sBtM4
#: 03030105.xhp
@@ -13604,7 +13649,7 @@ msgctxt ""
"par_id581619719174271\n"
"help.text"
msgid "Friday"
-msgstr ""
+msgstr "Петък"
#. bXcCx
#: 03030105.xhp
@@ -13613,7 +13658,7 @@ msgctxt ""
"par_id581619719176055\n"
"help.text"
msgid "Saturday"
-msgstr ""
+msgstr "Събота"
#. BcGEp
#: 03030105.xhp
@@ -13622,7 +13667,7 @@ msgctxt ""
"par_id451619720094202\n"
"help.text"
msgid "The VBA constants listed above are only available if VBA support has been enabled. For more information, read the <link href=\"text/sbasic/shared/03103350.xhp\" name=\"VBASupport_Statement\">VBASupport Statement</link> help page."
-msgstr ""
+msgstr "Изброените по-горе константи на VBA са достъпни само ако е разрешена поддръжката за VBA. За повече информация прочетете страницата <link href=\"text/sbasic/shared/03103350.xhp\" name=\"VBASupport_Statement\">Оператор VBASupport</link> от помощта."
#. CPXVo
#: 03030105.xhp
@@ -13640,7 +13685,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "The following example uses the function <literal>Now()</literal> to determine the current weekday."
-msgstr ""
+msgstr "В следващия пример е използвана функцията <literal>Now()</literal>, за да се определи текущият ден от седмицата."
#. bR8LQ
#: 03030105.xhp
@@ -13658,7 +13703,7 @@ msgctxt ""
"par_id3151117\n"
"help.text"
msgid "Case 1: sDay=\"Sunday\""
-msgstr ""
+msgstr "Case 1: sDay=\"Неделя\""
#. 5bXzA
#: 03030105.xhp
@@ -13667,7 +13712,7 @@ msgctxt ""
"par_id3153952\n"
"help.text"
msgid "Case 2: sDay=\"Monday\""
-msgstr ""
+msgstr "Case 2: sDay=\"Понеделник\""
#. MBZyU
#: 03030105.xhp
@@ -13676,7 +13721,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "Case 3: sDay=\"Tuesday\""
-msgstr ""
+msgstr "Case 3: sDay=\"Вторник\""
#. Fzn6r
#: 03030105.xhp
@@ -13685,7 +13730,7 @@ msgctxt ""
"par_id3154942\n"
"help.text"
msgid "Case 4: sDay=\"Wednesday\""
-msgstr ""
+msgstr "Case 4: sDay=\"Сряда\""
#. iRjNz
#: 03030105.xhp
@@ -13694,7 +13739,7 @@ msgctxt ""
"par_id3155416\n"
"help.text"
msgid "Case 5: sDay=\"Thursday\""
-msgstr ""
+msgstr "Case 5: sDay=\"Четвъртък\""
#. 8Eaao
#: 03030105.xhp
@@ -13703,7 +13748,7 @@ msgctxt ""
"par_id3154015\n"
"help.text"
msgid "Case 6: sDay=\"Friday\""
-msgstr ""
+msgstr "Case 6: sDay=\"Петък\""
#. BGYpJ
#: 03030105.xhp
@@ -13712,7 +13757,7 @@ msgctxt ""
"par_id3153707\n"
"help.text"
msgid "Case 7: sDay=\"Saturday\""
-msgstr ""
+msgstr "Case 7: sDay=\"Събота\""
#. JPyAn
#: 03030105.xhp
@@ -13730,7 +13775,7 @@ msgctxt ""
"par_id891619721286262\n"
"help.text"
msgid "The following example illustrates the use <emph>FirstDayOfWeek</emph> parameter, assuming that Tuesday is the first day of the week."
-msgstr ""
+msgstr "Следващият пример илюстрира употребата на параметъра <emph>FirstDayOfWeek</emph>, като се приема, че вторник е първият ден от седмицата."
#. pRD7w
#: 03030105.xhp
@@ -13739,7 +13784,7 @@ msgctxt ""
"bas_id791619721724107\n"
"help.text"
msgid "' The date January 1st 2021 was a Friday"
-msgstr ""
+msgstr "' Денят 1 януари 2021 г. е бил петък."
#. rnGiH
#: 03030105.xhp
@@ -13748,7 +13793,7 @@ msgctxt ""
"bas_id991619721724568\n"
"help.text"
msgid "' Prints \"6\" assuming Sunday is the first day of the week"
-msgstr ""
+msgstr "' Отпечатва \"6\", ако неделя е първият ден от седмицата."
#. mFYMA
#: 03030105.xhp
@@ -13757,7 +13802,7 @@ msgctxt ""
"bas_id31619721725024\n"
"help.text"
msgid "' Prints \"4\" assuming Tuesday is the first day of the week"
-msgstr ""
+msgstr "' Отпечатва \"4\", ако вторник е първият ден от седмицата."
#. EhPmt
#: 03030106.xhp
@@ -14423,7 +14468,7 @@ msgctxt ""
"par_idN106C1\n"
"help.text"
msgid "<emph>number</emph> - A numerical expression specifying how many times the <literal>interval</literal> value will be added when positive or subtracted when negative."
-msgstr ""
+msgstr "<emph>number</emph> – числов израз, задаващ колко пъти да се добави (ако е положителен) или извади (ако е отрицателен) стойността <literal>interval</literal>."
#. 5LaBf
#: 03030110.xhp
@@ -15800,7 +15845,7 @@ msgctxt ""
"hd_id641619720735711\n"
"help.text"
msgid "<variable id=\"Now_H1\"><link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function\">Now Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"Now_H1\"><link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function\">Функция Now</link></variable>"
#. TdbJF
#: 03030203.xhp
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/03.po b/source/bg/helpcontent2/source/text/sbasic/shared/03.po
index c3e55654328..d7160e2307f 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bg/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-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-08 18:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-31 13:28+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/bg/>\n"
"Language: bg\n"
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "(Un)Available since release"
-msgstr ""
+msgstr "(Не) налично от издание"
#. CeSww
#: avail_release.xhp
@@ -1256,7 +1256,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 "Съхранява съдържанието на масив с две колони в обект от тип <link href=\"text/sbasic/shared/03/sf_dictionary.xhp\" name=\"dictionary\">ScriptForge.Dictionary</link>. <br/>Ключът се извлича от първата колона, а елементът – от втората."
#. CMssn
#: sf_array.xhp
@@ -1265,7 +1265,7 @@ msgctxt ""
"par_id561582557214489\n"
"help.text"
msgid "<emph>Array_1D</emph> : the first column must contain exclusively strings with a length > 0, in any order."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: първата колона трябва да съдържа само низове с ненулева дължина, в произволен ред."
#. fngum
#: sf_array.xhp
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,22 +10339,31 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
-#. yQzKr
+#. vFJRL
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"hd_id201586594659135\n"
+"par_id771621035263403\n"
"help.text"
-msgid "Service invocation"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
msgstr ""
-#. 5YFk5
+#. VAaLU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id211621035276160\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
msgstr ""
#. T8o7G
@@ -10321,6 +10375,15 @@ msgctxt ""
msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
#. HABsh
#: sf_exception.xhp
msgctxt ""
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgstr ""
+
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
msgstr ""
-#. A9gBj
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
msgstr ""
-#. DBbfU
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index b216b22d963..3e94f8b525c 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-07 05:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-26 15: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"
"Language: bg\n"
@@ -20546,6 +20546,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>Текст</emph> е текстът, от който да бъдат премахнати всички непечатаеми знаци."
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20816,14 +20825,14 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>ДробниПозиции</emph> е незадължителен брой на дробните позиции."
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "<item type=\"input\">=DOLLAR(255)</item> връща „255,00 лв.“."
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
#. 2beTG
#: 04060110.xhp
@@ -21084,7 +21093,7 @@ msgctxt ""
"par_id371617286698199\n"
"help.text"
msgid "<item type=\"input\">=FIXED(12345.789;8/5)</item> returns 12,345.8 as a text string."
-msgstr ""
+msgstr "<item type=\"input\">=FIXED(12345,789;8/5)</item> връща 12 345,8 като текстов низ."
#. zxsGX
#: 04060110.xhp
@@ -27152,806 +27161,14 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> връща 0064."
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "<bookmark_value>CONVERT, функция</bookmark_value>"
-
-#. NNzM9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"help.text"
-msgid "CONVERT"
-msgstr "CONVERT"
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Преобразува стойност от една мерна единица в друга.</ahelp> Можете да въведете мерните единици директно като текст в кавички или като обръщения. Ако въведете мерните единици в клетки, те трябва да съответстват точно на следващия списък. Регистърът на буквите е от значение. Например, за да въведете в клетка малка буква l (за литър), въведете апостроф ('), непосредствено последван от l."
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr "Свойство"
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr "Единици"
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr "Тегло"
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr "Дължина"
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr "Време"
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr "Налягане"
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr "Сила"
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr "Енергия"
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "Мощност"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr "<emph>W</emph>, <emph>w</emph>, HP, PS"
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr "Магнетизъм"
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr "<emph>T</emph>, <emph>ga</emph>"
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr "Температура"
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr "Обем на течност"
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr "Площ"
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr "Скорост"
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr "Информация"
-
-#. UTUhA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr "<emph>bit</emph>, <emph>byte</emph>"
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr "Пред мерните единици, отбелязани с <emph>получер</emph> шрифт, могат да бъдат долепвани префикси от долния списък:"
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr "Префикс"
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr "Множител"
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr "Y (йота)"
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr "10^24"
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr "Z (сета)"
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr "10^21"
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr "E (екса)"
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr "10^18"
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr "P (пета)"
-
-#. HnJBh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr "10^15"
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr "T (тера)"
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr "10^12"
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr "G (гига)"
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr "10^9"
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr "M (мега)"
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr "10^6"
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr "k (кило)"
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr "10^3"
-
-#. G2FDE
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"par_id3149498\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "h (hecto)"
-msgstr "h (хекто)"
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr "10^2"
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr "e (дека)"
-
-#. iiAPq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr "10^1"
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr "d (деци)"
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr "10^-1"
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr "c (санти)"
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr "10^-2"
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr "m (мили)"
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr "10^-3"
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr "u (микро)"
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr "10^-6"
-
-#. GD6Gw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr "n (нано)"
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr "10^-9"
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr "p (пико)"
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr "10^-12"
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr "f (фемто)"
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr "10^-15"
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr "a (ато)"
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr "10^-18"
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr "z (септо)"
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr "10^-21"
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr "y (йокто)"
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr "10^-24"
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "Пред единиците за количество информация „бит“ и „байт“ могат да се поставят и следните префикси по стандарта IEC 60027-2 / IEEE 1541:"
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ki киби 1024"
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "Mi меби 1048576"
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "Gi гиби 1073741824"
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "Ti теби 1099511627776"
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "Pi пеби 1125899906842620"
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "Ei ексби 1152921504606850000"
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "Zi зеби 1180591620717410000000"
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "Yi йоби 1208925819614630000000000"
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr "CONVERT(Число; \"ОтЕдиница\"; \"КъмЕдиница\")"
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>Число:</emph> числото за преобразуване."
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>ОтЕдиница</emph> е единицата, от която се преобразува числото."
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>КъмЕдиница</emph> е единицата, към която се преобразува числото."
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\")</item> връща 10,14 (закръглено до два знака след запетаята). 10 HP са равни на 10,14 PS."
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
-msgstr "<item type=\"input\">=CONVERT(10;\"km\";\"mi\")</item> връща 6,21 (закръглено до два знака след запетаята). 10 километра са равни на 6,21 мили. Буквата k е разрешеният знак префикс за множител 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
+msgstr ""
#. G7UNe
#: 04060116.xhp
@@ -44484,7 +43701,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"units of measure\">units of measure</link>."
-msgstr ""
+msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Определя оптималната височина за избраните редове.</ahelp></variable> Оптималната височина зависи от размера на най-едрите знаци в реда. Можете да използвате различни <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"units of measure\">мерни единици</link>."
#. hCkvc
#: 05030200.xhp
@@ -49544,14 +48761,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "Автофилтър"
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Автофилтър\">Автофилтър</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
#. cTu3x
#: 12040100.xhp
@@ -49562,6 +48779,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">Автоматично филтрира избраната област от клетки и създава един ред със списъчни полета, в които можете да посочвате кои елементи желаете да се виждат.</ahelp>"
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55592,6 +55043,33 @@ msgctxt ""
msgid "Examples"
msgstr "Примери"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57527,6 +57005,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58625,14 +59849,23 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> връща серийния номер 37346. Форматиран като дата, той е 31.3.2002."
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
-msgstr "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> също работи. Ако датата е подадена като низ, той трябва да бъде във формата на ISO."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
+msgstr ""
#. BNTm6
#: func_error_type.xhp
@@ -63863,14 +65096,14 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr "<emph>разделител</emph> е текстов низ, може да бъде и диапазон."
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
-msgstr "<emph>пропускане_празни</emph> е логически аргумент (TRUE или FALSE, 1 или 0). Когато е TRUE, празните низове се игнорират."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
+msgstr ""
#. JoYks
#: func_textjoin.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 830deb6b896..d3fd9aae21f 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-01 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356865.000000\n"
@@ -3023,14 +3023,14 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "Поставете курсора в празна клетка, например J14, и изберете <emph>Вмъкване - Функция</emph>."
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
-msgstr "Изберете функцията AVERAGE. Изберете с мишката всичките случайни числа. Ако не виждате цялата област, защото помощникът за функции я закрива, можете временно да свиете диалога с иконата <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Свиване</item></link>."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgstr ""
#. YEqsh
#: cellstyle_conditional.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index b823ecbc42f..404a382da91 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-07 05:37+0000\n"
+"PO-Revision-Date: 2021-05-27 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562356072.000000\n"
#. 3B8ZN
@@ -131,7 +131,7 @@ msgctxt ""
"par_id3150264\n"
"help.text"
msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"measurement unit\">measurement unit</link>, for example, <emph>1 cm or 5 mm, 12 pt or 2\"</emph>."
-msgstr ""
+msgstr "Ако броячното поле задава числови стойности, можете да укажете <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"measurement unit\">мерна единица</link>, например <emph>1 см или 5 мм, 12 пкт или 2\"</emph>."
#. 7DT6o
#: 00000001.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"par_id3145345\n"
"help.text"
msgid "You can enter values in the input fields in different <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"units of measurement\">units of measurement</link>. The default unit is inches. However, if you want a space of exactly 1 cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
-msgstr ""
+msgstr "Можете да въвеждате във входните полета стойности в различни <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"units of measurement\">мерни единици</link>. Подразбираните единици са инчове. Ако обаче желаното разстояние е точно 1 см, въведете „1 см“. Според контекста може да са достъпни допълнителни единици, например 12 пкт за разредка от 12 пункта. Ако стойността в новата единица е неподходяща, програмата използва предварително дефинирана минимална или максимална стойност."
#. gjFSF
#: 00000001.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 83b62e3b719..aecfa91fe76 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-07 05:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-27 20:37+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"
"Language: bg\n"
@@ -5208,7 +5208,7 @@ msgctxt ""
"hd_id191619228341147\n"
"help.text"
msgid "Text placeholders"
-msgstr "Запазени места за текст"
+msgstr "Запазени места в текста"
#. nzAik
#: 01130000.xhp
@@ -5802,7 +5802,7 @@ msgctxt ""
"par_id28\n"
"help.text"
msgid "<ahelp hid=\".\">Adjusts the formula to the page format used in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\">Приспособява формулата към размера на страницата, използван в разпечатката.</ahelp>"
+msgstr "<ahelp hid=\".\">Приспособява формулата към формата на страница, използван в разпечатката.</ahelp>"
#. kGS5A
#: 01130000.xhp
@@ -20321,6 +20321,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr "Изписване на дата на английски във формат „First of May, Nineteen Ninety-nine“"
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
@@ -23757,7 +23793,7 @@ msgctxt ""
"par_id3149123\n"
"help.text"
msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Смяна на мерните единици</link>"
#. BQAVs
#: 05040200.xhp
@@ -24072,7 +24108,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Смяна на мерните единици</link>"
#. 2EDA5
#: 05040300.xhp
@@ -24396,7 +24432,7 @@ msgctxt ""
"par_id3155411\n"
"help.text"
msgid "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Changing measurement units\">Смяна на мерните единици</link>"
#. 7Avg4
#: 05040400.xhp
@@ -39237,7 +39273,7 @@ msgctxt ""
"par_id3145085\n"
"help.text"
msgid "Adds a character bullet to the beginning of a line. Select this option, use the <emph>Character style</emph> drop-down menu to choose the bullet character style, and then press the <emph>Select</emph> button to open the Special Characters dialog to choose the bullet character."
-msgstr ""
+msgstr "Добавя знак като водещ символ в началото на ред. Изберете тази настройка, използвайте падащото меню <emph>Знаков стил</emph>, за да изберете знаковия стил на водещия символ, после натиснете бутона <emph>Избор</emph>, за да отворите диалога „Специални знаци“ и да изберете самия знак."
#. JBJEa
#: 06050500.xhp
@@ -39399,7 +39435,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 an ordered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Въведете знак или текст, който да се показва след номера в списъка. Ако искате да създадете подреден списък със стила „1.)“, въведете „.)“ в това поле.</ahelp>"
#. FWEse
#: 06050500.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/06.po b/source/bg/helpcontent2/source/text/shared/06.po
index 9776e958859..1a6a98edea5 100644
--- a/source/bg/helpcontent2/source/text/shared/06.po
+++ b/source/bg/helpcontent2/source/text/shared/06.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2020-10-02 22:35+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-27 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
-"Language-Team: Bulgarian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared06/bg/>\n"
+"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared06/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,7 +95,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Options Screenshots"
-msgstr ""
+msgstr "Екранни снимки на настройките"
#. wCY4r
#: optionen_screenshots.xhp
@@ -304,14 +304,14 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Раздел „Наклон и радиус на ъгъл“</alt></image>"
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
-msgstr "Екранни снимки на SIMPRESS"
+msgid "Impress Screenshots"
+msgstr ""
#. c6FJr
#: simpress_screenshots.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index f588aaca3d7..57407763b63 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-08 18:37+0000\n"
+"PO-Revision-Date: 2021-05-31 13:28+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356897.000000\n"
@@ -24774,7 +24774,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "Click the arrow next to the <emph>Font Color</emph> icon to activate a <link href=\"text/shared/00/00000001.xhp#toolbars\" name=\"toolbar\">toolbar</link> from which you can choose from a range of colors."
-msgstr ""
+msgstr "Щракнете върху стрелката до иконата <emph>Цвят на шрифта</emph>, за да отворите <link href=\"text/shared/00/00000001.xhp#toolbars\" name=\"toolbar\">лента с инструменти</link>, в която можете да избирате измежду множество цветове."
#. FMST5
#: text_color.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 338f3291eef..ca16a3cbd27 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/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-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-03 02:37+0000\n"
+"PO-Revision-Date: 2021-05-27 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562351576.000000\n"
@@ -6018,7 +6018,7 @@ msgctxt ""
"par_id3154716\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">Specifies the <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Unit\">Unit</link> for HTML documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/viewoptionspage/measureunit\">Задава <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Unit\">мерната единица</link> за документи на HTML.</ahelp>"
#. GCy4m
#: 01040300.xhp
@@ -6333,7 +6333,7 @@ msgctxt ""
"par_id3149562\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/printoptionspage/inblack\">Specifies whether to always print text in black.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/inblack\">Указва печатане на текста винаги в черно.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/printoptionspage/inblack\">Указва дали текстът винаги да се отпечатва в черно.</ahelp>"
#. MfR6Q
#: 01040400.xhp
@@ -6351,7 +6351,7 @@ msgctxt ""
"par_id2021546\n"
"help.text"
msgid "<ahelp hid=\".\">Enable this option to print text that is marked as hidden.</ahelp> The following hidden text is printed: text that is formatted as hidden by <link href=\"text/shared/01/05020200.xhp\">Format - Character - Font Effects - Hidden</link>, and the text fields <link href=\"text/swriter/01/04090003.xhp\">Hidden text and Hidden paragraphs</link>."
-msgstr "<ahelp hid=\".\">Отметнете това поле за отпечатване на текста, отбелязан като скрит.</ahelp> Отпечатва се следният скрит текст: текст, форматиран като скрит с <link href=\"text/shared/01/05020200.xhp\">Форматиране - Знак - Ефекти за шрифт - Скрит</link> и текстовите полета <link href=\"text/swriter/01/04090003.xhp\">Скрит текст и Скрити абзаци</link>."
+msgstr "<ahelp hid=\".\">Ако включите тази настройка, ще се отпечата и текстът, маркиран като скрит.</ahelp> Отпечатва се следният скрит текст: текст, форматиран като скрит с <link href=\"text/shared/01/05020200.xhp\">Форматиране - Знак - Ефекти за шрифт - Скрит</link> и текстовите полета <link href=\"text/swriter/01/04090003.xhp\">Скрит текст и Скрити абзаци</link>."
#. hYDvY
#: 01040400.xhp
@@ -6369,7 +6369,7 @@ msgctxt ""
"par_id7242042\n"
"help.text"
msgid "<ahelp hid=\".\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp><link href=\"text/swriter/01/04090003.xhp\">Text placeholders</link> are fields."
-msgstr "<ahelp hid=\".\">Отметнете това поле за отпечатване на запазените места. Ако махнете отметката, запазените места ще останат празни в разпечатката.</ahelp> <link href=\"text/swriter/01/04090003.xhp\">Запазените места за текст</link> са полета."
+msgstr "<ahelp hid=\".\">Включете тази настройка, за да се отпечатат запазените места в текста. Изключете я, за да оставите запазените места празни в разпечатката.</ahelp> <link href=\"text/swriter/01/04090003.xhp\">Запазените места в текста</link> са полета."
#. xFufN
#: 01040400.xhp
@@ -8088,7 +8088,7 @@ msgctxt ""
"par_id3146147\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/metric\">Specifies the <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"unit of measurement\">unit of measurement</link> for text documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/metric\">Задава <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"unit of measurement\">мерната единица</link> за текстови документи.</ahelp>"
#. WmFn3
#: 01040900.xhp
@@ -12750,7 +12750,7 @@ msgctxt ""
"par_id3155066\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/units\">Determines the <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Unit of measurement\">Unit of measurement</link> for presentations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/units\">Определя <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"Unit of measurement\">мерната единица</link> за презентации.</ahelp>"
#. 32iod
#: 01070500.xhp
@@ -13074,7 +13074,7 @@ msgctxt ""
"par_id3153627\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/smathsettings/sizenormal\">Prints the formula without adjusting the current font size.</ahelp> It is possible that with large formulas a part of the command text is cut off."
-msgstr "<ahelp hid=\"modules/smath/ui/smathsettings/sizenormal\">Печата формулата без промяна на текущия размер на шрифта.</ahelp> Възможно е при големи формули част от командния текст да бъде отрязана."
+msgstr "<ahelp hid=\"modules/smath/ui/smathsettings/sizenormal\">Отпечатва формулата, без да приспособява текущия размер на шрифта.</ahelp> Възможно е при големи формули част от командния текст да бъде отрязана."
#. eiuJ5
#: 01090100.xhp
@@ -13092,7 +13092,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/smathsettings/sizescaled\">Adjusts the formula to the page format used in the printout.</ahelp> The real size will be determined by the used paper format."
-msgstr "<ahelp hid=\"modules/smath/ui/smathsettings/sizescaled\">Приспособява формулата към формата на страницата, използвана за разпечатката.</ahelp> Действителният размер ще бъде определен от използвания формат на хартията."
+msgstr "<ahelp hid=\"modules/smath/ui/smathsettings/sizescaled\">Приспособява формулата към формата на страница, използван в разпечатката.</ahelp> Действителният размер ще бъде определен от използвания формат на хартията."
#. vTqMF
#: 01090100.xhp
diff --git a/source/bg/helpcontent2/source/text/smath/01.po b/source/bg/helpcontent2/source/text/smath/01.po
index dd762aff17b..5f14eb49a4c 100644
--- a/source/bg/helpcontent2/source/text/smath/01.po
+++ b/source/bg/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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-03-22 13:10+0000\n"
+"PO-Revision-Date: 2021-05-27 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356902.000000\n"
@@ -12273,7 +12273,7 @@ msgctxt ""
"par_id3145115\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">All elements of a formula are proportionally scaled to the base size. To change the base size, select or type in the desired point (pt) size. You can also use other units of measure or other <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"metrics\">metrics</link>, which are then automatically converted to points.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/smath/ui/fontsizedialog/spinB_baseSize\">Всички елементи на формулата се мащабират пропорционално спрямо базовия размер. За да промените базовия размер, изберете или въведете желания размер в пунктове. Можете също така да ползвате други мерни единици или друга <link href=\"text/shared/00/00000003.xhp#measurement_units\" name=\"metrics\">метрика</link>, при което ще последва автоматично преобразуване в пунктове.</ahelp>"
#. qX3wh
#: 05020000.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 7451cff686b..731193287a9 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-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-27 15: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"
@@ -4556,15 +4556,15 @@ msgctxt ""
msgid "~Number"
msgstr "Число"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
-msgstr "Транспонирано поставяне "
+msgid "Paste Transposed"
+msgstr ""
#. EbDtX
#: CalcCommands.xcu
@@ -4576,14 +4576,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr "Транспониране"
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
@@ -4594,7 +4594,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "As ~Link"
-msgstr ""
+msgstr "Като връзка"
#. 4DJpG
#: CalcCommands.xcu
@@ -5044,7 +5044,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "ScFunctionsDeck"
-msgstr ""
+msgstr "ScFunctionsDeck"
#. 7wktD
#: CalcWindowState.xcu
@@ -10274,7 +10274,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Zoom & Pan (Ctrl to Zoom Out, Shift to Pan)"
-msgstr ""
+msgstr "Мащаб и придвижване (Ctrl за умаляване, Shift за придвижване)"
#. BRCmr
#: DrawImpressCommands.xcu
@@ -11494,7 +11494,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "ShapesDeck"
-msgstr ""
+msgstr "ShapesDeck"
#. RvAn9
#: DrawImpressCommands.xcu
@@ -11504,7 +11504,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SdSlideTransitionDeck"
-msgstr ""
+msgstr "SdSlideTransitionDeck"
#. BrCHL
#: DrawImpressCommands.xcu
@@ -11514,7 +11514,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SdCustomAnimationDeck"
-msgstr ""
+msgstr "SdCustomAnimationDeck"
#. KoQCq
#: DrawImpressCommands.xcu
@@ -11524,7 +11524,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SdMasterPagesDeck"
-msgstr ""
+msgstr "SdMasterPagesDeck"
#. ESt3w
#: DrawWindowState.xcu
@@ -25626,7 +25626,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Search Commands"
-msgstr ""
+msgstr "Търсене на команда"
#. NFhYp
#: GenericCommands.xcu
@@ -26876,7 +26876,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "PropertyDeck"
-msgstr ""
+msgstr "PropertyDeck"
#. 8WZAk
#: GenericCommands.xcu
@@ -26886,7 +26886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "StyleListDeck"
-msgstr ""
+msgstr "StyleListDeck"
#. Ac3Ja
#: GenericCommands.xcu
@@ -26896,7 +26896,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "GalleryDeck"
-msgstr ""
+msgstr "GalleryDeck"
#. XMnKc
#: GenericCommands.xcu
@@ -26906,7 +26906,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "NavigatorDeck"
-msgstr ""
+msgstr "NavigatorDeck"
#. uaVMn
#: ImpressWindowState.xcu
@@ -35676,7 +35676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "WriterPageDeck"
-msgstr ""
+msgstr "WriterPageDeck"
#. cEVPJ
#: WriterCommands.xcu
@@ -35686,7 +35686,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "InspectorDeck"
-msgstr ""
+msgstr "InspectorDeck"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index ad21fea61e1..cf946dd68d3 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-06 19:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-16 05:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/bg/>\n"
"Language: bg\n"
@@ -16594,112 +16594,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "Стандартен филтър..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Първи 10"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Празни"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Не празни"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr "Цвят на текста"
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr "Цвят на фона"
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "без име"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Колона %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Ред %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Лист"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Име"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Добавяне на лист"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Преименуване на лист"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Цвят на раздела"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "По подразбиране"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Име на обект"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Вмъкване на изображение"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr "Изображението е завъртяно. Желаете ли да го върнете към стандартната ориентация?"
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16707,135 +16713,135 @@ msgstr[0] "Намерен е един резултат"
msgstr[1] "Намерени са %1 резултата"
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr "(показани са само %1)"
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr "Защитаване структурата на документа"
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr "Премахване защитата на структурата"
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr "Премахване на защитата на лист"
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Защитаване на записи"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Премахване на защитата на записи"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Парола:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Парола (незадължителна):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Грешна парола"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~Край"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Неизвестно"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Минимум"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Максимум"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Стойност"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr "Формула"
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~Източник"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~Елементи"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Системен"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Стандартна;Текст;Дата (ДМГ);Дата (МДГ);Дата (ГМД);Английски (САЩ);Скрита"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Табулатор"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "интервал"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -16847,1593 +16853,1593 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "Филтър за изображения"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Текст"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Избор на листове"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "~Избрани листове"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Скала"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Тази скала управлява обектите на фиксирани позиции."
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Мостра"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Този лист показва как ще бъдат подредени данните в документа."
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Изглед на документа"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Лист %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Клетка %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Лява област"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Мостра на страница"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Средна област"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Дясна област"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Горен колонтитул, страница %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Долен колонтитул, страница %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Входен ред"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Тук въвеждате и редактирате текст, числа и формули."
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Възпроизвеждане на носител"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "При натиснат бутон на мишката"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Лента с инструменти Формула"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "Електронна таблица на %PRODUCTNAME"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(само за четене)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Режим мостра)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr "Страници:"
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "Да не се печатат празни страници"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr "Отпечатване на всички листове"
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr "Отпечатване на избраните листове"
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr "Отпечатване на избраните клетки"
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr "От които:"
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr "Всички страници"
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Страници:"
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr "Четни страници"
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr "Нечетни страници"
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "Не бе възможно да се обнови следният DDE източник, вероятно защото изходният документ не е отворен. Моля, отворете изходния документ и опитайте отново."
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "Не бе възможно да се зареди следният външен файл. Свързаните данни от този файл не бяха обновени."
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "Обновяват се външни връзки."
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Областта съдържа заглавия на ~колони"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Областта съдържа заглавия на ~редове"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Невалидна стойност"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Не е зададена формула."
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "Не е зададен нито ред, нито колона."
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "Недефинирано име или област."
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "Недефинирано име или невалидно обръщение към клетки."
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Формулите не образуват колона."
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Формулите не образуват ред."
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Добавяне на автоформат"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Преименуване на автоформат"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Име"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Изтриване на автоформат"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Наистина ли желаете автоформатът # да бъде изтрит?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Затваряне"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Яну"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Фев"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Мар"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "Север"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Център"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Юг"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "Общо"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Закотвяне към страница"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "Закотвяне към клетка"
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
msgctxt "SCSTR_CONDITION"
msgid "Condition "
msgstr "Условие "
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Съдържание"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Листове"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Имена на области"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Диапазони за база от данни"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Изображения"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE обекти"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Коментари"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Свързани области"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Графични обекти"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "активен"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "неактивен"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "скрит"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Активен прозорец"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Име на сценарий"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Коментар"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "Възходящо сортиране"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "Низходящо сортиране"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Сортиране по избор"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Поле за име"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Входен ред"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Помощник за функции"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Приемане"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Отказ"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr "Избор на функция"
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Формула"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Разгъване на лентата за формули"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Свиване на лентата за формули"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Автор"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Дата"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Неизвестен потребител"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Вмъкната колона"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Вмъкнат ред "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Вмъкнат лист "
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Изтрита колона"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Изтрит ред"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Изтрит лист"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Преместена област"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Променено съдържание"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Променено съдържание"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Променено на "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Оригинал"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Отхвърлени промени"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Прието"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Отхвърлено"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Няма запис"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<празно>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "Не е защитен"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "Не е защитен с парола"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "Несъвместим хеш"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Съвместим хеш"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Въвеждане отново"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Пълзящо средно"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Експоненциално изглаждане"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Дисперсионен анализ"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr "Дисперсионен анализ (ANOVA)"
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "Еднофакторен дисперсионен анализ"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "Двуфакторен дисперсионен анализ"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Групи"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Между групите"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "В групите"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Източник на дисперсия"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr "F"
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr "Значимост F"
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-стойност"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F критично"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Общо"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Корелация"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr "Корелации"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Ковариация"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr "Ковариации"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Дескриптивна статистика"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Средно"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Стандартна грешка"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Мода"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Медиана"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Дисперсия"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Стандартно отклонение"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Ексцес"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Асиметрия"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Диапазон"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Минимум"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Максимум"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Сума"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Брой"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr "Първи квартил"
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr "Трети квартил"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "Случайно ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Равномерно"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "Равномерно целочислено"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Нормално"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Коши"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Бернули"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Биномно"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Отрицателно биномно"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Хи-квадрат"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Геометрично"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Минимум"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Максимум"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Средно"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Стандартно отклонение"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Медиана"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "Сигма"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "P-стойност"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "Брой опити"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr "nu-стойност"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Избор"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-тест"
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-тест"
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr "Сдвоен t-тест"
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr "Сдвоен t-тест"
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "z-тест"
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "z-тест"
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "Тест за независимост (хи-квадрат)"
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "Регресия"
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "Регресия"
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr "Анализ на Фурие"
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr "Анализ на Фурие"
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Колона %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Ред %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Алфа"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Променлива 1"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Променлива 2"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "Хипотетична разлика на средните"
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Наблюдения"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "Наблюдавана разлика на средните"
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R²"
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr "Изгладен R²"
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr "Брой променливи X"
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-стойност"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "Критична стойност"
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "Тестова статистика"
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr "Долни"
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr "Горни"
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr "Входният диапазон е невалиден."
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr "Адресът на резултата е невалиден."
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "Линеен"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Логаритмичен"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Степенен"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr "Диапазонът с независими променливи е невалиден."
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr "Диапазонът със зависими променливи е невалиден."
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr "Нивото на доверие трябва да бъде в интервала (0, 1)."
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr "Диапазонът с променливи Y не може да има повече от 1 колона."
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr "Диапазонът с променливи Y не може да има повече от 1 ред."
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr "Едномерна регресия: броят наблюдения в X и Y трябва да съвпада."
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr "Многомерна регресия: броят наблюдения в X и Y трябва да съвпада."
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Регресионен модел"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr "Регресионна статистика"
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr "Остатък"
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr "Ниво на доверие"
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr "Коефициенти"
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr "t-статистика"
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Пресичане"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr "Прогнозирано Y"
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr "Необработен резултат от LINEST"
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) дясна страна"
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F критично, дясна страна"
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) лява страна"
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F критично, лява страна"
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P двустранно"
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr "F критично двустранно"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "Корелация на Пирсън"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "Дисперсия на разликите"
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t-статистика"
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) едностранно"
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t критично едностранно"
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) двустранно"
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr "t критично двустранно"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr "z"
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "Известна дисперсия"
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) едностранно"
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "z критично едностранно"
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (Z<=z) двустранно"
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr "z критично двустранно"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr "Преобразувание на Фурие"
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr "Обратно преобразование на Фурие"
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr "Реална част"
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr "Имагинерна част"
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr "Амплитуда"
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr "Фаза"
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr "Избрани са повече от две колони в режим на групиране по колони."
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr "Избрани са повече от два реда в режим на групиране по редове."
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr "Във входния диапазон няма данни."
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr "Резултатът е твърде дълъг, за да бъде записан в листа."
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr "Диапазон с входни данни"
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr "Позволено обновяване"
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr "Към клетка"
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr "Към клетка (преоразмеряване с клетката)"
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr "Към страница"
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "Не са достъпни потребителски данни."
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(изключителен достъп)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr "В избрания документ не са налице наименувани диапазони."
@@ -27961,7 +27967,7 @@ msgstr "Не се печатат празни страници"
#: sc/uiconfig/scalc/ui/printeroptions.ui:29
msgctxt "printeroptions|extended_tip|suppressemptypages"
msgid "If checked empty pages that have no cell contents or draw objects are not printed."
-msgstr ""
+msgstr "Ако е отметнато, празните страници, без съдържание в клетките и без графични обекти, няма да се отпечатват."
#. tkryr
#: sc/uiconfig/scalc/ui/printeroptions.ui:38
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index 2c4305fda21..3579e9a5602 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-04-15 08:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-16 05:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bg/>\n"
"Language: bg\n"
@@ -3520,7 +3520,7 @@ msgstr "Име на страница"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:36
msgctxt "drawprinteroptions|extended_tip|printname"
msgid "Specifies whether to print the page name of a document."
-msgstr ""
+msgstr "Указва дали да се отпечатва името на страница на документа."
#. ENmG2
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:48
@@ -3532,7 +3532,7 @@ msgstr "Дата и час"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:56
msgctxt "drawprinteroptions|extended_tip|printdatetime"
msgid "Specifies whether to print the current date and time."
-msgstr ""
+msgstr "Указва дали да се отпечатват текущите дата и час."
#. oFCsx
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:72
@@ -3550,7 +3550,7 @@ msgstr "Оригинални цветове"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:110
msgctxt "drawprinteroptions|extended_tip|originalcolors"
msgid "Specifies to print in original colors."
-msgstr ""
+msgstr "Указва отпечатване с оригиналните цветове."
#. 5FsHB
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:122
@@ -3562,7 +3562,7 @@ msgstr "Степени на сивото"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:132
msgctxt "drawprinteroptions|extended_tip|grayscale"
msgid "Specifies to print colors as grayscale."
-msgstr ""
+msgstr "Указва отпечатване на цветовете като степени на сивото."
#. oFnFq
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:144
@@ -3574,7 +3574,7 @@ msgstr "Черно и бяло"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:154
msgctxt "drawprinteroptions|extended_tip|blackandwhite"
msgid "Specifies to print colors as black and white."
-msgstr ""
+msgstr "Указва отпечатване на цветовете като черно и бяло."
#. MGAFs
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:170
@@ -3592,7 +3592,7 @@ msgstr "Оригинален размер"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:208
msgctxt "drawprinteroptions|extended_tip|originalsize"
msgid "Specifies that you do not want to further scale pages when printing."
-msgstr ""
+msgstr "Указва, че не искате страниците да се мащабират допълнително при отпечатването."
#. drvLN
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:220
@@ -3600,9 +3600,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Побиране в печатната страница"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3612,9 +3612,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Разпределяне върху няколко листа"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
@@ -3628,7 +3628,7 @@ msgstr "Запълване на листа с повторени страниц
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:274
msgctxt "drawprinteroptions|extended_tip|tilesheet"
msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper."
-msgstr ""
+msgstr "Указва страниците да се печатат в мозаичен формат. Ако страниците или кадрите са по-малки от хартията, те ще се повтарят по няколко пъти на един лист хартия."
#. qbU9A
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:290
@@ -6187,19 +6187,19 @@ msgstr "Подреждане:"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:76
msgctxt "impressprinteroptions|extended_tip|impressdocument"
msgid "Select which parts of the document should be printed."
-msgstr ""
+msgstr "Изберете кои части на документа да се отпечатат."
#. nPeoT
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:91
msgctxt "impressprinteroptions|extended_tip|slidesperpage"
msgid "Select how many slides to print per page."
-msgstr ""
+msgstr "Изберете по колко кадъра да се отпечатват на страница."
#. B3gRG
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:106
msgctxt "impressprinteroptions|extended_tip|slideperpageorder"
msgid "Specify how to arrange slides on the printed page."
-msgstr ""
+msgstr "Укажете как да се подреждат кадрите върху напечатаната страница."
#. xTmU5
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:121
@@ -6217,7 +6217,7 @@ msgstr "Име на кадър"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:158
msgctxt "impressprinteroptions|extended_tip|printname"
msgid "Specifies whether to print the page name of a document."
-msgstr ""
+msgstr "Указва дали да се отпечатва името на страница на документа."
#. PYhD6
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:170
@@ -6229,7 +6229,7 @@ msgstr "Дата и час"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:178
msgctxt "impressprinteroptions|extended_tip|printdatetime"
msgid "Specifies whether to print the current date and time."
-msgstr ""
+msgstr "Указва дали да се отпечатват текущите дата и час."
#. URBvB
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:190
@@ -6241,7 +6241,7 @@ msgstr "Скрити страници"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:198
msgctxt "impressprinteroptions|extended_tip|printhidden"
msgid "Specifies whether to print the pages that are currently hidden."
-msgstr ""
+msgstr "Указва дали да се отпечатват страниците, които в момента са скрити."
#. YSdBB
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:214
@@ -6259,7 +6259,7 @@ msgstr "Оригинални цветове"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:252
msgctxt "impressprinteroptions|extended_tip|originalcolors"
msgid "Specifies to print in original colors."
-msgstr ""
+msgstr "Указва отпечатване с оригиналните цветове."
#. Hp6An
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:264
@@ -6271,7 +6271,7 @@ msgstr "Степени на сивото"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:274
msgctxt "impressprinteroptions|extended_tip|grayscale"
msgid "Specifies to print colors as grayscale."
-msgstr ""
+msgstr "Указва отпечатване на цветовете като степени на сивото."
#. vnaCm
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:286
@@ -6283,7 +6283,7 @@ msgstr "Черно и бяло"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:296
msgctxt "impressprinteroptions|extended_tip|blackandwhite"
msgid "Specifies to print colors as black and white."
-msgstr ""
+msgstr "Указва отпечатване на цветовете като черно и бяло."
#. G3CZp
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:312
@@ -6301,7 +6301,7 @@ msgstr "Оригинален размер"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:350
msgctxt "impressprinteroptions|extended_tip|originalsize"
msgid "Specifies that you do not want to further scale pages when printing."
-msgstr ""
+msgstr "Указва, че не искате страниците да се мащабират допълнително при отпечатването."
#. f2eFU
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:362
@@ -6313,7 +6313,7 @@ msgstr "Побиране в печатната страница"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:372
msgctxt "impressprinteroptions|extended_tip|fittoprintable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
-msgstr ""
+msgstr "Указва дали да се смаляват обектите, които се простират извън печатната област на текущия принтер, така че да се поберат върху хартията в принтера."
#. wCDEw
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:384
@@ -6325,7 +6325,7 @@ msgstr "Разпределяне върху няколко листа"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:394
msgctxt "impressprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
-msgstr ""
+msgstr "Отпечатва едроформатен документ, например плакат или банер, като разпределя страницата на документа върху няколко листа хартия. Функцията за разпределяне изчислява колко листа хартия са необходими. След това можете да съедините листите един с друг."
#. gCjUa
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:406
@@ -6337,7 +6337,7 @@ msgstr "Запълване на листа с повторени кадри"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:416
msgctxt "impressprinteroptions|extended_tip|tilesheet"
msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, repeat the pages or slides on one sheet of paper."
-msgstr ""
+msgstr "Указва страниците да се печатат в мозаичен формат. Ако страниците или кадрите са по-малки от хартията, те ще се повтарят по няколко пъти на един лист хартия."
#. xa7tq
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:432
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index d5228c7ead4..1809247af5d 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-07 20:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
+"PO-Revision-Date: 2021-05-26 11:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bg/>\n"
"Language: bg\n"
@@ -2908,7 +2908,7 @@ msgstr "Не"
#: sfx2/uiconfig/ui/commandpopup.ui:35
msgctxt "commandpopup|entry"
msgid "Search command"
-msgstr ""
+msgstr "Търсена команда"
#. w2G7M
#: sfx2/uiconfig/ui/custominfopage.ui:15
@@ -3012,148 +3012,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "Съдържа описателна информация за документа."
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr "Обект"
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr "Текуща селекция в документа"
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr "Текуща селекция"
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr "Опресняване на дървовидния изглед на модела на документа"
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr "Опресняване"
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr "Обект"
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr "Назад"
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr "Назад"
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr "Инспектиране"
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr "Инспектиране"
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr "Опресняване"
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr "Опресняване"
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr "Име на клас:"
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr "Име"
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr "Интерфейси"
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr "Услуги"
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr "Стойност"
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr "Тип"
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr "Информация"
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr "Свойства"
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr "Метод"
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr "Тип на резултата"
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr "Параметри"
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr "Реализационен клас"
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr "Методи"
@@ -3165,55 +3165,55 @@ msgid "Inspect"
msgstr "Инспектиране"
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "Вграждане на _шрифтовете в документа"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr "Отметнете това поле, за да вградите шрифтовете на документа във файла му с цел преносимост между различни компютри."
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr "Вграждане в документи само на използваните шрифтове"
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr "Вграждане на шрифтове"
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr "Шрифтове за латиница"
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr "Азиатски шрифтове"
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr "Сложни шрифтове"
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr "Писмености за вграждане"
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr "Служи за вграждане шрифтовете на документа в текущия файл."
@@ -3693,19 +3693,19 @@ msgid "Remove Property"
msgstr "Премахване на свойство"
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr "..."
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr "Да"
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr "Не"
@@ -4563,61 +4563,61 @@ msgid "Wrap _around"
msgstr "След края – от началото"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "_Отваряне само за четене"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr "Ако отметнете това, документът ще може да се отваря единствено за четене."
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Следене на п_ромените"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr "Отметнете, за да разрешите регистрирането на промени. Настройката е същата като Редактиране - Следене на промените - Регистриране."
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Защитаване..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr "Защитава с парола състоянието на следенето на промени. Ако за текущия документ проследяването на промени е защитено, бутонът е озаглавен Премахване на защитата. За да изключите защитата, щракнете върху Премахване на защитата и въведете правилната парола."
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "_Премахване на защитата..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr "Защитава с парола състоянието на следенето на промени. Ако за текущия документ проследяването на промени е защитено, бутонът е озаглавен Премахване на защитата. За да изключите защитата, щракнете върху Премахване на защитата и въведете правилната парола."
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Настройки за споделяне"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr "Задава настройките за пароли на текущия документ."
diff --git a/source/bg/starmath/messages.po b/source/bg/starmath/messages.po
index f1b558eacde..c0b81c1bb58 100644
--- a/source/bg/starmath/messages.po
+++ b/source/bg/starmath/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-02-28 09:36+0000\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-26 11:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/bg/>\n"
"Language: bg\n"
@@ -3170,7 +3170,7 @@ msgstr "Заглавие"
#: starmath/uiconfig/smath/ui/printeroptions.ui:43
msgctxt "printeroptions|extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
-msgstr ""
+msgstr "Указва дали желаете името на документа да е включено в разпечатката."
#. pHDis
#: starmath/uiconfig/smath/ui/printeroptions.ui:55
@@ -3182,7 +3182,7 @@ msgstr "Текст на формула"
#: starmath/uiconfig/smath/ui/printeroptions.ui:63
msgctxt "printeroptions|extended_tip|formulatext"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
-msgstr ""
+msgstr "Указва дали съдържанието на прозореца „Команди“ да бъде включено в долната част на разпечатката."
#. 3zuC8
#: starmath/uiconfig/smath/ui/printeroptions.ui:75
@@ -3194,7 +3194,7 @@ msgstr "Кантове"
#: starmath/uiconfig/smath/ui/printeroptions.ui:83
msgctxt "printeroptions|extended_tip|borders"
msgid "Applies a thin border to the formula area in the printout."
-msgstr ""
+msgstr "Прилага тънък кант около областта за формулата в разпечатката."
#. M6JQf
#: starmath/uiconfig/smath/ui/printeroptions.ui:99
@@ -3212,7 +3212,7 @@ msgstr "Оригинален размер"
#: starmath/uiconfig/smath/ui/printeroptions.ui:137
msgctxt "printeroptions|extended_tip|originalsize"
msgid "Prints the formula without adjusting the current font size."
-msgstr ""
+msgstr "Отпечатва формулата, без да приспособява текущия размер на шрифта."
#. gzwzd
#: starmath/uiconfig/smath/ui/printeroptions.ui:149
@@ -3224,7 +3224,7 @@ msgstr "Напасване към страницата"
#: starmath/uiconfig/smath/ui/printeroptions.ui:158
msgctxt "printeroptions|extended_tip|fittopage"
msgid "Adjusts the formula to the page format used in the printout."
-msgstr ""
+msgstr "Приспособява формулата към формата на страница, използван в разпечатката."
#. jqNJw
#: starmath/uiconfig/smath/ui/printeroptions.ui:175
@@ -3236,13 +3236,13 @@ msgstr "Мащабиране:"
#: starmath/uiconfig/smath/ui/printeroptions.ui:184
msgctxt "printeroptions|extended_tip|scaling"
msgid "Reduces or enlarges the size of the printed formula by a specified factor."
-msgstr ""
+msgstr "Намалява или увеличава размера на отпечатаната формула с указан коефициент."
#. cqANF
#: starmath/uiconfig/smath/ui/printeroptions.ui:202
msgctxt "printeroptions|extended_tip|scalingspim"
msgid "Enter the scale factor for scaling the formula."
-msgstr ""
+msgstr "Въведете коефициента, с който да се мащабира формулата."
#. mKDDK
#: starmath/uiconfig/smath/ui/printeroptions.ui:225
@@ -3269,127 +3269,140 @@ msgid "These changes will apply for all new formulas."
msgstr "Тези промени ще се прилагат за всички нови формули."
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "_Заглавен ред"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr "Указва дали желаете името на документа да е включено в разпечатката."
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "_Текст на формула"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
-msgstr "Указва дали съдържанието на прозореца Команди да бъде включено в долната част на разпечатката."
+msgstr "Указва дали съдържанието на прозореца „Команди“ да бъде включено в долната част на разпечатката."
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "_Кант"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr "Прилага тънък кант около областта за формулата в разпечатката."
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Настройки за печатане"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "_Оригинален размер"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
-msgstr "Печата формулата без промяна на текущия размер на шрифта."
+msgstr "Отпечатва формулата, без да приспособява текущия размер на шрифта."
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "_Побиране в страницата"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
-msgstr "Приспособява формулата към формата на страницата, използвана за разпечатката."
+msgstr "Приспособява формулата към формата на страница, използван в разпечатката."
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "Мащабиране:"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr "Уголемява или смалява отпечатаната формула според зададен коефициент на мащабиране."
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Формат за печат"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Пропускане на ~~ и ' в края на реда"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr "Указва, че тези заместители за интервали ще бъдат премахнати, ако са в края на ред."
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Вграждане само на използваните символи (по-малък файл)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr "Записва във всяка формула само тези символи, които са използвани в нея."
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Автозатваряне на кръгли, квадратни и фигурни скоби"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Разни настройки"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr "Задава настройките за формули, които важат във всички документи."
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index 2b1857ad7cf..5cf12075f8f 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-01 15:37+0000\n"
+"PO-Revision-Date: 2021-05-26 11:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1559419310.000000\n"
#. fLdeV
@@ -4996,7 +4996,7 @@ msgstr "Брибри"
#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
-msgstr ""
+msgstr "Английски (Дания)"
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 4b76f73e79d..0106c083777 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2021-05-06 19:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562357387.000000\n"
#. 3GkZj
@@ -14003,6 +14003,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr "Рестартиране на %PRODUCTNAME в безопасен режим"
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 4aef72d1280..0e4a212e7a5 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
-"PO-Revision-Date: 2021-05-07 20:37+0000\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
+"PO-Revision-Date: 2021-05-26 11:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
"Language: bg\n"
@@ -5702,7 +5702,7 @@ msgstr "Скрит те~кст"
#: sw/inc/strings.hrc:626
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
-msgstr "~Запазени места за текст"
+msgstr "Запазени места в текста"
#. JBWVd
#: sw/inc/strings.hrc:627
@@ -8252,1213 +8252,1219 @@ msgstr "към абзац"
#: sw/inc/strings.hrc:1114
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
+msgstr "като знак"
+
+#. Uszmm
+#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
msgstr ""
#. hDUSa
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "към страница"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Координата X:"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Координата Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "в началото"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Вертикално центриране"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "в края"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Над реда"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Центриране в реда"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Под реда"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Редова разредка на сраницата"
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Без редова разредка на страницата"
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "отдясно"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Хоризонтално центриране"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "отляво"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "отвътре"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "отвън"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Пълна ширина"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Колони"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Ширина на разделител:"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Макс. област на бележките под линия:"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Може да се редактира в документ само за четене"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Разделяне"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr "Стил за списъци: (%LISTSTYLENAME)"
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr "Стил за списъци: (няма)"
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "свързано към "
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "и "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Преброяване на редове"
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "да не се броят редовете"
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "ново броене на редове от: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Яркост: "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Червено: "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Зелено: "
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Синьо: "
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Контраст: "
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Гама: "
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Прозрачност: "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Инвертиране"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "да не се инвертира"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Режим на графиката: "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Стандартно"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Степени на сивото"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Черно-бяло"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Воден знак"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Завъртане"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Без мрежа"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Мрежа (само редове)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Мрежа (редове и знаци)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Следване изливането на текста"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Без следване изливането на текста"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Обединяване на кантове"
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Без обединяване на кантове"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Таблица"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr "Рамка"
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Страница"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Рисунка"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Контрола"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "Раздел"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Показалец"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Графика"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE обект"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Заглавия"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Селекция"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Бележка под линия"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Напомняне"
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Коментар"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Повторно търсене"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Запис за указател"
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Таблична формула"
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Неправилна таблична формула"
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "Скорошност"
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr "Поле"
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr "Поле по тип"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Следваща таблица"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr "Следваща рамка"
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Следваща страница"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Следваща рисунка"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Следваща контрола"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Следващ раздел"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Следващ показалец"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Следваща графика"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Следващ OLE обект"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Следващо заглавие"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Следваща селекция"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Следваща бележка под линия"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Следващо напомняне"
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Следващ коментар"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Продължаване търсенето напред"
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Следващ елемент от указател"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Предишна таблица"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr "Предишна рамка"
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Предишна страница"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Предишна рисунка"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Предишна контрола"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Предишен раздел"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Предишен показалец"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Предишна графика"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Предишен OLE обект"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Предишно заглавие"
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Предишна селекция"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Предишна бележка под линия"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Предишно напомняне"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Предишен коментар"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Продължаване търсенето назад"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Предишен елемент от указател"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Предишна таблична формула"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Следваща таблична формула"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Предишна неправилна таблична формула"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Следваща неправилна таблична формула"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "Назад"
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "Напред"
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr "Предишно поле"
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr "Следващо поле"
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
-msgstr "Предишно поле с типа на текущото"
+msgid "Previous '%FIELDTYPE' field"
+msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
-msgstr "Следващо поле с типа на текущото"
+msgid "Next '%FIELDTYPE' field"
+msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Вмъкнато"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Изтрито"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Форматирано"
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Променена таблица"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Приложени абзацни стилове"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Променен формат на абзац"
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Вмъкнат ред"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Изтрит ред"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Вмъкната клетка"
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Изтрита клетка"
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Бележка в края: "
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Бележка под линия: "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "Щракнете с %s, за да отворите менюто на умното етикетче"
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Горен колонтитул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Горен колонтитул на първата страница (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Горен колонтитул на лява страница (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Горен колонтитул на дясна страница (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Долен колонтитул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Долен колонтитул на първата страница (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Долен колонтитул на лява страница (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Долен колонтитул на дясна страница (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Изтриване на горния колонтитул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Форматиране на горния колонтитул..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Изтриване на долния колонтитул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Форматиране на долния колонтитул..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Фиксиране на плаваща таблица"
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr "Редактиране на знак за нова страница"
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Файлът с изображението не може да бъде отворен"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Файлът с изображението не може да бъде прочетен"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Неизвестен формат на изображение"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Версията на файла с изображението не се поддържа"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Не е намерен филтър за изображението"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Няма достатъчно памет за вмъкване на изображението."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Вмъкване на изображение"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Коментар: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Вмъкване"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Изтриване"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Автокорекция"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Формати"
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Промени в таблицата"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Приложени типове абзаци"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Страница "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Страница %1 от %2"
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Страница %1 от %2 (страница %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Страница %1 от %2 (страница %3 от %4 за печат)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Изображение"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE обект"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Рамка"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Таблица"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Ред на таблица"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Клетка на таблица"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Страница"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Горен колонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Долен колонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Документ на HTML на %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Заглавие"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Разделител"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Ниво "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Файлът \"%1\" в директорията \"%2\" не може да бъде открит."
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Потребителски указател"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Няма>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Няма>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr "Р"
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "Е#"
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "Е"
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "Т"
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "ИГ"
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "НХ"
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "КХ"
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "И"
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Номер на глава"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Елемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Табулатор"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Текст"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Номер на страница"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Информация за главата"
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Начало на хипервръзка"
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Край на хипервръзка"
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Библиографски запис: "
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Знаков стил: "
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Текст на структурата"
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Ctrl+Alt+A премества фокуса за допълнителни операции"
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Стрелките наляво и надясно избират контролите на структурата"
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Ctrl+Alt+B фокусира отново текущата контрола на структурата"
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Файл за избор за азбучния указател (*.sdi)"
@@ -9467,259 +9473,259 @@ msgstr "Файл за избор за азбучния указател (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Базова линия отгоре"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Базова линия отдолу"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Центрирана базова линия"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Вмъкване на обект"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Редактиране на обект"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Шаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Кантове"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Фон"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Стил на абзац: "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Не е възможно да се постави номер на текущата страница. Четни номера могат да се използват само на леви страници, а нечетни – само на десни страници."
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "Главен документ на %PRODUCTNAME %PRODUCTVERSION"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "Свързването с файл ще изтрие съдържанието на текущия раздел. Желаете ли свързване въпреки това?"
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Въведената парола е невалидна."
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Не е зададена парола."
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Сричкопренасянето завърши"
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "(без проверка на правописа)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Връщане на подразбирания език"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Повече..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Игнориране"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Пояснения..."
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Проверката в специалните области е изключена. Желаете ли проверка все пак?"
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Документите не могат да бъдат обединени."
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "Компонентът %PRODUCTNAME Base отсъства, а е необходим за работата с циркулярни писма."
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Изходният код не може да бъде зареден."
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Не е посочен факс в Инструменти/Настройки/%1/Печат."
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Документ на HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Текстов документ"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Не е указан източник."
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Ниво "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "План "
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Редактиране на бележката под линия/в края"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Търсеният низ е заменен XX пъти."
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ред "
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Колона "
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Експортиране на изходен код..."
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Експортиране копие на изходния код..."
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Продължаване"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Получател: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Успешно изпращане"
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Неуспешно изпращане"
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Текстова формула"
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Не е указан елемент"
@@ -9728,7 +9734,7 @@ msgstr "Не е указан елемент"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Класификацията на документа бе променена, защото нивото на класификация на някой абзац е по-високо."
@@ -9737,137 +9743,125 @@ msgstr "Класификацията на документа бе промене
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Валиден "
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Невалиден"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Невалиден подпис"
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Подписано от"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Подпис на абзаца"
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Визитни картички"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "Настройки за е-поща"
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Вмъкване"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Изтриване"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибути"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Термин за търсене"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Алтернативен запис"
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-ви ключ"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-ри ключ"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Коментар"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Зачитане на регистъра"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Само дума"
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Да"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Не"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "По избор"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr "Не е достъпен източник на данни. Помощникът за циркулярни писма няма да работи правилно."
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr "Смяна на БД"
-
#. YiRsr
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -11147,7 +11141,7 @@ msgid "Entry"
msgstr "Елемент"
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "Вмъква препратка към библиография."
@@ -17475,109 +17469,109 @@ msgid "Previous footnote/endnote"
msgstr "Предишна бележка под линия/в края"
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "Преминава към котвата на предишната бележка под линия или бележка в края."
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr "Следваща бележка под линия/в края"
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "Преминава към котвата на следващата бележка под линия или бележка в края."
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "Автоматично"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr "Автоматично се присвоява пореден номер на бележките под линия или бележките в края."
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr "Знак:"
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr "Изберете тази възможност, за да укажете знак или символ за текущата бележка под линия."
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "Знак"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr "Изберете тази възможност, за да укажете знак или символ за текущата бележка под линия."
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "Избор…"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "Вмъква специален знак като котва на бележка под линия или бележка в края."
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "Номерация"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "Бележка под линия"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "Добавя бележката под линия в долния край на страницата и вмъква котвата ѝ в текущата позиция на курсора в документа."
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "Бележка в края"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "Добавя бележката в края на документа и вмъква котвата ѝ в текущата позиция на курсора в документа."
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "Тип"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr "Вмъква бележка под линия или бележка в края на документа. Котвата на бележката се вмъква на текущата позиция на курсора."
@@ -24751,7 +24745,7 @@ msgstr "Фон на страници"
#: sw/uiconfig/swriter/ui/printeroptions.ui:34
msgctxt "printeroptions|extended_tip|pagebackground"
msgid "Specifies whether to print colors and objects that are inserted to the background of the page, which you have specified under Format - Page - Background."
-msgstr ""
+msgstr "Указва дали да се отпечатват цветове и обекти, вмъкнати във фона на страницата, които са зададени във Форматиране - Страница - Фон."
#. K9pGA
#: sw/uiconfig/swriter/ui/printeroptions.ui:46
@@ -24763,7 +24757,7 @@ msgstr "Изображения и други графични обекти"
#: sw/uiconfig/swriter/ui/printeroptions.ui:54
msgctxt "printeroptions|extended_tip|pictures"
msgid "Specifies whether the graphics and drawings or OLE objects of your text document are printed."
-msgstr ""
+msgstr "Указва дали да се отпечатват графиките и OLE обектите в текстовия документ."
#. VRCmc
#: sw/uiconfig/swriter/ui/printeroptions.ui:66
@@ -24775,19 +24769,19 @@ msgstr "Скрит текст"
#: sw/uiconfig/swriter/ui/printeroptions.ui:74
msgctxt "printeroptions|extended_tip|hiddentext"
msgid "Enable this option to print text that is marked as hidden."
-msgstr ""
+msgstr "Ако включите тази настройка, ще се отпечата и текстът, маркиран като скрит."
#. boJH4
#: sw/uiconfig/swriter/ui/printeroptions.ui:86
msgctxt "printeroptions|placeholders"
msgid "Text placeholders"
-msgstr "Запазени места за текст"
+msgstr "Запазени места в текста"
#. DJVwz
#: sw/uiconfig/swriter/ui/printeroptions.ui:94
msgctxt "printeroptions|extended_tip|placeholders"
msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout."
-msgstr ""
+msgstr "Включете тази настройка, за да се отпечатат запазените места в текста. Изключете я, за да оставите запазените места празни в разпечатката."
#. 3y2Gm
#: sw/uiconfig/swriter/ui/printeroptions.ui:106
@@ -24799,7 +24793,7 @@ msgstr "Контроли за формуляри"
#: sw/uiconfig/swriter/ui/printeroptions.ui:114
msgctxt "printeroptions|extended_tip|formcontrols"
msgid "Specifies whether the form control fields of the text document are printed."
-msgstr ""
+msgstr "Определя дали да се отпечатват полетата на контроли от формуляри в текстов документ."
#. w7VH3
#: sw/uiconfig/swriter/ui/printeroptions.ui:134
@@ -24811,7 +24805,7 @@ msgstr "Коментари:"
#: sw/uiconfig/swriter/ui/printeroptions.ui:150
msgctxt "printeroptions|extended_tip|writercomments"
msgid "Specify where to print comments (if any)."
-msgstr ""
+msgstr "Указва къде да се печатат коментарите (ако има такива)."
#. M6JQf
#: sw/uiconfig/swriter/ui/printeroptions.ui:173
@@ -24829,7 +24823,7 @@ msgstr "Печат на текста в черно"
#: sw/uiconfig/swriter/ui/printeroptions.ui:204
msgctxt "printeroptions|extended_tip|textinblack"
msgid "Specifies whether to always print text in black."
-msgstr ""
+msgstr "Указва дали текстът винаги да се отпечатва в черно."
#. uFDfh
#: sw/uiconfig/swriter/ui/printeroptions.ui:213
@@ -24847,7 +24841,7 @@ msgstr "Отпечатване на автоматичните празни ст
#: sw/uiconfig/swriter/ui/printeroptions.ui:244
msgctxt "printeroptions|extended_tip|autoblankpages"
msgid "If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page."
-msgstr ""
+msgstr "Ако е отметнато, ще се отпечатват автоматично вмъкнатите празни страници. Така е най-добре, ако печатате двустранно. Например в книга може абзацният стил „Глава“ да е настроен винаги да започва на страница с нечетен номер. Ако предишната глава завършва върху нечетна страница, %PRODUCTNAME вмъква празна страница с четен номер. Тази настройка определя дали да се отпечатва въпросната четна страница."
#. tkryr
#: sw/uiconfig/swriter/ui/printeroptions.ui:253
@@ -24925,7 +24919,7 @@ msgstr "Печат на текста в черно"
#: sw/uiconfig/swriter/ui/printoptionspage.ui:99
msgctxt "extended_tip|inblack"
msgid "Specifies whether to always print text in black."
-msgstr "Указва печатане на текста винаги в черно."
+msgstr "Указва дали текстът винаги да се отпечатва в черно."
#. EhvUm
#: sw/uiconfig/swriter/ui/printoptionspage.ui:110
@@ -24937,7 +24931,7 @@ msgstr "Скрит текст"
#: sw/uiconfig/swriter/ui/printoptionspage.ui:118
msgctxt "extended_tip|hiddentext"
msgid "Enable this option to print text that is marked as hidden."
-msgstr "Отметнете това поле за отпечатване на текста, отбелязан като скрит."
+msgstr "Ако включите тази настройка, ще се отпечата и текстът, маркиран като скрит."
#. AkeAw
#: sw/uiconfig/swriter/ui/printoptionspage.ui:129
@@ -29732,200 +29726,200 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr "Задайте начина, по който желаете да се излива текстът около даден обект."
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr "Без обтичане"
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr "Поставя обекта на отделен ред в документа. Текстът на документа остава над и под обекта, но не и встрани от него."
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr "Преди"
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr "Излива текста от лявата страна на обекта, ако има достатъчно място."
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr "След"
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr "Излива текста от дясната страна на обекта, ако има достатъчно място."
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "Успоредно"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr "Текстът обтича рамката на обекта от всичките й четири страни."
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr "През"
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr "Поставя обекта пред текста."
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr "Без обтичане"
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr "Поставя обекта на отделен ред в документа. Текстът на документа остава над и под обекта, но не и встрани от него."
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "Оптимално"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr "Автоматично излива текста отляво, отдясно или от всички страни на рамката на обекта. Ако разстоянието между обекта и бялото поле на страницата е по-малко от 2 см, текстът не се излива оттам."
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "Настройки"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "Отляво:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "Отдясно:"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "Отгоре:"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "Отдолу:"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "Въведете разстоянието, което искате да оставите между левия ръб на обекта и текста."
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "Въведете разстоянието, което искате да оставите между десния ръб на обекта и текста."
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "Въведете разстоянието, което искате да оставите межу горния ръб на обекта и текста."
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "Въведете разстоянието, което искате да оставите между долния ръб на обекта и текста."
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "Отстояния"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "Първи абзац"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr "Започва нов абзац под обекта, след като натиснете Enter."
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "Във фона"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr "Премества избрания обект във фона. Тази възможност е достъпна само ако сте избрали През като настройка за обтичане."
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "Контур"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr "Текстът обтича плътно формата на обекта. Тази настройка не е достъпна в режима на обтичане През, както и за рамки."
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "Само отвън"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "Излива текст само около контура на обекта, но не и в свободните области във вътрешността на обекта."
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr "Разрешено застъпване"
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "Настройки"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr "Задайте начина, по който желаете да се излива текстът около даден обект."
diff --git a/source/bg/uui/messages.po b/source/bg/uui/messages.po
index 3f70b967a4c..023a6669aa1 100644
--- a/source/bg/uui/messages.po
+++ b/source/bg/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-02-26 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/bg/>\n"
@@ -649,17 +649,15 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "Документът се използва"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
-"Файлът на документа „$(ARG1)“ е заключен за редактиране от вас на друга система от $(ARG2).\n"
-"\n"
-"Отворете документа в режим само за четене или игнорирайте заключването и отворете документа за редактиране."
#. 8mKMg
#: uui/inc/strings.hrc:34
@@ -667,14 +665,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне ~само за четене"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "~Отваряне"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -686,77 +690,82 @@ msgstr ""
"Затворете документа на другата система и отново опитайте да запишете или игнорирайте заключването и запишете текущия документ."
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "Повторно записване"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "Записване"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "~Запомняне на паролата до края на сесията"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "~Запомняне на паролата"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "Некодирани потоци"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr "Документът не може да бъде заключен"
-#. XBEF9
-#: uui/inc/strings.hrc:45
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "Не бе възможно да се създаде заключващ файл за изключителен достъп от %PRODUCTNAME, защото липсват права за създаване на заключващ файл на това местоположение или няма достатъчно дисково пространство."
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне само за четене"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "Документът се използва"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
-"Файлът на документа „$(ARG1)“ е заключен за редактиране от:\n"
-"\n"
-"$(ARG2)\n"
-"\n"
-"Отворете документа в режим само за четене или отворете копие за редактиране.$(ARG3)"
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -766,31 +775,37 @@ msgstr ""
"Можете също така да игнорирате заключването на файла и да отворите документа за редактиране."
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне ~само за четене"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Отваряне на ~копие"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "Непознат потребител"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "Документът е променен от други"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -802,19 +817,19 @@ msgstr ""
"Желаете ли да го запишете въпреки това?"
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "Записване все пак"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "Документът се използва"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -830,7 +845,7 @@ msgstr ""
"Опитайте да запишете документа по-късно или запишете негово копие."
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -846,19 +861,19 @@ msgstr ""
"Може да опитате да игнорирате заключването на файла и да заместите съществуващия документ."
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "Повторно записване"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "Записване като..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -868,7 +883,7 @@ msgstr ""
"Изберете „Замяна“, за да бъде заместен, или въведете ново име."
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -878,59 +893,116 @@ msgstr ""
"Моля, въведете ново име."
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr "Моля, въведете друго име на файл!"
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "Паролата е неправилна. Файлът не може да бъде отворен."
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "Паролата е неправилна. Файлът не може да бъде променян."
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "Главната парола е неправилна."
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "Паролата е неправилна."
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "Потвърждението на паролата не съвпада."
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr "Заключващият файл е повреден"
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
-msgstr "Заключващият файл е повреден и вероятно празен. За да го изтриете, отворете документа само за четене, после го затворете."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "Отваряне само за четене"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/bg/vcl/messages.po b/source/bg/vcl/messages.po
index 87d5e011c0c..7d8b238b8d0 100644
--- a/source/bg/vcl/messages.po
+++ b/source/bg/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-05-14 14:17+0200\n"
-"PO-Revision-Date: 2021-04-15 08:37+0000\n"
+"PO-Revision-Date: 2021-05-16 05:37+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"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.4.2\n"
"X-POOTLE-MTIME: 1562422991.000000\n"
#. k5jTM
@@ -609,7 +609,7 @@ msgstr "Печат само на избраното"
#: vcl/inc/strings.hrc:25
msgctxt "SV_RESID_STRING_NOSELECTIONPOSSIBLE"
msgid "[No selection possible]"
-msgstr ""
+msgstr "[Не е възможен избор]"
#. QbQEb
#: vcl/inc/strings.hrc:27
@@ -1960,7 +1960,7 @@ msgstr "Последна страница"
#: vcl/uiconfig/ui/printdialog.ui:193
msgctxt "printdialog|extended_tip|btnLast"
msgid "Shows preview of the last page."
-msgstr ""
+msgstr "Показва мостра на последната страница."
#. CZQLF
#: vcl/uiconfig/ui/printdialog.ui:209
@@ -2008,7 +2008,7 @@ msgstr "Първа страница"
#: vcl/uiconfig/ui/printdialog.ui:286
msgctxt "printdialog|extended_tip|btnFirst"
msgid "Shows preview of the first page."
-msgstr ""
+msgstr "Показва мостра на първата страница."
#. dQEY8
#: vcl/uiconfig/ui/printdialog.ui:312
@@ -2110,7 +2110,7 @@ msgstr "Селекция"
#: vcl/uiconfig/ui/printdialog.ui:593
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
-msgstr ""
+msgstr "Отпечатва само избраните области или обекти в текущия документ."
#. UKYwM
#: vcl/uiconfig/ui/printdialog.ui:607
@@ -2140,7 +2140,7 @@ msgstr "Четни страници"
#: vcl/uiconfig/ui/printdialog.ui:630
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
-msgstr ""
+msgstr "Изберете подмножество от страници за отпечатване."
#. wn2kB
#: vcl/uiconfig/ui/printdialog.ui:661
@@ -2428,7 +2428,7 @@ msgstr "Брошура"
#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
-msgstr ""
+msgstr "Изберете, за да отпечатате документа във формат на брошура."
#. JMA7A
#: vcl/uiconfig/ui/printdialog.ui:1325
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 89c8c50d4ed..eb19a633482 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4529,79 +4529,79 @@ msgid "_Replace"
msgstr "প্রতিস্থাপন (_R)"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "সংক্ষিপ্ত শব্দ মুছে ফেলুন"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "সংক্ষেপকরণ (পরবর্তী বড় হাতের অক্ষর নয়)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "স্বয়ংক্রিয় অন্তর্ভূক্ত(_u)"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "প্রতিস্থাপন (_R)"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9902,194 +9902,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "ফর্ম্যাট"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "হ্যানগুল/হ্যানজা (_H)"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "হাঞ্জা (হাজ্ঞুল (_g))"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "হাংগুল (_u) (হাঞ্জা)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "হ্যানগুল/হ্যানজা (_H)"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "হাঞ্জা (হাজ্ঞুল (_g))"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "হাংগুল (_u) (হাঞ্জা)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "রূপান্তর"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "শুধুমাত্র হাংগুল (_o)"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "শুধুমাত্র হাঞ্জা (_y)"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "উপেক্ষা করুন (_I)"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "সবসময় উপেক্ষা করুন (_g)"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "প্রতিস্থাপন (_R)"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "সর্বদা প্রতিস্থাপন করুন (_e)"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "অক্ষর দ্বারা প্রতিস্থাপন (_y)"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14478,122 +14478,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "খুলুন/সংরক্ষণ ডায়লগ"
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_d)"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "মুদ্রণ ডায়ালগ"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "মুদ্রণ \"নথি পরিবর্তিত\" অবস্থান নির্ধারণ করেছে (_P)"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "নথির মুদ্রণকরণ পরিবর্তন হিসেবে গণনা করা হয় কিনা তা উল্লেখ করা হয়।"
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির অবস্থা"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "মধ্যবর্তী বছর দিয়ে হিসাব করুন (_I)"
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছর (দুই সংখ্যার)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "ব্যবহৃত তথ্য সংগ্রহ করুন এবং ডকুমেন্ট ফাউন্ডেশনে পাঠান"
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম আরম্ভ করার সময় %PRODUCTNAME লোড"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার সক্রিয়"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME কুইকস্টার্টার"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "%PRODUCTNAME এর জন্য সাধারণ সেটিং সুনির্দিষ্ট করে।"
@@ -15585,14 +15573,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "অনলাইন হালনাগাদ অপশন"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20504,67 +20498,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "ক্রমবৃদ্ধি:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "পিক্সেল (_P)"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "বিলম্ব:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "স্বয়ংক্রিয় (_A)"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "বৈশিষ্ট্যাবলী"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21085,10 +21079,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
diff --git a/source/bn-IN/extras/source/autocorr/emoji.po b/source/bn-IN/extras/source/autocorr/emoji.po
index 47a84401aaa..a8b995c544f 100644
--- a/source/bn-IN/extras/source/autocorr/emoji.po
+++ b/source/bn-IN/extras/source/autocorr/emoji.po
@@ -3,20 +3,21 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2018-11-11 07:35+0000\n"
-"Last-Translator: biraj <brnet00@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: bn_IN\n"
+"POT-Creation-Date: 2019-07-11 18:38+0200\n"
+"PO-Revision-Date: 2021-05-27 15:37+0000\n"
+"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
+"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/bn_IN/>\n"
+"Language: bn-IN\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: 1541921736.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
+#. 6xmho
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -26,6 +27,7 @@ msgid "cent"
msgstr "cent"
#. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji
+#. 8cRaa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -35,6 +37,7 @@ msgid "pound"
msgstr "pound"
#. ¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji
+#. dDHGm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -44,6 +47,7 @@ msgid "yen"
msgstr "yen"
#. § (U+000A7), see http://wiki.documentfoundation.org/Emoji
+#. 2CS6Y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -53,6 +57,7 @@ msgid "section"
msgstr "বিভাগ"
#. © (U+000A9), see http://wiki.documentfoundation.org/Emoji
+#. 8JZew
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -62,6 +67,7 @@ msgid "copyright"
msgstr "কপিরাইট"
#. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji
+#. Kof3U
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -71,6 +77,7 @@ msgid "not"
msgstr "নয়"
#. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji
+#. QtogK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -80,6 +87,7 @@ msgid "registered"
msgstr "নিবন্ধভুক্ত"
#. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji
+#. KCLL8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -89,6 +97,7 @@ msgid "degree"
msgstr "ডিগ্রি"
#. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji
+#. rFAFf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -98,6 +107,7 @@ msgid "+-"
msgstr "+-"
#. · (U+000B7), see http://wiki.documentfoundation.org/Emoji
+#. GHgFG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -107,6 +117,7 @@ msgid "middle dot"
msgstr "মধ্য বিন্দু"
#. × (U+000D7), see http://wiki.documentfoundation.org/Emoji
+#. L8X6v
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -116,6 +127,7 @@ msgid "x"
msgstr "x"
#. Α (U+00391), see http://wiki.documentfoundation.org/Emoji
+#. gs5Aw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -125,6 +137,7 @@ msgid "Alpha"
msgstr "আলফা"
#. Β (U+00392), see http://wiki.documentfoundation.org/Emoji
+#. uuARW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -134,6 +147,7 @@ msgid "Beta"
msgstr "বিটা"
#. Γ (U+00393), see http://wiki.documentfoundation.org/Emoji
+#. BWfEu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -143,6 +157,7 @@ msgid "Gamma"
msgstr "গামা"
#. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji
+#. XThsR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -152,6 +167,7 @@ msgid "Delta"
msgstr "ডেলটা"
#. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji
+#. 8xpsp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -161,6 +177,7 @@ msgid "Epsilon"
msgstr "এপসিলন"
#. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji
+#. VbdgL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -170,15 +187,17 @@ msgid "Zeta"
msgstr "যেটা"
#. Η (U+00397), see http://wiki.documentfoundation.org/Emoji
+#. H3pQT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"GREEK_CAPITAL_LETTER_ETA\n"
"LngText.text"
msgid "Eta"
-msgstr ""
+msgstr "ইটা"
#. Θ (U+00398), see http://wiki.documentfoundation.org/Emoji
+#. Q45oB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -188,6 +207,7 @@ msgid "Theta"
msgstr "থীটা"
#. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji
+#. bTxcC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -197,6 +217,7 @@ msgid "Iota"
msgstr "আইওটা"
#. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji
+#. j5BVA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -206,6 +227,7 @@ msgid "Kappa"
msgstr "কাপ্পা"
#. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji
+#. gGXpA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -215,6 +237,7 @@ msgid "Lambda"
msgstr "ল্যাম্বডা"
#. Μ (U+0039C), see http://wiki.documentfoundation.org/Emoji
+#. 3GCFv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -224,6 +247,7 @@ msgid "Mu"
msgstr "Mu"
#. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji
+#. zT27g
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -233,6 +257,7 @@ msgid "Nu"
msgstr "Nu"
#. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji
+#. GJAnw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -242,6 +267,7 @@ msgid "Xi"
msgstr "Xi"
#. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji
+#. aWg4V
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -251,6 +277,7 @@ msgid "Omicron"
msgstr "ওমিক্রন"
#. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji
+#. Mohkh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -260,6 +287,7 @@ msgid "Pi"
msgstr "Pi"
#. Ρ (U+003A1), see http://wiki.documentfoundation.org/Emoji
+#. TMJmd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -269,6 +297,7 @@ msgid "Rho"
msgstr "Rho"
#. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji
+#. tY2FG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -278,6 +307,7 @@ msgid "Sigma"
msgstr "Sigma"
#. Τ (U+003A4), see http://wiki.documentfoundation.org/Emoji
+#. VXNwC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -287,6 +317,7 @@ msgid "Tau"
msgstr "Tau"
#. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji
+#. XYQqL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -296,6 +327,7 @@ msgid "Upsilon"
msgstr "Upsilon"
#. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji
+#. C3riA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -305,6 +337,7 @@ msgid "Phi"
msgstr "Phi"
#. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji
+#. Gx6Mx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -314,6 +347,7 @@ msgid "Chi"
msgstr "Chi"
#. Ψ (U+003A8), see http://wiki.documentfoundation.org/Emoji
+#. tCiRw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -323,6 +357,7 @@ msgid "Psi"
msgstr "Psi"
#. Ω (U+003A9), see http://wiki.documentfoundation.org/Emoji
+#. CJ22A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -332,6 +367,7 @@ msgid "Omega"
msgstr "ওমেগা"
#. α (U+003B1), see http://wiki.documentfoundation.org/Emoji
+#. vyYUc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -341,6 +377,7 @@ msgid "alpha"
msgstr "আলফা"
#. β (U+003B2), see http://wiki.documentfoundation.org/Emoji
+#. XsUBy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -350,6 +387,7 @@ msgid "beta"
msgstr "বিটা"
#. γ (U+003B3), see http://wiki.documentfoundation.org/Emoji
+#. JUGYe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -359,6 +397,7 @@ msgid "gamma"
msgstr "গামা"
#. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji
+#. qZEC9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -368,6 +407,7 @@ msgid "delta"
msgstr "ডেলটা"
#. ε (U+003B5), see http://wiki.documentfoundation.org/Emoji
+#. goVBj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -377,6 +417,7 @@ msgid "epsilon"
msgstr "এপসিলন"
#. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji
+#. wdzS2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -386,6 +427,7 @@ msgid "zeta"
msgstr "জীটা"
#. η (U+003B7), see http://wiki.documentfoundation.org/Emoji
+#. 4ei53
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -395,6 +437,7 @@ msgid "eta"
msgstr "ঈটা"
#. θ (U+003B8), see http://wiki.documentfoundation.org/Emoji
+#. D6Y8P
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -404,6 +447,7 @@ msgid "theta"
msgstr "থীটা"
#. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji
+#. qVFWA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -413,6 +457,7 @@ msgid "iota"
msgstr "আইওটা"
#. κ (U+003BA), see http://wiki.documentfoundation.org/Emoji
+#. V3aBQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -422,6 +467,7 @@ msgid "kappa"
msgstr "কাপা"
#. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji
+#. hneie
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -431,6 +477,7 @@ msgid "lambda"
msgstr "ল্যাম্বডা"
#. μ (U+003BC), see http://wiki.documentfoundation.org/Emoji
+#. CgE9e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -440,6 +487,7 @@ msgid "mu"
msgstr "মিউ"
#. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji
+#. AK8Mx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -449,6 +497,7 @@ msgid "nu"
msgstr "নিউ"
#. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji
+#. 7SGbf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -458,6 +507,7 @@ msgid "xi"
msgstr "জাই"
#. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji
+#. 2huiW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -467,6 +517,7 @@ msgid "omicron"
msgstr "ওমিক্রন"
#. π (U+003C0), see http://wiki.documentfoundation.org/Emoji
+#. CEbhy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -476,6 +527,7 @@ msgid "pi"
msgstr "পাই"
#. ρ (U+003C1), see http://wiki.documentfoundation.org/Emoji
+#. ooQb9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -485,6 +537,7 @@ msgid "rho"
msgstr "রো"
#. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji
+#. MSvCj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -494,6 +547,7 @@ msgid "sigma2"
msgstr "সিগমা2"
#. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji
+#. aSVZ2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -503,6 +557,7 @@ msgid "sigma"
msgstr "সিগমা"
#. τ (U+003C4), see http://wiki.documentfoundation.org/Emoji
+#. qCLZj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -512,6 +567,7 @@ msgid "tau"
msgstr "ট্যাউ"
#. υ (U+003C5), see http://wiki.documentfoundation.org/Emoji
+#. DfC5P
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -521,6 +577,7 @@ msgid "upsilon"
msgstr "উপসিলন"
#. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji
+#. 7excc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -530,6 +587,7 @@ msgid "phi"
msgstr "ফাই"
#. χ (U+003C7), see http://wiki.documentfoundation.org/Emoji
+#. MA42P
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -539,6 +597,7 @@ msgid "chi"
msgstr "কাই"
#. ψ (U+003C8), see http://wiki.documentfoundation.org/Emoji
+#. gXp6Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -548,6 +607,7 @@ msgid "psi"
msgstr "psi"
#. ω (U+003C9), see http://wiki.documentfoundation.org/Emoji
+#. KQVmQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -557,6 +617,7 @@ msgid "omega"
msgstr "ওমেগা"
#. ฿ (U+00E3F), see http://wiki.documentfoundation.org/Emoji
+#. ZaCN9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -566,6 +627,7 @@ msgid "baht"
msgstr "baht"
#. – (U+02013), see http://wiki.documentfoundation.org/Emoji
+#. dGEGe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -575,6 +637,7 @@ msgid "--"
msgstr "--"
#. — (U+02014), see http://wiki.documentfoundation.org/Emoji
+#. ZJM6b
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -584,6 +647,7 @@ msgid "---"
msgstr "---"
#. ’ (U+02019), see http://wiki.documentfoundation.org/Emoji
+#. NDiwS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -593,43 +657,47 @@ msgid "'"
msgstr "'"
#. † (U+02020), see http://wiki.documentfoundation.org/Emoji
+#. 6juUB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"DAGGER\n"
"LngText.text"
msgid "dagger"
-msgstr ""
+msgstr "খঞ্জক"
#. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji
+#. c56EK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"DOUBLE_DAGGER\n"
"LngText.text"
msgid "dagger2"
-msgstr ""
+msgstr "খঞ্জক2"
#. • (U+02022), see http://wiki.documentfoundation.org/Emoji
+#. mRFAh
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BULLET\n"
"LngText.text"
msgid "bullet"
-msgstr "বুলেট"
+msgstr "গুলি"
#. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji
+#. cThN2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"TRIANGULAR_BULLET\n"
"LngText.text"
msgid "bullet2"
-msgstr ""
+msgstr "গুলি2"
#. … (U+02026), see http://wiki.documentfoundation.org/Emoji
+#. Wge4r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -639,33 +707,37 @@ msgid "."
msgstr "."
#. ‰ (U+02030), see http://wiki.documentfoundation.org/Emoji
+#. 329ZF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"PER_MILLE_SIGN\n"
"LngText.text"
msgid "per mille"
-msgstr ""
+msgstr "প্রতি মাইল"
#. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji
+#. 9QbnT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"PER_TEN_THOUSAND_SIGN\n"
"LngText.text"
msgid "basis point"
-msgstr ""
+msgstr "ভিত্তি মূল"
#. ′ (U+02032), see http://wiki.documentfoundation.org/Emoji
+#. Yfy5x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"PRIME\n"
"LngText.text"
msgid "prime"
-msgstr ""
+msgstr "মৌলিক"
#. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji
+#. qR3Eg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -675,8 +747,8 @@ msgid "inch"
msgstr "ইঞ্চি"
#. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji
+#. yALTE
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"DOUBLE_EXCLAMATION_MARK\n"
@@ -685,8 +757,8 @@ msgid "!!"
msgstr "!!"
#. ⁉ (U+02049), see http://wiki.documentfoundation.org/Emoji
+#. YFhmQ
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"EXCLAMATION_QUESTION_MARK\n"
@@ -695,89 +767,98 @@ msgid "!?"
msgstr "!?"
#. ₤ (U+020A4), see http://wiki.documentfoundation.org/Emoji
+#. WxoZ3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LIRA_SIGN\n"
"LngText.text"
msgid "lira"
-msgstr ""
+msgstr "লিরা"
#. ₩ (U+020A9), see http://wiki.documentfoundation.org/Emoji
+#. MkHc9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WON_SIGN\n"
"LngText.text"
msgid "won"
-msgstr ""
+msgstr "জিতেছিল"
#. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji
+#. yXiVG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NEW_SHEQEL_SIGN\n"
"LngText.text"
msgid "shekel"
-msgstr ""
+msgstr "শেকেল"
#. € (U+020AC), see http://wiki.documentfoundation.org/Emoji
+#. C5Xz8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"EURO_SIGN\n"
"LngText.text"
msgid "euro"
-msgstr ""
+msgstr "ইউরো"
#. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji
+#. RAAbk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"PESO_SIGN\n"
"LngText.text"
msgid "peso"
-msgstr ""
+msgstr "পেসো"
#. ₴ (U+020B4), see http://wiki.documentfoundation.org/Emoji
+#. nc5ED
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"HRYVNIA_SIGN\n"
"LngText.text"
msgid "hryvnia"
-msgstr ""
+msgstr "রাইভনিয়া"
#. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji
+#. Vryoo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"INDIAN_RUPEE_SIGN\n"
"LngText.text"
msgid "rupee"
-msgstr ""
+msgstr "রুপী"
#. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji
+#. DH9a6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"TURKISH_LIRA_SIGN\n"
"LngText.text"
msgid "Turkish lira"
-msgstr ""
+msgstr "তুর্কি লিরা"
#. ™ (U+02122), see http://wiki.documentfoundation.org/Emoji
+#. mHDtt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"TRADE_MARK_SIGN\n"
"LngText.text"
msgid "tm"
-msgstr ""
+msgstr "টিএম"
#. ℹ (U+02139), see http://wiki.documentfoundation.org/Emoji
+#. 8a4FF
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INFORMATION_SOURCE\n"
@@ -786,188 +867,208 @@ msgid "information"
msgstr "তথ্য"
#. ← (U+02190), see http://wiki.documentfoundation.org/Emoji
+#. jERBH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LEFTWARDS_ARROW\n"
"LngText.text"
msgid "W"
-msgstr ""
+msgstr "পঃ"
#. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji
+#. oCunh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"UPWARDS_ARROW\n"
"LngText.text"
msgid "N"
-msgstr ""
+msgstr "উঃ"
#. → (U+02192), see http://wiki.documentfoundation.org/Emoji
+#. qXYvd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"RIGHTWARDS_ARROW\n"
"LngText.text"
msgid "E"
-msgstr ""
+msgstr "পূ:"
#. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji
+#. 8Riz5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"DOWNWARDS_ARROW\n"
"LngText.text"
msgid "S"
-msgstr ""
+msgstr "দঃ"
#. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji
+#. dtgFb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LEFT_RIGHT_ARROW\n"
"LngText.text"
msgid "EW"
-msgstr ""
+msgstr "পুঃপঃ"
#. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji
+#. R6B9o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"UP_DOWN_ARROW\n"
"LngText.text"
msgid "NS"
-msgstr ""
+msgstr "উঃদঃ"
#. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji
+#. CvbGW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NORTH_WEST_ARROW\n"
"LngText.text"
msgid "NW"
-msgstr ""
+msgstr "উঃপঃ"
#. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji
+#. 8CiGM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NORTH_EAST_ARROW\n"
"LngText.text"
msgid "NE"
-msgstr ""
+msgstr "উঃপুঃ"
#. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji
+#. srbAr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SOUTH_EAST_ARROW\n"
"LngText.text"
msgid "SE"
-msgstr ""
+msgstr "দঃপুঃ"
#. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji
+#. eGiA8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SOUTH_WEST_ARROW\n"
"LngText.text"
msgid "SW"
-msgstr ""
+msgstr "দঃপঃ"
#. ⇐ (U+021D0), see http://wiki.documentfoundation.org/Emoji
+#. peETz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LEFTWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "W2"
-msgstr ""
+msgstr "পঃ2"
#. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji
+#. GS2Tv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"UPWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "N2"
-msgstr ""
+msgstr "উঃ২"
#. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji
+#. sfFjB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"RIGHTWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "E2"
-msgstr ""
+msgstr "পুঃ২"
#. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji
+#. axJEV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"DOWNWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "S2"
-msgstr ""
+msgstr "দঃ২"
#. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji
+#. xCA5h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LEFT_RIGHT_DOUBLE_ARROW\n"
"LngText.text"
msgid "EW2"
-msgstr ""
+msgstr "পুঃপঃ২"
#. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji
+#. ooqFJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"UP_DOWN_DOUBLE_ARROW\n"
"LngText.text"
msgid "NS2"
-msgstr ""
+msgstr "উঃদঃ২"
#. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji
+#. 9XEKB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NORTH_WEST_DOUBLE_ARROW\n"
"LngText.text"
msgid "NW2"
-msgstr ""
+msgstr "উঃপঃ২"
#. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji
+#. kBBLu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NORTH_EAST_DOUBLE_ARROW\n"
"LngText.text"
msgid "NE2"
-msgstr ""
+msgstr "উঃপুঃ২"
#. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji
+#. kZFfR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SOUTH_EAST_DOUBLE_ARROW\n"
"LngText.text"
msgid "SE2"
-msgstr ""
+msgstr "দঃপুঃ২"
#. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji
+#. 99Cgg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SOUTH_WEST_DOUBLE_ARROW\n"
"LngText.text"
msgid "SW2"
-msgstr ""
+msgstr "দঃপঃ২"
#. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji
+#. BMXif
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FOR_ALL\n"
@@ -976,8 +1077,8 @@ msgid "for all"
msgstr "সকলের জন্য"
#. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji
+#. 3erep
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PARTIAL_DIFFERENTIAL\n"
@@ -986,34 +1087,37 @@ msgid "partial"
msgstr "আংশিক"
#. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji
+#. 4DtLF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"THERE_EXISTS\n"
"LngText.text"
msgid "exists"
-msgstr ""
+msgstr "বিদ্যমান"
#. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji
+#. AgmBJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"THERE_DOES_NOT_EXIST\n"
"LngText.text"
msgid "not exists"
-msgstr ""
+msgstr "বিদ্যমান নয়"
#. ∅ (U+02205), see http://wiki.documentfoundation.org/Emoji
+#. B2jLu
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"EMPTY_SET\n"
"LngText.text"
msgid "empty set"
-msgstr "ফাঁকা সেট"
+msgstr "খালি সেট"
#. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji
+#. FJ3rt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1023,62 +1127,68 @@ msgid "in"
msgstr "ইঞ্চি"
#. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji
+#. BEMCd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NOT_AN_ELEMENT_OF\n"
"LngText.text"
msgid "not in"
-msgstr ""
+msgstr "নাই"
#. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji
+#. 4eyex
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SMALL_ELEMENT_OF\n"
"LngText.text"
msgid "small in"
-msgstr ""
+msgstr "ছোটো"
#. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji
+#. E33bc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"CONTAINS_AS_MEMBER\n"
"LngText.text"
msgid "ni"
-msgstr ""
+msgstr "নি"
#. ∌ (U+0220C), see http://wiki.documentfoundation.org/Emoji
+#. i8AAQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"DOES_NOT_CONTAIN_AS_MEMBER\n"
"LngText.text"
msgid "not ni"
-msgstr ""
+msgstr "নি নয়"
#. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji
+#. ACf4U
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SMALL_CONTAINS_AS_MEMBER\n"
"LngText.text"
msgid "small ni"
-msgstr ""
+msgstr "ছোট নি"
#. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji
+#. xexAk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"END_OF_PROOF\n"
"LngText.text"
msgid "end of proof"
-msgstr ""
+msgstr "প্রমান শেষ"
#. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji
+#. KWECz
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"N-ARY_PRODUCT\n"
@@ -1087,15 +1197,17 @@ msgid "product"
msgstr "গুণফল"
#. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji
+#. UVdh3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"N-ARY_SUMMATION\n"
"LngText.text"
msgid "sum"
-msgstr ""
+msgstr "যোগফল"
#. − (U+02212), see http://wiki.documentfoundation.org/Emoji
+#. 5NBVJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1105,17 +1217,18 @@ msgid "-"
msgstr "-"
#. ∓ (U+02213), see http://wiki.documentfoundation.org/Emoji
+#. TdiGF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"MINUS-OR-PLUS_SIGN\n"
"LngText.text"
msgid "-+"
-msgstr ""
+msgstr "-+"
#. ∕ (U+02215), see http://wiki.documentfoundation.org/Emoji
+#. zLnUp
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"DIVISION_SLASH\n"
@@ -1124,6 +1237,7 @@ msgid "/"
msgstr "/"
#. ∖ (U+02216), see http://wiki.documentfoundation.org/Emoji
+#. WZvbU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1133,35 +1247,38 @@ msgid "\\"
msgstr "\\"
#. √ (U+0221A), see http://wiki.documentfoundation.org/Emoji
+#. MfxE9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SQUARE_ROOT\n"
"LngText.text"
msgid "sqrt"
-msgstr "sqrt"
+msgstr "বর্গমূল"
#. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji
+#. 3JZoB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"CUBE_ROOT\n"
"LngText.text"
msgid "cube root"
-msgstr ""
+msgstr "ঘনমূল"
#. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji
+#. imnuC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"FOURTH_ROOT\n"
"LngText.text"
msgid "fourth root"
-msgstr ""
+msgstr "চতূর্থমূল"
#. ∞ (U+0221E), see http://wiki.documentfoundation.org/Emoji
+#. 4CYyH
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INFINITY\n"
@@ -1170,46 +1287,48 @@ msgid "infinity"
msgstr "অসীম"
#. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji
+#. mwyod
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"ANGLE\n"
"LngText.text"
msgid "angle"
-msgstr "angle"
+msgstr "কোণ"
#. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji
+#. 4qqsg
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MEASURED_ANGLE\n"
"LngText.text"
msgid "angle2"
-msgstr "angle"
+msgstr "কোণ2"
#. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji
+#. CtcwF
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"DIVIDES\n"
"LngText.text"
msgid "divides"
-msgstr "ভাগ করে"
+msgstr "ভাজ্য"
#. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji
+#. L2Eh8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"DOES_NOT_DIVIDE\n"
"LngText.text"
msgid "not divides"
-msgstr ""
+msgstr "ভাজ্য নয়"
#. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji
+#. BfccK
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PARALLEL_TO\n"
@@ -1218,8 +1337,8 @@ msgid "parallel"
msgstr "সমান্তরাল"
#. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji
+#. sDuNZ
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"NOT_PARALLEL_TO\n"
@@ -1228,6 +1347,7 @@ msgid "nparallel"
msgstr "সমান্তরাল"
#. ∧ (U+02227), see http://wiki.documentfoundation.org/Emoji
+#. DTtod
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1237,6 +1357,7 @@ msgid "and"
msgstr "এবং"
#. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji
+#. sE8Hr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1246,8 +1367,8 @@ msgid "or"
msgstr "অথবা"
#. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji
+#. 6C6CC
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INTERSECTION\n"
@@ -1256,8 +1377,8 @@ msgid "intersection"
msgstr "ছেদ"
#. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji
+#. hHXFt
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"UNION\n"
@@ -1266,74 +1387,77 @@ msgid "union"
msgstr "সংযোগ"
#. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji
+#. xvC96
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INTEGRAL\n"
"LngText.text"
msgid "integral"
-msgstr "যোগজ"
+msgstr "অবিচ্ছেদ্য"
#. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji
+#. oht6X
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"DOUBLE_INTEGRAL\n"
"LngText.text"
msgid "integral2"
-msgstr "যোগজ"
+msgstr "অবিচ্ছেদ্য2"
#. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji
+#. WdFpx
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"TRIPLE_INTEGRAL\n"
"LngText.text"
msgid "integral3"
-msgstr "যোগজ"
+msgstr "অবিচ্ছেদ্য3"
#. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji
+#. qNHWc
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CONTOUR_INTEGRAL\n"
"LngText.text"
msgid "integral4"
-msgstr "যোগজ"
+msgstr "অবিচ্ছেদ্য4"
#. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji
+#. 6cv3C
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"VOLUME_INTEGRAL\n"
"LngText.text"
msgid "integral5"
-msgstr "যোগজ"
+msgstr "অবিচ্ছেদ্য5"
#. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji
+#. mijSG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"ALMOST_EQUAL_TO\n"
"LngText.text"
msgid "~"
-msgstr ""
+msgstr "~"
#. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji
+#. gK9ZL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"NOT_EQUAL_TO\n"
"LngText.text"
msgid "not equal"
-msgstr "সমান নয়"
+msgstr "অসম"
#. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji
+#. jEWTt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1343,6 +1467,7 @@ msgid "<="
msgstr "<="
#. ≥ (U+02265), see http://wiki.documentfoundation.org/Emoji
+#. Ak74B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1352,6 +1477,7 @@ msgid ">="
msgstr ">="
#. ≪ (U+0226A), see http://wiki.documentfoundation.org/Emoji
+#. FzAJY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1361,6 +1487,7 @@ msgid "<<"
msgstr "<<"
#. ≫ (U+0226B), see http://wiki.documentfoundation.org/Emoji
+#. uDGD2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1370,8 +1497,8 @@ msgid ">>"
msgstr ">>"
#. ⊂ (U+02282), see http://wiki.documentfoundation.org/Emoji
+#. j3BAn
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUBSET_OF\n"
@@ -1380,8 +1507,8 @@ msgid "subset"
msgstr "উপসেট"
#. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji
+#. DDtiS
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUPERSET_OF\n"
@@ -1390,8 +1517,8 @@ msgid "superset"
msgstr "সুপারসেট"
#. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji
+#. Cu7Uj
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"NOT_A_SUBSET_OF\n"
@@ -1400,8 +1527,8 @@ msgid "not subset"
msgstr "উপসেট নয়"
#. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji
+#. apBbH
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"NOT_A_SUPERSET_OF\n"
@@ -1410,8 +1537,8 @@ msgid "not superset"
msgstr "সুপারসেট নয়"
#. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji
+#. zPtvC
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"RIGHT_TRIANGLE\n"
@@ -1420,8 +1547,8 @@ msgid "right triangle"
msgstr "সমকোণী ত্রিভুজ"
#. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji
+#. E3KP2
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WATCH\n"
@@ -1430,17 +1557,18 @@ msgid "watch"
msgstr "লক্ষ্যবস্তু"
#. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji
+#. 3VpUE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"HOURGLASS\n"
"LngText.text"
msgid "hourglass"
-msgstr ""
+msgstr "ঘন্টাঘড়ি"
#. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji
+#. jrRFT
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"KEYBOARD\n"
@@ -1449,61 +1577,67 @@ msgid "keyboard"
msgstr "কীবোর্ড"
#. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji
+#. MwTaz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_TRAPEZIUM\n"
"LngText.text"
msgid "trapezium"
-msgstr ""
+msgstr "ট্র্যাপিজিয়াম"
#. ⏰ (U+023F0), see http://wiki.documentfoundation.org/Emoji
+#. PV9xg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"ALARM_CLOCK\n"
"LngText.text"
msgid "alarm clock"
-msgstr ""
+msgstr "অ্যালার্ম ঘড়ি"
#. ⏱ (U+023F1), see http://wiki.documentfoundation.org/Emoji
+#. EbWLg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"STOPWATCH\n"
"LngText.text"
msgid "stopwatch"
-msgstr ""
+msgstr "বিরামঘড়ি"
#. ⏲ (U+023F2), see http://wiki.documentfoundation.org/Emoji
+#. 9sxN9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"TIMER_CLOCK\n"
"LngText.text"
msgid "timer clock"
-msgstr ""
+msgstr "টাইমার ঘড়ি"
#. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji
+#. edBNy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"HOURGLASS_WITH_FLOWING_SAND\n"
"LngText.text"
msgid "hourglass2"
-msgstr ""
+msgstr "ঘণ্টাঘড়ি২"
#. ■ (U+025A0), see http://wiki.documentfoundation.org/Emoji
+#. VdDNs
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_SQUARE\n"
"LngText.text"
msgid "square2"
-msgstr "বর্গক্ষেত্র"
+msgstr "বর্গক্ষেত্র2"
#. □ (U+025A1), see http://wiki.documentfoundation.org/Emoji
+#. BAvfy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1513,34 +1647,37 @@ msgid "square"
msgstr "বর্গক্ষেত্র"
#. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji
+#. bYMxf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BLACK_SMALL_SQUARE\n"
"LngText.text"
msgid "small square2"
-msgstr ""
+msgstr "ছোট বর্গক্ষেত্র2"
#. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji
+#. 4LWyj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_SMALL_SQUARE\n"
"LngText.text"
msgid "small square"
-msgstr ""
+msgstr "ছোট বর্গক্ষেত্র"
#. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji
+#. E9UCs
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_RECTANGLE\n"
"LngText.text"
msgid "rectangle2"
-msgstr "আয়তক্ষেত্র"
+msgstr "আয়তক্ষেত্র2"
#. ▭ (U+025AD), see http://wiki.documentfoundation.org/Emoji
+#. dCXPA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1550,18 +1687,18 @@ msgid "rectangle"
msgstr "আয়তক্ষেত্র"
#. ▰ (U+025B0), see http://wiki.documentfoundation.org/Emoji
+#. ETzJE
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_PARALLELOGRAM\n"
"LngText.text"
msgid "parallelogram2"
-msgstr "সামন্তরিক"
+msgstr "সামন্তরিক2"
#. ▱ (U+025B1), see http://wiki.documentfoundation.org/Emoji
+#. JC7i2
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WHITE_PARALLELOGRAM\n"
@@ -1570,33 +1707,37 @@ msgid "parallelogram"
msgstr "সামন্তরিক"
#. ▲ (U+025B2), see http://wiki.documentfoundation.org/Emoji
+#. yfgb2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BLACK_UP-POINTING_TRIANGLE\n"
"LngText.text"
msgid "triangle2"
-msgstr ""
+msgstr "ত্রিভূজ2"
#. △ (U+025B3), see http://wiki.documentfoundation.org/Emoji
+#. xFfmk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_UP-POINTING_TRIANGLE\n"
"LngText.text"
msgid "triangle"
-msgstr ""
+msgstr "ত্রিভূজ"
#. ◊ (U+025CA), see http://wiki.documentfoundation.org/Emoji
+#. PvWst
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LOZENGE\n"
"LngText.text"
msgid "lozenge"
-msgstr ""
+msgstr "লজেন্স"
#. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji
+#. fUfvU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1606,81 +1747,88 @@ msgid "circle"
msgstr "বৃত্ত"
#. ● (U+025CF), see http://wiki.documentfoundation.org/Emoji
+#. 7DAcp
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_CIRCLE\n"
"LngText.text"
msgid "circle2"
-msgstr "বৃত্ত"
+msgstr "বৃত্ত2"
#. ◦ (U+025E6), see http://wiki.documentfoundation.org/Emoji
+#. gGBsw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_BULLET\n"
"LngText.text"
msgid "bullet3"
-msgstr ""
+msgstr "গুলি3"
#. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji
+#. RQ8e6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LARGE_CIRCLE\n"
"LngText.text"
msgid "large circle"
-msgstr ""
+msgstr "বড় বৃত্ত"
#. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji
+#. YyTqp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_MEDIUM_SQUARE\n"
"LngText.text"
msgid "medium square"
-msgstr ""
+msgstr "মধ্যমাকার বর্গক্ষেত্র"
#. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji
+#. Uf3gH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BLACK_MEDIUM_SQUARE\n"
"LngText.text"
msgid "medium square2"
-msgstr ""
+msgstr "মধ্যমাকার বর্গক্ষেত্র2"
#. ◽ (U+025FD), see http://wiki.documentfoundation.org/Emoji
+#. k9E4v
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_MEDIUM_SMALL_SQUARE\n"
"LngText.text"
msgid "smaller square"
-msgstr ""
+msgstr "ছোট বর্গক্ষেত্র"
#. ◾ (U+025FE), see http://wiki.documentfoundation.org/Emoji
+#. ovChE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BLACK_MEDIUM_SMALL_SQUARE\n"
"LngText.text"
msgid "smaller square2"
-msgstr ""
+msgstr "ছোট বর্গক্ষেত্র2"
#. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji
+#. M2FkQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BLACK_SUN_WITH_RAYS\n"
"LngText.text"
msgid "sunny"
-msgstr ""
+msgstr "রৌদ্রোজ্জ্বল"
#. ☁ (U+02601), see http://wiki.documentfoundation.org/Emoji
+#. 5vNMi
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOUD\n"
@@ -1689,71 +1837,77 @@ msgid "cloud"
msgstr "মেঘ"
#. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji
+#. NH9jD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"UMBRELLA\n"
"LngText.text"
msgid "umbrella"
-msgstr ""
+msgstr "ছাতা"
#. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji
+#. RA9bd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SNOWMAN\n"
"LngText.text"
msgid "snowman"
-msgstr ""
+msgstr "তুষারমানব"
#. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji
+#. W63n6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"COMET\n"
"LngText.text"
msgid "comet"
-msgstr ""
+msgstr "ধূমকেতু"
#. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji
+#. AnBmJ
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_STAR\n"
"LngText.text"
msgid "star"
-msgstr "শুরু"
+msgstr "তারা"
#. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji
+#. WERW8
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WHITE_STAR\n"
"LngText.text"
msgid "star2"
-msgstr "শুরু"
+msgstr "তারা2"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
+#. KiEUc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
msgid "lightning3"
-msgstr ""
+msgstr "বজ্রপাত2"
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
+#. Bd27c
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
msgid "storm2"
-msgstr ""
+msgstr "ঝড়"
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
+#. TJJbm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1763,100 +1917,108 @@ msgid "Sun"
msgstr "সূর্য"
#. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji
+#. dgVDD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BLACK_TELEPHONE\n"
"LngText.text"
msgid "phone"
-msgstr ""
+msgstr "ফোন"
#. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji
+#. gLfBj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"WHITE_TELEPHONE\n"
"LngText.text"
msgid "phone2"
-msgstr ""
+msgstr "ফোন2"
#. ☐ (U+02610), see http://wiki.documentfoundation.org/Emoji
+#. Pwd6y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BALLOT_BOX\n"
"LngText.text"
msgid "checkbox"
-msgstr ""
+msgstr "চেকবক্স"
#. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji
+#. g5A4j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BALLOT_BOX_WITH_CHECK\n"
"LngText.text"
msgid "checkbox2"
-msgstr ""
+msgstr "চেকবক্স2"
#. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji
+#. WCu8C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BALLOT_BOX_WITH_X\n"
"LngText.text"
msgid "checkbox3"
-msgstr ""
+msgstr "চেকবক্স3"
#. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji
+#. XgRVb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SALTIRE\n"
"LngText.text"
msgid "saltire"
-msgstr ""
+msgstr "সালটের"
#. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji
+#. tAK2C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"UMBRELLA_WITH_RAIN_DROPS\n"
"LngText.text"
msgid "rain"
-msgstr ""
+msgstr "বর্ষা"
#. ☕ (U+02615), see http://wiki.documentfoundation.org/Emoji
+#. aPUY3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"HOT_BEVERAGE\n"
"LngText.text"
msgid "coffee"
-msgstr ""
+msgstr "কফি"
#. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji
+#. HCAHj
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_LEFT_POINTING_INDEX\n"
"LngText.text"
msgid "left3"
-msgstr "বাম"
+msgstr "বাম3"
#. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji
+#. Joh5w
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_RIGHT_POINTING_INDEX\n"
"LngText.text"
msgid "right3"
-msgstr "ডান"
+msgstr "ডান3"
#. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji
+#. GVrVz
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WHITE_LEFT_POINTING_INDEX\n"
@@ -1865,6 +2027,7 @@ msgid "left"
msgstr "বাম"
#. ☝ (U+0261D), see http://wiki.documentfoundation.org/Emoji
+#. gqhNE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1874,8 +2037,8 @@ msgid "up"
msgstr "উপর"
#. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji
+#. ht3yv
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WHITE_RIGHT_POINTING_INDEX\n"
@@ -1884,6 +2047,7 @@ msgid "right"
msgstr "ডান"
#. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji
+#. x8Gff
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1893,69 +2057,77 @@ msgid "down"
msgstr "নিচে"
#. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji
+#. 5vDqS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"SKULL_AND_CROSSBONES\n"
"LngText.text"
msgid "poison"
-msgstr ""
+msgstr "বিষ"
#. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji
+#. oC9id
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"CAUTION_SIGN\n"
"LngText.text"
msgid "caution"
-msgstr ""
+msgstr "সতর্কবার্তা"
#. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji
+#. SjHNN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"RADIOACTIVE_SIGN\n"
"LngText.text"
msgid "radioactive"
-msgstr ""
+msgstr "তেজস্ক্রিয়"
#. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji
+#. FEuBp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"BIOHAZARD_SIGN\n"
"LngText.text"
msgid "biohazard"
-msgstr ""
+msgstr "বায়োহাজার্ড"
#. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji
+#. chcF5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"CADUCEUS\n"
"LngText.text"
msgid "caduceus"
-msgstr ""
+msgstr "ক্যাডুসাস"
#. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji
+#. 4aqGx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"ANKH\n"
"LngText.text"
msgid "ankh"
-msgstr ""
+msgstr "আনখ"
#. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji
+#. Hp2AS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
"ORTHODOX_CROSS\n"
"LngText.text"
msgid "orthodox cross"
-msgstr ""
+msgstr "নৈষ্ঠিক ক্রস"
#. ☧ (U+02627), see http://wiki.documentfoundation.org/Emoji
+#. PfA83
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1965,6 +2137,7 @@ msgid "chi rho"
msgstr ""
#. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji
+#. L8ArM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1974,6 +2147,7 @@ msgid "cross of Lorraine"
msgstr ""
#. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji
+#. WorYC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1983,6 +2157,7 @@ msgid "cross of Jerusalem"
msgstr ""
#. ☪ (U+0262A), see http://wiki.documentfoundation.org/Emoji
+#. PCbQx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -1992,6 +2167,7 @@ msgid "star and crescent"
msgstr ""
#. ☫ (U+0262B), see http://wiki.documentfoundation.org/Emoji
+#. hJ8zc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2001,6 +2177,7 @@ msgid "Farsi"
msgstr ""
#. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji
+#. n8fgp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2010,6 +2187,7 @@ msgid "Adi Shakti"
msgstr ""
#. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji
+#. Ekcos
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2019,6 +2197,7 @@ msgid "hammer and sickle"
msgstr ""
#. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji
+#. FGBij
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2028,6 +2207,7 @@ msgid "peace"
msgstr ""
#. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji
+#. 4h4sG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2037,6 +2217,7 @@ msgid "yin yang"
msgstr ""
#. ☹ (U+02639), see http://wiki.documentfoundation.org/Emoji
+#. kyxBs
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2047,6 +2228,7 @@ msgid "frown"
msgstr "বাদামী"
#. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji
+#. XFcMJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2056,6 +2238,7 @@ msgid "smiling"
msgstr ""
#. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji
+#. HjhDU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2065,6 +2248,7 @@ msgid "smiling2"
msgstr ""
#. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji
+#. TpjzA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2075,6 +2259,7 @@ msgid "Sun2"
msgstr "সূর্য"
#. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji
+#. d9iEk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2084,6 +2269,7 @@ msgid "Moon"
msgstr "চাঁদ"
#. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji
+#. 8Lq2B
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2094,6 +2280,7 @@ msgid "Moon2"
msgstr "চাঁদ"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
+#. vyXwC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2103,6 +2290,7 @@ msgid "mercury"
msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
+#. 3qTne
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2112,6 +2300,7 @@ msgid "female"
msgstr ""
#. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji
+#. hxxDJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2121,6 +2310,7 @@ msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
+#. UnfqG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2131,6 +2321,7 @@ msgid "male"
msgstr "মাইল"
#. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji
+#. BctwY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2140,6 +2331,7 @@ msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
+#. 2paAD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2149,6 +2341,7 @@ msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
+#. LEDYc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2158,6 +2351,7 @@ msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
+#. 7YHnR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2167,6 +2361,7 @@ msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
+#. DbKfF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2176,6 +2371,7 @@ msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
+#. 3N5E9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2185,6 +2381,7 @@ msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
+#. qpNpL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2194,6 +2391,7 @@ msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
+#. zjpz4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2203,6 +2401,7 @@ msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
+#. L33Eb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2212,6 +2411,7 @@ msgid "cancer"
msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
+#. rQ5fy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2221,6 +2421,7 @@ msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
+#. LjdEF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2230,6 +2431,7 @@ msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
+#. Smwbc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2239,6 +2441,7 @@ msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
+#. E2zBz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2248,6 +2451,7 @@ msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
+#. nAeJN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2257,6 +2461,7 @@ msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
+#. dGRFg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2266,6 +2471,7 @@ msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
+#. 6EsoM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2275,6 +2481,7 @@ msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
+#. eAGFG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2284,6 +2491,7 @@ msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
+#. JcAnb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2293,6 +2501,7 @@ msgid "white king"
msgstr ""
#. ♕ (U+02655), see http://wiki.documentfoundation.org/Emoji
+#. TM7js
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2302,6 +2511,7 @@ msgid "white queen"
msgstr ""
#. ♖ (U+02656), see http://wiki.documentfoundation.org/Emoji
+#. GRqXg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2311,6 +2521,7 @@ msgid "white rook"
msgstr ""
#. ♗ (U+02657), see http://wiki.documentfoundation.org/Emoji
+#. p8wfC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2320,6 +2531,7 @@ msgid "white bishop"
msgstr ""
#. ♘ (U+02658), see http://wiki.documentfoundation.org/Emoji
+#. tWL7E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2329,6 +2541,7 @@ msgid "white knight"
msgstr ""
#. ♙ (U+02659), see http://wiki.documentfoundation.org/Emoji
+#. mhhoR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2338,6 +2551,7 @@ msgid "white pawn"
msgstr ""
#. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji
+#. Dp6YG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2347,6 +2561,7 @@ msgid "black king"
msgstr ""
#. ♛ (U+0265B), see http://wiki.documentfoundation.org/Emoji
+#. qbeAi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2356,6 +2571,7 @@ msgid "black queen"
msgstr ""
#. ♜ (U+0265C), see http://wiki.documentfoundation.org/Emoji
+#. P4uqB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2365,6 +2581,7 @@ msgid "black rook"
msgstr ""
#. ♝ (U+0265D), see http://wiki.documentfoundation.org/Emoji
+#. uCgny
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2374,6 +2591,7 @@ msgid "black bishop"
msgstr ""
#. ♞ (U+0265E), see http://wiki.documentfoundation.org/Emoji
+#. qjARs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2383,6 +2601,7 @@ msgid "black knight"
msgstr ""
#. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji
+#. rmVZS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2392,6 +2611,7 @@ msgid "black pawn"
msgstr ""
#. ♠ (U+02660), see http://wiki.documentfoundation.org/Emoji
+#. uvboC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2401,6 +2621,7 @@ msgid "spades"
msgstr ""
#. ♡ (U+02661), see http://wiki.documentfoundation.org/Emoji
+#. t43iF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2410,6 +2631,7 @@ msgid "hearts2"
msgstr ""
#. ♢ (U+02662), see http://wiki.documentfoundation.org/Emoji
+#. GeSFL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2419,6 +2641,7 @@ msgid "diamonds2"
msgstr ""
#. ♣ (U+02663), see http://wiki.documentfoundation.org/Emoji
+#. pYFJB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2428,6 +2651,7 @@ msgid "clubs"
msgstr ""
#. ♤ (U+02664), see http://wiki.documentfoundation.org/Emoji
+#. dajk8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2437,6 +2661,7 @@ msgid "spades2"
msgstr ""
#. ♥ (U+02665), see http://wiki.documentfoundation.org/Emoji
+#. qE59E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2446,6 +2671,7 @@ msgid "hearts"
msgstr ""
#. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji
+#. gKSGj
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2456,6 +2682,7 @@ msgid "diamonds"
msgstr "হীরা"
#. ♧ (U+02667), see http://wiki.documentfoundation.org/Emoji
+#. wRCzA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2465,6 +2692,7 @@ msgid "clubs2"
msgstr ""
#. ♨ (U+02668), see http://wiki.documentfoundation.org/Emoji
+#. vEME9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2474,6 +2702,7 @@ msgid "hot springs"
msgstr ""
#. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji
+#. 3Epzr
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2484,6 +2713,7 @@ msgid "note"
msgstr "নয়"
#. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji
+#. wFCxA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2493,6 +2723,7 @@ msgid "note2"
msgstr ""
#. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji
+#. Zkjwm
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2503,6 +2734,7 @@ msgid "notes"
msgstr "নোট"
#. ♬ (U+0266C), see http://wiki.documentfoundation.org/Emoji
+#. MHiAq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2512,6 +2744,7 @@ msgid "notes2"
msgstr ""
#. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji
+#. hDksD
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2522,6 +2755,7 @@ msgid "flat"
msgstr "ভাসমান"
#. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji
+#. 2wECE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2532,6 +2766,7 @@ msgid "natural"
msgstr "স্বাভাবিক"
#. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji
+#. gr9EM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2541,6 +2776,7 @@ msgid "sharp"
msgstr ""
#. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji
+#. VWtWv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2550,6 +2786,7 @@ msgid "recycling"
msgstr ""
#. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji
+#. SWE9X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2559,6 +2796,7 @@ msgid "recycling2"
msgstr ""
#. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji
+#. 9FCXo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2568,6 +2806,7 @@ msgid "recycled paper"
msgstr ""
#. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji
+#. eH5KB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2577,6 +2816,7 @@ msgid "permanent paper"
msgstr ""
#. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji
+#. RqE6D
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2586,6 +2826,7 @@ msgid "wheelchair"
msgstr ""
#. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji
+#. BcbKe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2595,6 +2836,7 @@ msgid "dice1"
msgstr ""
#. ⚁ (U+02681), see http://wiki.documentfoundation.org/Emoji
+#. QytA9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2604,6 +2846,7 @@ msgid "dice2"
msgstr ""
#. ⚂ (U+02682), see http://wiki.documentfoundation.org/Emoji
+#. fM5fU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2613,6 +2856,7 @@ msgid "dice3"
msgstr ""
#. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji
+#. pEPa2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2622,6 +2866,7 @@ msgid "dice4"
msgstr ""
#. ⚄ (U+02684), see http://wiki.documentfoundation.org/Emoji
+#. 6iVDd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2631,6 +2876,7 @@ msgid "dice5"
msgstr ""
#. ⚅ (U+02685), see http://wiki.documentfoundation.org/Emoji
+#. BXiNG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2640,6 +2886,7 @@ msgid "dice6"
msgstr ""
#. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji
+#. FAqot
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2649,6 +2896,7 @@ msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
+#. fc3Gb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2658,6 +2906,7 @@ msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
+#. BTmxe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2667,6 +2916,7 @@ msgid "hammer and pick"
msgstr ""
#. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji
+#. GMsHG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2677,6 +2927,7 @@ msgid "anchor"
msgstr "নোঙ্গর"
#. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji
+#. Wx5rd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2686,6 +2937,7 @@ msgid "swords"
msgstr ""
#. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji
+#. YYDuu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2695,6 +2947,7 @@ msgid "medical"
msgstr ""
#. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji
+#. eFRLH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2704,6 +2957,7 @@ msgid "scales"
msgstr ""
#. ⚗ (U+02697), see http://wiki.documentfoundation.org/Emoji
+#. bwJmD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2713,6 +2967,7 @@ msgid "alembic"
msgstr ""
#. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji
+#. LAQtt
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2723,6 +2978,7 @@ msgid "flower"
msgstr "ফুল"
#. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji
+#. cw6G2
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2733,6 +2989,7 @@ msgid "gear"
msgstr "বছর"
#. ⚚ (U+0269A), see http://wiki.documentfoundation.org/Emoji
+#. gMDNC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2742,6 +2999,7 @@ msgid "staff"
msgstr ""
#. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji
+#. B96CG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2751,6 +3009,7 @@ msgid "atom"
msgstr ""
#. ⚜ (U+0269C), see http://wiki.documentfoundation.org/Emoji
+#. 4BEEo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2760,6 +3019,7 @@ msgid "fleur de lis"
msgstr ""
#. ⚠ (U+026A0), see http://wiki.documentfoundation.org/Emoji
+#. QjFwh
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2770,6 +3030,7 @@ msgid "warning"
msgstr "সাবধানবাণী"
#. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji
+#. fXBh2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2779,6 +3040,7 @@ msgid "zap"
msgstr ""
#. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji
+#. 9FWWA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2788,6 +3050,7 @@ msgid "white circle"
msgstr ""
#. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji
+#. jQGGR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2797,6 +3060,7 @@ msgid "black circle"
msgstr ""
#. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji
+#. o9oHP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2806,6 +3070,7 @@ msgid "marriage"
msgstr ""
#. ⚮ (U+026AE), see http://wiki.documentfoundation.org/Emoji
+#. jXs4X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2815,6 +3080,7 @@ msgid "divorce"
msgstr ""
#. ⚰ (U+026B0), see http://wiki.documentfoundation.org/Emoji
+#. JDx7T
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2824,6 +3090,7 @@ msgid "coffin"
msgstr ""
#. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji
+#. huKvE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2833,6 +3100,7 @@ msgid "urn"
msgstr ""
#. ⚽ (U+026BD), see http://wiki.documentfoundation.org/Emoji
+#. JTA8e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2842,6 +3110,7 @@ msgid "soccer"
msgstr ""
#. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji
+#. xFBA5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2851,6 +3120,7 @@ msgid "baseball"
msgstr ""
#. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji
+#. CCTQA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2860,6 +3130,7 @@ msgid "snowman2"
msgstr ""
#. ⛅ (U+026C5), see http://wiki.documentfoundation.org/Emoji
+#. xw3m7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2869,6 +3140,7 @@ msgid "cloud2"
msgstr ""
#. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji
+#. A5yxX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2878,6 +3150,7 @@ msgid "rain2"
msgstr ""
#. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji
+#. nBeDn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2887,6 +3160,7 @@ msgid "cloud3"
msgstr ""
#. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji
+#. RmxAt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2896,6 +3170,7 @@ msgid "ophiuchus"
msgstr ""
#. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji
+#. ESYDq
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2906,6 +3181,7 @@ msgid "pick"
msgstr "লিংক"
#. ⛐ (U+026D0), see http://wiki.documentfoundation.org/Emoji
+#. e5D4p
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2915,6 +3191,7 @@ msgid "sliding car"
msgstr ""
#. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji
+#. BoTPo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2924,6 +3201,7 @@ msgid "helmet"
msgstr ""
#. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji
+#. BUgLe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2933,6 +3211,7 @@ msgid "chains"
msgstr ""
#. ⛔ (U+026D4), see http://wiki.documentfoundation.org/Emoji
+#. 2MaDN
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -2943,6 +3222,7 @@ msgid "no entry"
msgstr "সন্নিবেশ নিষেধ"
#. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji
+#. NBJ9F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2952,6 +3232,7 @@ msgid "truck"
msgstr ""
#. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji
+#. ScAbG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2961,6 +3242,7 @@ msgid "pentagram"
msgstr ""
#. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji
+#. M7ovy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2970,6 +3252,7 @@ msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
+#. gFz3j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2979,6 +3262,7 @@ msgid "church"
msgstr ""
#. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji
+#. An5FF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2988,6 +3272,7 @@ msgid "mountain"
msgstr ""
#. ⛱ (U+026F1), see http://wiki.documentfoundation.org/Emoji
+#. 6HqeN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -2997,6 +3282,7 @@ msgid "umbrella3"
msgstr ""
#. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji
+#. 5EUJX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3006,6 +3292,7 @@ msgid "fountain"
msgstr ""
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
+#. GkdBn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3015,6 +3302,7 @@ msgid "golf2"
msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
+#. GLtJt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3024,6 +3312,7 @@ msgid "ferry"
msgstr ""
#. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji
+#. H6AR2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3033,6 +3322,7 @@ msgid "sailboat"
msgstr ""
#. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji
+#. 3DsFA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3043,6 +3333,7 @@ msgid "tent"
msgstr "পাঠ্য"
#. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji
+#. vDnif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3052,6 +3343,7 @@ msgid "skier"
msgstr ""
#. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji
+#. jsVHG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3061,6 +3353,7 @@ msgid "skate"
msgstr ""
#. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji
+#. FRKEE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3071,6 +3364,7 @@ msgid "ball"
msgstr "দেয়াল"
#. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji
+#. aJYuZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3080,6 +3374,7 @@ msgid "fuelpump"
msgstr ""
#. ✁ (U+02701), see http://wiki.documentfoundation.org/Emoji
+#. cfZQA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3089,6 +3384,7 @@ msgid "scissors3"
msgstr ""
#. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji
+#. xEcJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3098,6 +3394,7 @@ msgid "scissors"
msgstr ""
#. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji
+#. ssfwc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3107,6 +3404,7 @@ msgid "scissors4"
msgstr ""
#. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji
+#. xc6qH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3116,6 +3414,7 @@ msgid "scissors2"
msgstr ""
#. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji
+#. jBAFG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3125,6 +3424,7 @@ msgid "check mark3"
msgstr ""
#. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji
+#. E8J8A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3134,6 +3434,7 @@ msgid "telephone"
msgstr ""
#. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji
+#. FEQAH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3143,6 +3444,7 @@ msgid "airplane"
msgstr ""
#. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji
+#. MSzMa
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3153,6 +3455,7 @@ msgid "envelope"
msgstr "খাম"
#. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji
+#. 387gN
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3163,6 +3466,7 @@ msgid "fist"
msgstr "তালিকা"
#. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji
+#. crTfj
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3173,6 +3477,7 @@ msgid "hand"
msgstr "এবং"
#. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji
+#. rxEfQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3182,6 +3487,7 @@ msgid "victory"
msgstr ""
#. ✍ (U+0270D), see http://wiki.documentfoundation.org/Emoji
+#. peWuK
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3192,6 +3498,7 @@ msgid "writing"
msgstr "মুদ্রণ করা হচ্ছে"
#. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji
+#. Be5Dk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3201,6 +3508,7 @@ msgid "pencil"
msgstr ""
#. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji
+#. g9bBy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3210,6 +3518,7 @@ msgid "pencil2"
msgstr ""
#. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji
+#. LuQwT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3219,6 +3528,7 @@ msgid "pencil3"
msgstr ""
#. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji
+#. sS5kP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3228,6 +3538,7 @@ msgid "nib"
msgstr ""
#. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji
+#. vbpZB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3237,6 +3548,7 @@ msgid "nib2"
msgstr ""
#. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji
+#. CjjoU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3246,6 +3558,7 @@ msgid "check mark"
msgstr ""
#. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji
+#. ECpTG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3255,6 +3568,7 @@ msgid "check mark2"
msgstr ""
#. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji
+#. krEhs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3264,6 +3578,7 @@ msgid "times2"
msgstr ""
#. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji
+#. 8dNKN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3273,6 +3588,7 @@ msgid "Greek cross2"
msgstr ""
#. ✚ (U+0271A), see http://wiki.documentfoundation.org/Emoji
+#. BtCjS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3282,6 +3598,7 @@ msgid "Greek cross"
msgstr ""
#. ✝ (U+0271D), see http://wiki.documentfoundation.org/Emoji
+#. dX9La
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3291,6 +3608,7 @@ msgid "Latin cross"
msgstr ""
#. ✠ (U+02720), see http://wiki.documentfoundation.org/Emoji
+#. SRNJ4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3300,6 +3618,7 @@ msgid "Maltese cross"
msgstr ""
#. ✡ (U+02721), see http://wiki.documentfoundation.org/Emoji
+#. HqQC5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3309,6 +3628,7 @@ msgid "star of David"
msgstr ""
#. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji
+#. 8jFfg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3318,6 +3638,7 @@ msgid "sparkles"
msgstr ""
#. ❄ (U+02744), see http://wiki.documentfoundation.org/Emoji
+#. cfDE7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3327,6 +3648,7 @@ msgid "snowflake"
msgstr ""
#. ❇ (U+02747), see http://wiki.documentfoundation.org/Emoji
+#. eKCo6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3336,6 +3658,7 @@ msgid "sparkle"
msgstr ""
#. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji
+#. Winhg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3345,6 +3668,7 @@ msgid "x2"
msgstr ""
#. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji
+#. 5mbLT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3354,6 +3678,7 @@ msgid "x3"
msgstr ""
#. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji
+#. KpGSR
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3364,6 +3689,7 @@ msgid "?"
msgstr "?"
#. ❔ (U+02754), see http://wiki.documentfoundation.org/Emoji
+#. E372z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3373,6 +3699,7 @@ msgid "?2"
msgstr ""
#. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji
+#. CUfKq
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3383,6 +3710,7 @@ msgid "!"
msgstr "!"
#. ❗ (U+02757), see http://wiki.documentfoundation.org/Emoji
+#. WvFdp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3392,6 +3720,7 @@ msgid "!2"
msgstr ""
#. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji
+#. jEJbE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3402,6 +3731,7 @@ msgid "heart"
msgstr "হৃদয়"
#. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji
+#. 9L5EP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3411,6 +3741,7 @@ msgid "loop"
msgstr ""
#. ➿ (U+027BF), see http://wiki.documentfoundation.org/Emoji
+#. DSXDM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3420,6 +3751,7 @@ msgid "loop2"
msgstr ""
#. ⬛ (U+02B1B), see http://wiki.documentfoundation.org/Emoji
+#. WwYcT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3429,6 +3761,7 @@ msgid "large square2"
msgstr ""
#. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji
+#. HrBFD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3438,6 +3771,7 @@ msgid "large square"
msgstr ""
#. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji
+#. hRTAZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3448,6 +3782,7 @@ msgid "pentagon2"
msgstr "পঞ্চভুজ"
#. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji
+#. g2gFC
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3458,6 +3793,7 @@ msgid "pentagon"
msgstr "পঞ্চভুজ"
#. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji
+#. 2UACw
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3468,6 +3804,7 @@ msgid "hexagon"
msgstr "ষড়ভুজ"
#. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji
+#. uqRGB
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3478,6 +3815,7 @@ msgid "hexagon2"
msgstr "ষড়ভুজ"
#. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji
+#. 4BwK8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3487,6 +3825,7 @@ msgid "large circle2"
msgstr ""
#. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji
+#. gVrZC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3496,6 +3835,7 @@ msgid "ellipse"
msgstr "উপবৃত্ত"
#. ⭐ (U+02B50), see http://wiki.documentfoundation.org/Emoji
+#. L5Q2X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3505,6 +3845,7 @@ msgid "medium star"
msgstr ""
#. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji
+#. TSBfG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3514,6 +3855,7 @@ msgid "small star2"
msgstr ""
#. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji
+#. tqdLm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3523,6 +3865,7 @@ msgid "small star"
msgstr ""
#. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji
+#. 9ER38
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3532,6 +3875,7 @@ msgid "ff"
msgstr ""
#. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji
+#. neMhY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3541,6 +3885,7 @@ msgid "fi"
msgstr ""
#. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji
+#. ym9RA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3550,6 +3895,7 @@ msgid "fl"
msgstr ""
#. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji
+#. HA2oJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3559,6 +3905,7 @@ msgid "ffi"
msgstr ""
#. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji
+#. LcntK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3568,6 +3915,7 @@ msgid "ffl"
msgstr ""
#. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji
+#. 6CVtL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3577,6 +3925,7 @@ msgid "clef"
msgstr ""
#. 𝄪 (U+1D12A), see http://wiki.documentfoundation.org/Emoji
+#. FJAMw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3586,6 +3935,7 @@ msgid "double sharp"
msgstr ""
#. 𝄫 (U+1D12B), see http://wiki.documentfoundation.org/Emoji
+#. 7ADGW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3595,6 +3945,7 @@ msgid "double flat"
msgstr ""
#. 𝄻 (U+1D13B), see http://wiki.documentfoundation.org/Emoji
+#. DdcM2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3604,6 +3955,7 @@ msgid "whole rest"
msgstr ""
#. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji
+#. BUYwU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3613,6 +3965,7 @@ msgid "half rest"
msgstr ""
#. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji
+#. gqJAB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3622,6 +3975,7 @@ msgid "quarter rest"
msgstr ""
#. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji
+#. ktK5s
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3631,6 +3985,7 @@ msgid "eighth rest"
msgstr ""
#. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji
+#. bbrCH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3640,6 +3995,7 @@ msgid "whole note"
msgstr ""
#. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji
+#. RBhrQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3649,6 +4005,7 @@ msgid "half note"
msgstr ""
#. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji
+#. ysAGf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3658,6 +4015,7 @@ msgid "quarter note"
msgstr ""
#. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji
+#. VPWEh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3667,6 +4025,7 @@ msgid "eighth note"
msgstr ""
#. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji
+#. i3m8B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3676,6 +4035,7 @@ msgid "sixteenth note"
msgstr ""
#. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji
+#. txbRc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3685,6 +4045,7 @@ msgid "mahjong"
msgstr ""
#. 🁠 (U+1F060), see http://wiki.documentfoundation.org/Emoji
+#. vkYJP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3694,6 +4055,7 @@ msgid "domino"
msgstr ""
#. 🂡 (U+1F0A1), see http://wiki.documentfoundation.org/Emoji
+#. FWHRC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3703,6 +4065,7 @@ msgid "ace"
msgstr ""
#. 🂫 (U+1F0AB), see http://wiki.documentfoundation.org/Emoji
+#. TQAX3
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3713,6 +4076,7 @@ msgid "jack"
msgstr "পূর্ববর্তী"
#. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji
+#. 5xGEk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3722,6 +4086,7 @@ msgid "queen"
msgstr ""
#. 🂮 (U+1F0AE), see http://wiki.documentfoundation.org/Emoji
+#. CdrE2
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3732,6 +4097,7 @@ msgid "king"
msgstr "রিং"
#. 🃏 (U+1F0CF), see http://wiki.documentfoundation.org/Emoji
+#. 2CYz7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3741,6 +4107,7 @@ msgid "joker"
msgstr ""
#. 🌀 (U+1F300), see http://wiki.documentfoundation.org/Emoji
+#. eNZwQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3750,6 +4117,7 @@ msgid "cyclone"
msgstr ""
#. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji
+#. E3AiK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3759,6 +4127,7 @@ msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
+#. LFEnJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3768,6 +4137,7 @@ msgid "umbrella2"
msgstr ""
#. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji
+#. VGPCt
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3778,6 +4148,7 @@ msgid "night"
msgstr "ডান"
#. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji
+#. xwX5z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3787,6 +4158,7 @@ msgid "sunrise2"
msgstr ""
#. 🌅 (U+1F305), see http://wiki.documentfoundation.org/Emoji
+#. DFQNE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3796,6 +4168,7 @@ msgid "sunrise"
msgstr ""
#. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji
+#. EjsTC
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3806,6 +4179,7 @@ msgid "sunset"
msgstr "সূর্যাস্ত"
#. 🌇 (U+1F307), see http://wiki.documentfoundation.org/Emoji
+#. 8BthL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3815,6 +4189,7 @@ msgid "sunrise3"
msgstr ""
#. 🌈 (U+1F308), see http://wiki.documentfoundation.org/Emoji
+#. ygxkm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3824,6 +4199,7 @@ msgid "rainbow"
msgstr ""
#. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji
+#. V7CPB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3833,6 +4209,7 @@ msgid "bridge"
msgstr ""
#. 🌊 (U+1F30A), see http://wiki.documentfoundation.org/Emoji
+#. DEJFX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3842,6 +4219,7 @@ msgid "ocean"
msgstr ""
#. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji
+#. GbZVy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3851,6 +4229,7 @@ msgid "volcano"
msgstr ""
#. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji
+#. yZBGc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3860,6 +4239,7 @@ msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
+#. f53Lu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3869,6 +4249,7 @@ msgid "globe"
msgstr ""
#. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji
+#. AutYx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3878,6 +4259,7 @@ msgid "globe2"
msgstr ""
#. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji
+#. ACoLQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3887,6 +4269,7 @@ msgid "globe3"
msgstr ""
#. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji
+#. JjMAs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3896,6 +4279,7 @@ msgid "globe4"
msgstr ""
#. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji
+#. WAFzy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3905,6 +4289,7 @@ msgid "new moon"
msgstr ""
#. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji
+#. F8LCD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3914,6 +4299,7 @@ msgid "waxing crescent moon"
msgstr ""
#. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji
+#. pTNhc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3923,6 +4309,7 @@ msgid "first quarter"
msgstr ""
#. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji
+#. AFBZw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3932,6 +4319,7 @@ msgid "waxing gibbous moon"
msgstr ""
#. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji
+#. MLLvK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3941,6 +4329,7 @@ msgid "full moon"
msgstr ""
#. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji
+#. 6ZfWf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3950,6 +4339,7 @@ msgid "waning gibbous moon"
msgstr ""
#. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji
+#. hfGRx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3959,6 +4349,7 @@ msgid "last quarter"
msgstr ""
#. 🌘 (U+1F318), see http://wiki.documentfoundation.org/Emoji
+#. b3snp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3968,6 +4359,7 @@ msgid "waning crescent moon"
msgstr ""
#. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji
+#. tsvS2
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3978,6 +4370,7 @@ msgid "crescent moon"
msgstr "অর্ধচন্দ্রাকার চাঁদ"
#. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji
+#. qCTQy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -3987,6 +4380,7 @@ msgid "new moon2"
msgstr ""
#. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji
+#. WdRzU
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -3997,6 +4391,7 @@ msgid "moon"
msgstr "চাঁদ"
#. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji
+#. FhGWY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4006,6 +4401,7 @@ msgid "moon2"
msgstr ""
#. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji
+#. 2W3Lv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4015,6 +4411,7 @@ msgid "full moon2"
msgstr ""
#. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji
+#. Gkxfx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4024,6 +4421,7 @@ msgid "sun"
msgstr ""
#. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji
+#. eF8ur
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4034,6 +4432,7 @@ msgid "star3"
msgstr "শুরু"
#. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji
+#. XRohW
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4044,6 +4443,7 @@ msgid "star4"
msgstr "শুরু"
#. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji
+#. AcuuY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4053,6 +4453,7 @@ msgid "chestnut"
msgstr ""
#. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji
+#. uF4tA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4062,6 +4463,7 @@ msgid "seedling"
msgstr ""
#. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji
+#. 3pyDD
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4072,6 +4474,7 @@ msgid "pine"
msgstr "লাইন"
#. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji
+#. vgFCL
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4082,6 +4485,7 @@ msgid "tree"
msgstr "সত্য"
#. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji
+#. tY3EA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4091,6 +4495,7 @@ msgid "palm"
msgstr ""
#. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji
+#. okHRh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4100,6 +4505,7 @@ msgid "cactus"
msgstr ""
#. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji
+#. JHZDE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4109,6 +4515,7 @@ msgid "tulip"
msgstr ""
#. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji
+#. eFy7r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4118,6 +4525,7 @@ msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
+#. JCYis
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4127,6 +4535,7 @@ msgid "rose"
msgstr ""
#. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji
+#. EGSrt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4136,6 +4545,7 @@ msgid "hibiscus"
msgstr ""
#. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji
+#. z4cHB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4145,6 +4555,7 @@ msgid "sunflower"
msgstr ""
#. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji
+#. pBBjC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4154,6 +4565,7 @@ msgid "blossom"
msgstr ""
#. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji
+#. wCgXh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4163,6 +4575,7 @@ msgid "corn"
msgstr ""
#. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji
+#. NSDcY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4172,6 +4585,7 @@ msgid "grass"
msgstr ""
#. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji
+#. RBhpE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4182,6 +4596,7 @@ msgid "herb"
msgstr "ক্রিয়া"
#. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji
+#. YF8TS
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4192,6 +4607,7 @@ msgid "clover"
msgstr "ক্লোভার"
#. 🍁 (U+1F341), see http://wiki.documentfoundation.org/Emoji
+#. ZtqRt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4201,6 +4617,7 @@ msgid "leaf"
msgstr ""
#. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji
+#. wBuCQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4210,6 +4627,7 @@ msgid "leaf2"
msgstr ""
#. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji
+#. mLSzg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4219,6 +4637,7 @@ msgid "leaf3"
msgstr ""
#. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji
+#. eEVDC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4228,6 +4647,7 @@ msgid "mushroom"
msgstr ""
#. 🍅 (U+1F345), see http://wiki.documentfoundation.org/Emoji
+#. FAESj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4237,6 +4657,7 @@ msgid "tomato"
msgstr "টোমাটো"
#. 🍆 (U+1F346), see http://wiki.documentfoundation.org/Emoji
+#. rGgaS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4246,6 +4667,7 @@ msgid "eggplant"
msgstr ""
#. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji
+#. zsYDw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4255,6 +4677,7 @@ msgid "grapes"
msgstr ""
#. 🍈 (U+1F348), see http://wiki.documentfoundation.org/Emoji
+#. mxrW4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4264,6 +4687,7 @@ msgid "melon"
msgstr ""
#. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji
+#. EDtCM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4273,6 +4697,7 @@ msgid "watermelon"
msgstr ""
#. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji
+#. pgRuc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4282,6 +4707,7 @@ msgid "tangerine"
msgstr ""
#. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji
+#. Rkfu2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4291,6 +4717,7 @@ msgid "lemon"
msgstr ""
#. 🍌 (U+1F34C), see http://wiki.documentfoundation.org/Emoji
+#. pnLAk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4300,6 +4727,7 @@ msgid "banana"
msgstr ""
#. 🍍 (U+1F34D), see http://wiki.documentfoundation.org/Emoji
+#. Ek9Kz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4309,6 +4737,7 @@ msgid "pineapple"
msgstr ""
#. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji
+#. VGJDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4318,6 +4747,7 @@ msgid "apple"
msgstr ""
#. 🍏 (U+1F34F), see http://wiki.documentfoundation.org/Emoji
+#. QGk2r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4327,6 +4757,7 @@ msgid "green apple"
msgstr ""
#. 🍐 (U+1F350), see http://wiki.documentfoundation.org/Emoji
+#. sStWm
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4337,6 +4768,7 @@ msgid "pear"
msgstr "বছর"
#. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji
+#. sfc8X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4346,6 +4778,7 @@ msgid "peach"
msgstr ""
#. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji
+#. 8AKA8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4355,6 +4788,7 @@ msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
+#. yfRzG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4364,6 +4798,7 @@ msgid "strawberry"
msgstr ""
#. 🍔 (U+1F354), see http://wiki.documentfoundation.org/Emoji
+#. WpJbe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4373,6 +4808,7 @@ msgid "hamburger"
msgstr ""
#. 🍕 (U+1F355), see http://wiki.documentfoundation.org/Emoji
+#. 9vBsx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4382,6 +4818,7 @@ msgid "pizza"
msgstr ""
#. 🍖 (U+1F356), see http://wiki.documentfoundation.org/Emoji
+#. YbRN8
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4392,6 +4829,7 @@ msgid "meat"
msgstr "গড়"
#. 🍗 (U+1F357), see http://wiki.documentfoundation.org/Emoji
+#. 4384H
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4401,6 +4839,7 @@ msgid "poultry leg"
msgstr ""
#. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji
+#. fzFgY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4410,6 +4849,7 @@ msgid "rice cracker"
msgstr ""
#. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji
+#. L3Jga
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4419,6 +4859,7 @@ msgid "rice ball"
msgstr ""
#. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji
+#. ZxyBw
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4429,6 +4870,7 @@ msgid "rice"
msgstr "দাম"
#. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji
+#. akxPB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4438,6 +4880,7 @@ msgid "curry"
msgstr ""
#. 🍜 (U+1F35C), see http://wiki.documentfoundation.org/Emoji
+#. KsGja
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4447,6 +4890,7 @@ msgid "ramen"
msgstr ""
#. 🍝 (U+1F35D), see http://wiki.documentfoundation.org/Emoji
+#. dKTwC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4456,6 +4900,7 @@ msgid "spaghetti"
msgstr ""
#. 🍞 (U+1F35E), see http://wiki.documentfoundation.org/Emoji
+#. D7XrZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4466,6 +4911,7 @@ msgid "bread"
msgstr "বিরতি"
#. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji
+#. tfYnE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4475,6 +4921,7 @@ msgid "fries"
msgstr ""
#. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji
+#. AZXBc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4484,6 +4931,7 @@ msgid "sweet potato"
msgstr ""
#. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji
+#. P9LwF
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4494,6 +4942,7 @@ msgid "dango"
msgstr "সাঙ্গো"
#. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji
+#. VhY3g
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4503,6 +4952,7 @@ msgid "oden"
msgstr ""
#. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji
+#. K8uzC
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4513,6 +4963,7 @@ msgid "sushi"
msgstr "বুশি"
#. 🍤 (U+1F364), see http://wiki.documentfoundation.org/Emoji
+#. bpAX7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4522,6 +4973,7 @@ msgid "fried shrimp"
msgstr ""
#. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji
+#. GucZQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4531,6 +4983,7 @@ msgid "fish cake"
msgstr ""
#. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji
+#. JF2mU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4540,6 +4993,7 @@ msgid "icecream"
msgstr ""
#. 🍧 (U+1F367), see http://wiki.documentfoundation.org/Emoji
+#. B8btb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4549,6 +5003,7 @@ msgid "shaved ice"
msgstr ""
#. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji
+#. EqFKK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4558,6 +5013,7 @@ msgid "ice cream"
msgstr ""
#. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji
+#. DZanS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4567,6 +5023,7 @@ msgid "doughnut"
msgstr ""
#. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji
+#. zeBHW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4576,6 +5033,7 @@ msgid "cookie"
msgstr ""
#. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji
+#. qHPED
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4585,6 +5043,7 @@ msgid "chocolate"
msgstr "চকোলেট"
#. 🍬 (U+1F36C), see http://wiki.documentfoundation.org/Emoji
+#. aSMhd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4594,6 +5053,7 @@ msgid "candy"
msgstr ""
#. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji
+#. bGtHd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4603,6 +5063,7 @@ msgid "lollipop"
msgstr ""
#. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji
+#. KGCkZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4612,6 +5073,7 @@ msgid "custard"
msgstr ""
#. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji
+#. z9jVN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4621,6 +5083,7 @@ msgid "honey"
msgstr ""
#. 🍰 (U+1F370), see http://wiki.documentfoundation.org/Emoji
+#. erDDv
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4631,6 +5094,7 @@ msgid "cake"
msgstr "Make"
#. 🍱 (U+1F371), see http://wiki.documentfoundation.org/Emoji
+#. rv9sh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4640,6 +5104,7 @@ msgid "bento"
msgstr ""
#. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji
+#. wuJ4w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4649,6 +5114,7 @@ msgid "stew"
msgstr ""
#. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji
+#. YDqMD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4658,6 +5124,7 @@ msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
+#. GBfCD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4667,6 +5134,7 @@ msgid "restaurant"
msgstr ""
#. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji
+#. Gf4Av
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4677,6 +5145,7 @@ msgid "tea"
msgstr "টিল"
#. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji
+#. YncQr
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4687,6 +5156,7 @@ msgid "sake"
msgstr "Make"
#. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji
+#. xnqbf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4696,6 +5166,7 @@ msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
+#. Ngp7g
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4705,6 +5176,7 @@ msgid "cocktail"
msgstr ""
#. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji
+#. sdBze
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4714,6 +5186,7 @@ msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
+#. F2TpK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4723,6 +5196,7 @@ msgid "beer"
msgstr ""
#. 🍻 (U+1F37B), see http://wiki.documentfoundation.org/Emoji
+#. 3DADC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4732,6 +5206,7 @@ msgid "beer2"
msgstr ""
#. 🍼 (U+1F37C), see http://wiki.documentfoundation.org/Emoji
+#. BcurL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4741,6 +5216,7 @@ msgid "baby bottle"
msgstr ""
#. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji
+#. RhPDQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4750,6 +5226,7 @@ msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
+#. MADiL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4759,6 +5236,7 @@ msgid "gift"
msgstr ""
#. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji
+#. tuDzb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4768,6 +5246,7 @@ msgid "birthday"
msgstr ""
#. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji
+#. f26Bk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4777,6 +5256,7 @@ msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
+#. WvFGT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4786,6 +5266,7 @@ msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
+#. cVHdd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4795,6 +5276,7 @@ msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
+#. saFdp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4804,6 +5286,7 @@ msgid "fireworks"
msgstr ""
#. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji
+#. ikoAR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4813,6 +5296,7 @@ msgid "sparkler"
msgstr ""
#. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji
+#. xmwGc
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4823,6 +5307,7 @@ msgid "balloon"
msgstr "উয়াললোন"
#. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji
+#. 6j7qo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4832,6 +5317,7 @@ msgid "party"
msgstr ""
#. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji
+#. 3eXZe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4841,6 +5327,7 @@ msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
+#. nNzUK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4850,6 +5337,7 @@ msgid "tanabata tree"
msgstr ""
#. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji
+#. 4VRMn
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -4860,6 +5348,7 @@ msgid "flags"
msgstr "ফ্ল্যাগ"
#. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji
+#. nShwB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4869,6 +5358,7 @@ msgid "bamboo"
msgstr ""
#. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji
+#. HyNqD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4878,6 +5368,7 @@ msgid "dolls"
msgstr ""
#. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji
+#. MZnGF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4887,6 +5378,7 @@ msgid "flags2"
msgstr ""
#. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji
+#. Fe2aF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4896,6 +5388,7 @@ msgid "wind chime"
msgstr ""
#. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji
+#. zfHjE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4905,6 +5398,7 @@ msgid "rice scene"
msgstr ""
#. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji
+#. nNCBc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4914,6 +5408,7 @@ msgid "school satchel"
msgstr ""
#. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji
+#. 6PMMH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4923,6 +5418,7 @@ msgid "graduation"
msgstr ""
#. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji
+#. xaH5B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4932,6 +5428,7 @@ msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
+#. 3x8hW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4941,6 +5438,7 @@ msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
+#. PD7Cb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4950,6 +5448,7 @@ msgid "roller coaster"
msgstr ""
#. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji
+#. pMccJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4959,6 +5458,7 @@ msgid "fishing"
msgstr ""
#. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji
+#. mZABw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4968,6 +5468,7 @@ msgid "microphone"
msgstr ""
#. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji
+#. cJB24
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4977,6 +5478,7 @@ msgid "movie camera"
msgstr ""
#. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji
+#. 8MDEz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4986,6 +5488,7 @@ msgid "cinema"
msgstr ""
#. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji
+#. 2tBD3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -4995,6 +5498,7 @@ msgid "headphone"
msgstr ""
#. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji
+#. ocRfQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5004,6 +5508,7 @@ msgid "art"
msgstr ""
#. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji
+#. FHPnG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5013,6 +5518,7 @@ msgid "top hat"
msgstr ""
#. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji
+#. NmrUH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5022,6 +5528,7 @@ msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
+#. gCBD6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5031,6 +5538,7 @@ msgid "ticket"
msgstr ""
#. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji
+#. EQhDu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5040,6 +5548,7 @@ msgid "clapper"
msgstr ""
#. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji
+#. BwNeG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5049,6 +5558,7 @@ msgid "theatre"
msgstr ""
#. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji
+#. yxoXg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5058,6 +5568,7 @@ msgid "video game"
msgstr ""
#. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji
+#. 8GZTZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5067,6 +5578,7 @@ msgid "hit"
msgstr ""
#. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji
+#. qnZGG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5076,6 +5588,7 @@ msgid "slot machine"
msgstr ""
#. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji
+#. b5uif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5085,6 +5598,7 @@ msgid "billiards"
msgstr ""
#. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji
+#. zYVZW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5094,6 +5608,7 @@ msgid "dice"
msgstr ""
#. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji
+#. wDVCN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5103,6 +5618,7 @@ msgid "bowling"
msgstr ""
#. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji
+#. 5m8DQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5112,6 +5628,7 @@ msgid "cards"
msgstr ""
#. 🎵 (U+1F3B5), see http://wiki.documentfoundation.org/Emoji
+#. DDCkg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5121,6 +5638,7 @@ msgid "music2"
msgstr ""
#. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji
+#. PsVfD
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5131,6 +5649,7 @@ msgid "music"
msgstr "সংগীত"
#. 🎷 (U+1F3B7), see http://wiki.documentfoundation.org/Emoji
+#. Unw73
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5140,6 +5659,7 @@ msgid "saxophone"
msgstr ""
#. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji
+#. sB5jL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5149,6 +5669,7 @@ msgid "guitar"
msgstr ""
#. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji
+#. wGKYB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5158,6 +5679,7 @@ msgid "piano"
msgstr ""
#. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji
+#. tWZBJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5167,6 +5689,7 @@ msgid "trumpet"
msgstr ""
#. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji
+#. ae8uM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5176,6 +5699,7 @@ msgid "violin"
msgstr ""
#. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji
+#. QCnPx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5185,6 +5709,7 @@ msgid "score"
msgstr ""
#. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji
+#. 8zBQp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5194,6 +5719,7 @@ msgid "shirt2"
msgstr ""
#. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji
+#. WfH8R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5203,6 +5729,7 @@ msgid "tennis"
msgstr ""
#. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji
+#. FrDyH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5212,6 +5739,7 @@ msgid "ski"
msgstr ""
#. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji
+#. ih5rC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5221,6 +5749,7 @@ msgid "basketball"
msgstr ""
#. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji
+#. E4zAL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5230,6 +5759,7 @@ msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
+#. b4bAo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5239,6 +5769,7 @@ msgid "snowboarder"
msgstr ""
#. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji
+#. z7CKn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5248,6 +5779,7 @@ msgid "runner"
msgstr ""
#. 🏄 (U+1F3C4), see http://wiki.documentfoundation.org/Emoji
+#. 2pLHf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5257,6 +5789,7 @@ msgid "surfer"
msgstr ""
#. 🏆 (U+1F3C6), see http://wiki.documentfoundation.org/Emoji
+#. Hgj9C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5266,6 +5799,7 @@ msgid "trophy"
msgstr ""
#. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji
+#. qjAKh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5275,6 +5809,7 @@ msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
+#. FRTc8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5284,6 +5819,7 @@ msgid "football"
msgstr ""
#. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji
+#. eLmcj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5293,6 +5829,7 @@ msgid "rugby football"
msgstr ""
#. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji
+#. 6acEV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5302,6 +5839,7 @@ msgid "swimmer"
msgstr ""
#. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji
+#. RfTAe
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5312,6 +5850,7 @@ msgid "house"
msgstr "মাউস"
#. 🏡 (U+1F3E1), see http://wiki.documentfoundation.org/Emoji
+#. GB6nn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5321,6 +5860,7 @@ msgid "house2"
msgstr ""
#. 🏢 (U+1F3E2), see http://wiki.documentfoundation.org/Emoji
+#. dRsEi
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5331,6 +5871,7 @@ msgid "office"
msgstr "অফিস"
#. 🏣 (U+1F3E3), see http://wiki.documentfoundation.org/Emoji
+#. Gf8La
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5340,6 +5881,7 @@ msgid "post office2"
msgstr ""
#. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji
+#. 9qhN4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5349,6 +5891,7 @@ msgid "post office"
msgstr ""
#. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji
+#. ttEpB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5358,6 +5901,7 @@ msgid "hospital"
msgstr ""
#. 🏦 (U+1F3E6), see http://wiki.documentfoundation.org/Emoji
+#. 4TaNF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5367,6 +5911,7 @@ msgid "bank"
msgstr ""
#. 🏧 (U+1F3E7), see http://wiki.documentfoundation.org/Emoji
+#. EkGmC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5376,6 +5921,7 @@ msgid "atm"
msgstr ""
#. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji
+#. jXyTu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5385,6 +5931,7 @@ msgid "hotel"
msgstr ""
#. 🏩 (U+1F3E9), see http://wiki.documentfoundation.org/Emoji
+#. BoiNG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5394,6 +5941,7 @@ msgid "hotel2"
msgstr ""
#. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji
+#. AcmZT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5403,6 +5951,7 @@ msgid "store"
msgstr ""
#. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji
+#. VBk6S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5412,6 +5961,7 @@ msgid "school"
msgstr ""
#. 🏬 (U+1F3EC), see http://wiki.documentfoundation.org/Emoji
+#. 7DA7Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5421,6 +5971,7 @@ msgid "store2"
msgstr ""
#. 🏭 (U+1F3ED), see http://wiki.documentfoundation.org/Emoji
+#. 5FZmf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5430,6 +5981,7 @@ msgid "factory"
msgstr ""
#. 🏮 (U+1F3EE), see http://wiki.documentfoundation.org/Emoji
+#. E7g2q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5439,6 +5991,7 @@ msgid "lantern"
msgstr ""
#. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji
+#. ZwF6E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5448,6 +6001,7 @@ msgid "castle2"
msgstr ""
#. 🏰 (U+1F3F0), see http://wiki.documentfoundation.org/Emoji
+#. AVnym
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5457,6 +6011,7 @@ msgid "castle"
msgstr ""
#. 🐀 (U+1F400), see http://wiki.documentfoundation.org/Emoji
+#. iQjEZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5467,6 +6022,7 @@ msgid "rat"
msgstr "হার"
#. 🐁 (U+1F401), see http://wiki.documentfoundation.org/Emoji
+#. DeFnV
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5477,6 +6033,7 @@ msgid "mouse"
msgstr "মাউস"
#. 🐂 (U+1F402), see http://wiki.documentfoundation.org/Emoji
+#. XiFTi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5486,6 +6043,7 @@ msgid "ox"
msgstr ""
#. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji
+#. zNaJS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5495,6 +6053,7 @@ msgid "water buffalo"
msgstr ""
#. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji
+#. V3p7W
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5504,6 +6063,7 @@ msgid "cow"
msgstr ""
#. 🐅 (U+1F405), see http://wiki.documentfoundation.org/Emoji
+#. ihDfF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5513,6 +6073,7 @@ msgid "tiger"
msgstr ""
#. 🐆 (U+1F406), see http://wiki.documentfoundation.org/Emoji
+#. RbGoe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5522,6 +6083,7 @@ msgid "leopard"
msgstr ""
#. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji
+#. CMGYf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5531,6 +6093,7 @@ msgid "rabbit"
msgstr ""
#. 🐈 (U+1F408), see http://wiki.documentfoundation.org/Emoji
+#. 9YBim
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5540,6 +6103,7 @@ msgid "cat"
msgstr ""
#. 🐉 (U+1F409), see http://wiki.documentfoundation.org/Emoji
+#. dio6o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5549,6 +6113,7 @@ msgid "dragon"
msgstr ""
#. 🐊 (U+1F40A), see http://wiki.documentfoundation.org/Emoji
+#. uTR4G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5558,6 +6123,7 @@ msgid "crocodile"
msgstr ""
#. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji
+#. h77co
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5567,6 +6133,7 @@ msgid "whale2"
msgstr ""
#. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji
+#. hadNm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5576,6 +6143,7 @@ msgid "snail"
msgstr ""
#. 🐍 (U+1F40D), see http://wiki.documentfoundation.org/Emoji
+#. DKLJQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5585,6 +6153,7 @@ msgid "snake"
msgstr ""
#. 🐎 (U+1F40E), see http://wiki.documentfoundation.org/Emoji
+#. i6Cn2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5594,6 +6163,7 @@ msgid "horse"
msgstr ""
#. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji
+#. xEnKp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5603,6 +6173,7 @@ msgid "ram"
msgstr ""
#. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji
+#. CVSAr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5612,6 +6183,7 @@ msgid "goat"
msgstr ""
#. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji
+#. ZDwSn
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5622,6 +6194,7 @@ msgid "sheep"
msgstr "শীট"
#. 🐒 (U+1F412), see http://wiki.documentfoundation.org/Emoji
+#. YvEf5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5631,6 +6204,7 @@ msgid "monkey"
msgstr ""
#. 🐓 (U+1F413), see http://wiki.documentfoundation.org/Emoji
+#. ycN9J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5640,6 +6214,7 @@ msgid "rooster"
msgstr ""
#. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji
+#. Ag9Mg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5649,6 +6224,7 @@ msgid "chicken"
msgstr ""
#. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji
+#. jmBsh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5658,6 +6234,7 @@ msgid "dog"
msgstr ""
#. 🐖 (U+1F416), see http://wiki.documentfoundation.org/Emoji
+#. q6YWK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5667,6 +6244,7 @@ msgid "pig"
msgstr ""
#. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji
+#. xtnBt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5676,6 +6254,7 @@ msgid "boar"
msgstr ""
#. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji
+#. yxkbk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5685,6 +6264,7 @@ msgid "elephant"
msgstr ""
#. 🐙 (U+1F419), see http://wiki.documentfoundation.org/Emoji
+#. vpPJb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5694,6 +6274,7 @@ msgid "octopus"
msgstr ""
#. 🐚 (U+1F41A), see http://wiki.documentfoundation.org/Emoji
+#. SXEMR
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5704,6 +6285,7 @@ msgid "shell"
msgstr "শেল"
#. 🐛 (U+1F41B), see http://wiki.documentfoundation.org/Emoji
+#. JVh4w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5713,6 +6295,7 @@ msgid "bug"
msgstr ""
#. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji
+#. me5X6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5722,6 +6305,7 @@ msgid "ant"
msgstr ""
#. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji
+#. aCWCQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5731,6 +6315,7 @@ msgid "bee"
msgstr ""
#. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji
+#. JnJG6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5740,6 +6325,7 @@ msgid "ladybug"
msgstr ""
#. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji
+#. CATwn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5749,6 +6335,7 @@ msgid "fish"
msgstr ""
#. 🐠 (U+1F420), see http://wiki.documentfoundation.org/Emoji
+#. qK3hz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5758,6 +6345,7 @@ msgid "fish2"
msgstr ""
#. 🐡 (U+1F421), see http://wiki.documentfoundation.org/Emoji
+#. mkAVd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5767,6 +6355,7 @@ msgid "fish3"
msgstr ""
#. 🐢 (U+1F422), see http://wiki.documentfoundation.org/Emoji
+#. vHvHV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5776,6 +6365,7 @@ msgid "turtle"
msgstr ""
#. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji
+#. Fi7Lg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5785,6 +6375,7 @@ msgid "chick"
msgstr ""
#. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji
+#. zAaYQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5794,6 +6385,7 @@ msgid "chick2"
msgstr ""
#. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji
+#. GyVtY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5803,6 +6395,7 @@ msgid "chick3"
msgstr ""
#. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji
+#. jwips
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5812,6 +6405,7 @@ msgid "bird"
msgstr ""
#. 🐧 (U+1F427), see http://wiki.documentfoundation.org/Emoji
+#. KDxrF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5821,6 +6415,7 @@ msgid "penguin"
msgstr ""
#. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji
+#. i3ehW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5830,6 +6425,7 @@ msgid "koala"
msgstr ""
#. 🐩 (U+1F429), see http://wiki.documentfoundation.org/Emoji
+#. yBMDt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5839,6 +6435,7 @@ msgid "poodle"
msgstr ""
#. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji
+#. A3ng3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5848,6 +6445,7 @@ msgid "camel"
msgstr ""
#. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji
+#. NDefQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5857,6 +6455,7 @@ msgid "camel2"
msgstr ""
#. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji
+#. extjn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5866,6 +6465,7 @@ msgid "dolphin"
msgstr ""
#. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji
+#. FDRH4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5875,6 +6475,7 @@ msgid "mouse2"
msgstr ""
#. 🐮 (U+1F42E), see http://wiki.documentfoundation.org/Emoji
+#. yDmAf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5884,6 +6485,7 @@ msgid "cow2"
msgstr ""
#. 🐯 (U+1F42F), see http://wiki.documentfoundation.org/Emoji
+#. V7ZVF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5893,6 +6495,7 @@ msgid "tiger2"
msgstr ""
#. 🐰 (U+1F430), see http://wiki.documentfoundation.org/Emoji
+#. 8XA6y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5902,6 +6505,7 @@ msgid "rabbit2"
msgstr ""
#. 🐱 (U+1F431), see http://wiki.documentfoundation.org/Emoji
+#. umi97
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5911,6 +6515,7 @@ msgid "cat2"
msgstr ""
#. 🐲 (U+1F432), see http://wiki.documentfoundation.org/Emoji
+#. A8jhC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5920,6 +6525,7 @@ msgid "dragon2"
msgstr ""
#. 🐳 (U+1F433), see http://wiki.documentfoundation.org/Emoji
+#. EC4yH
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -5930,6 +6536,7 @@ msgid "whale"
msgstr "যেখানে"
#. 🐴 (U+1F434), see http://wiki.documentfoundation.org/Emoji
+#. uvs4N
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5939,6 +6546,7 @@ msgid "horse2"
msgstr ""
#. 🐵 (U+1F435), see http://wiki.documentfoundation.org/Emoji
+#. JACu8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5948,6 +6556,7 @@ msgid "monkey2"
msgstr ""
#. 🐶 (U+1F436), see http://wiki.documentfoundation.org/Emoji
+#. 2hAqZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5957,6 +6566,7 @@ msgid "dog2"
msgstr ""
#. 🐷 (U+1F437), see http://wiki.documentfoundation.org/Emoji
+#. pHDR9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5966,6 +6576,7 @@ msgid "pig2"
msgstr ""
#. 🐸 (U+1F438), see http://wiki.documentfoundation.org/Emoji
+#. ByQoB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5975,6 +6586,7 @@ msgid "frog"
msgstr ""
#. 🐹 (U+1F439), see http://wiki.documentfoundation.org/Emoji
+#. 7KVBf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5984,6 +6596,7 @@ msgid "hamster"
msgstr ""
#. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji
+#. BWcDY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -5993,6 +6606,7 @@ msgid "wolf"
msgstr ""
#. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji
+#. p2mi3
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6003,6 +6617,7 @@ msgid "bear"
msgstr "বছর"
#. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji
+#. bm9VZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6013,6 +6628,7 @@ msgid "panda"
msgstr "গান্ডা"
#. 🐽 (U+1F43D), see http://wiki.documentfoundation.org/Emoji
+#. U4cLM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6022,6 +6638,7 @@ msgid "pig nose"
msgstr ""
#. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji
+#. cZa9W
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6031,6 +6648,7 @@ msgid "feet"
msgstr "ফুট"
#. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji
+#. FbAhk
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6041,6 +6659,7 @@ msgid "eyes"
msgstr "হ্যাঁ"
#. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji
+#. jpYRG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6051,6 +6670,7 @@ msgid "ear"
msgstr "বছর"
#. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji
+#. E9d73
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6061,6 +6681,7 @@ msgid "nose"
msgstr "কোনটি না"
#. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji
+#. HhZiA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6071,6 +6692,7 @@ msgid "mouth"
msgstr "মাস"
#. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji
+#. xiZeo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6080,6 +6702,7 @@ msgid "tongue"
msgstr ""
#. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji
+#. Do9RZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6089,6 +6712,7 @@ msgid "up2"
msgstr ""
#. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji
+#. 38UHH
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6099,6 +6723,7 @@ msgid "down2"
msgstr "নিচে"
#. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji
+#. gRtnZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6109,6 +6734,7 @@ msgid "left2"
msgstr "বাম"
#. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji
+#. VjyBV
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6119,6 +6745,7 @@ msgid "right2"
msgstr "ডান"
#. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji
+#. ipCGp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6128,6 +6755,7 @@ msgid "fist2"
msgstr ""
#. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji
+#. Gh9mT
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6138,6 +6766,7 @@ msgid "wave"
msgstr "সংরক্ষণ"
#. 👌 (U+1F44C), see http://wiki.documentfoundation.org/Emoji
+#. AHXXZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6147,6 +6776,7 @@ msgid "ok"
msgstr ""
#. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji
+#. QP5Gt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6156,6 +6786,7 @@ msgid "yes"
msgstr "হ্যাঁ"
#. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji
+#. mGjpD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6165,6 +6796,7 @@ msgid "no"
msgstr ""
#. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji
+#. UzrjV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6174,6 +6806,7 @@ msgid "clap"
msgstr ""
#. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji
+#. xJ53h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6183,6 +6816,7 @@ msgid "open hands"
msgstr ""
#. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji
+#. BtSqh
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6193,6 +6827,7 @@ msgid "crown"
msgstr "বাদামী"
#. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji
+#. BzRy3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6202,6 +6837,7 @@ msgid "hat"
msgstr ""
#. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji
+#. yGAJR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6211,6 +6847,7 @@ msgid "eyeglasses"
msgstr ""
#. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji
+#. 9WoyD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6220,6 +6857,7 @@ msgid "necktie"
msgstr ""
#. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji
+#. FYDTc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6229,6 +6867,7 @@ msgid "shirt"
msgstr ""
#. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji
+#. wDCDB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6238,6 +6877,7 @@ msgid "jeans"
msgstr ""
#. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji
+#. DKuYL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6247,6 +6887,7 @@ msgid "dress"
msgstr ""
#. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji
+#. 3gfhC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6256,6 +6897,7 @@ msgid "kimono"
msgstr ""
#. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji
+#. pkz5G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6265,6 +6907,7 @@ msgid "bikini"
msgstr ""
#. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji
+#. kPMZm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6274,6 +6917,7 @@ msgid "clothes"
msgstr ""
#. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji
+#. KUTeE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6283,6 +6927,7 @@ msgid "purse"
msgstr ""
#. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji
+#. 7jBBJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6292,6 +6937,7 @@ msgid "handbag"
msgstr ""
#. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji
+#. j3i9d
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6301,6 +6947,7 @@ msgid "pouch"
msgstr ""
#. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji
+#. TJEkr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6310,6 +6957,7 @@ msgid "shoe"
msgstr ""
#. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji
+#. E6RYu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6319,6 +6967,7 @@ msgid "shoe2"
msgstr ""
#. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji
+#. wzPLw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6328,6 +6977,7 @@ msgid "shoe3"
msgstr ""
#. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji
+#. FpWvw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6337,6 +6987,7 @@ msgid "sandal"
msgstr ""
#. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji
+#. AyaZm
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6347,6 +6998,7 @@ msgid "boot"
msgstr "ফুট"
#. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji
+#. GgfEm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6356,6 +7008,7 @@ msgid "footprints"
msgstr ""
#. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji
+#. hs8C7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6365,6 +7018,7 @@ msgid "bust"
msgstr ""
#. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji
+#. UETgU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6374,6 +7028,7 @@ msgid "busts"
msgstr ""
#. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji
+#. inPSE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6383,6 +7038,7 @@ msgid "boy"
msgstr ""
#. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji
+#. WvMFo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6392,6 +7048,7 @@ msgid "girl"
msgstr ""
#. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji
+#. 8EQzk
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6402,6 +7059,7 @@ msgid "man"
msgstr "গড়"
#. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji
+#. EEPWL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6411,6 +7069,7 @@ msgid "woman"
msgstr ""
#. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji
+#. SXd9z
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6421,6 +7080,7 @@ msgid "family"
msgstr "সংকলন"
#. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji
+#. 5zFTn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6430,6 +7090,7 @@ msgid "couple"
msgstr ""
#. 👬 (U+1F46C), see http://wiki.documentfoundation.org/Emoji
+#. npiBG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6439,6 +7100,7 @@ msgid "couple2"
msgstr ""
#. 👭 (U+1F46D), see http://wiki.documentfoundation.org/Emoji
+#. cFL88
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6448,6 +7110,7 @@ msgid "couple3"
msgstr ""
#. 👮 (U+1F46E), see http://wiki.documentfoundation.org/Emoji
+#. z2SZf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6457,6 +7120,7 @@ msgid "cop"
msgstr ""
#. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji
+#. GshDr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6466,6 +7130,7 @@ msgid "bunny ears"
msgstr ""
#. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji
+#. jCsRv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6475,6 +7140,7 @@ msgid "bride"
msgstr ""
#. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji
+#. Ejnwy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6484,6 +7150,7 @@ msgid "blond hair"
msgstr ""
#. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji
+#. CEjP9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6493,6 +7160,7 @@ msgid "hat2"
msgstr ""
#. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji
+#. PT4BP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6502,6 +7170,7 @@ msgid "turban"
msgstr ""
#. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji
+#. 5JKdn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6511,6 +7180,7 @@ msgid "older man"
msgstr ""
#. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji
+#. cFK28
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6520,6 +7190,7 @@ msgid "older woman"
msgstr ""
#. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji
+#. yCHsd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6529,6 +7200,7 @@ msgid "baby"
msgstr ""
#. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji
+#. 3GDrA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6538,6 +7210,7 @@ msgid "worker"
msgstr ""
#. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji
+#. DVotZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6547,6 +7220,7 @@ msgid "princess"
msgstr ""
#. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji
+#. uXbDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6556,6 +7230,7 @@ msgid "ogre"
msgstr ""
#. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji
+#. 9mnCF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6565,6 +7240,7 @@ msgid "goblin"
msgstr ""
#. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji
+#. owD8B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6574,6 +7250,7 @@ msgid "ghost"
msgstr ""
#. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji
+#. JBpcF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6583,6 +7260,7 @@ msgid "angel"
msgstr ""
#. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji
+#. CtaFh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6592,6 +7270,7 @@ msgid "alien"
msgstr ""
#. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji
+#. hTENb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6601,6 +7280,7 @@ msgid "alien2"
msgstr ""
#. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji
+#. gPRSL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6610,6 +7290,7 @@ msgid "imp"
msgstr ""
#. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji
+#. VCGWC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6619,6 +7300,7 @@ msgid "skull"
msgstr ""
#. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji
+#. cE5EN
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6629,6 +7311,7 @@ msgid "information2"
msgstr "তথ্য"
#. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji
+#. 8TW65
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6638,6 +7321,7 @@ msgid "guard"
msgstr ""
#. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji
+#. AfK4Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6647,6 +7331,7 @@ msgid "dancer"
msgstr ""
#. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji
+#. cWNXz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6656,6 +7341,7 @@ msgid "lipstick"
msgstr ""
#. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji
+#. UCBCc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6665,6 +7351,7 @@ msgid "nail care"
msgstr ""
#. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji
+#. G8fqM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6674,6 +7361,7 @@ msgid "massage"
msgstr ""
#. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji
+#. mej3x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6683,6 +7371,7 @@ msgid "haircut"
msgstr ""
#. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji
+#. Uh3iE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6692,6 +7381,7 @@ msgid "barber"
msgstr ""
#. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji
+#. r6qXk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6701,6 +7391,7 @@ msgid "syringe"
msgstr ""
#. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji
+#. UHfGw
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6711,6 +7402,7 @@ msgid "pill"
msgstr "পূরণ করুন"
#. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji
+#. mEEda
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6720,6 +7412,7 @@ msgid "kiss mark"
msgstr ""
#. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji
+#. 26cKP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6729,6 +7422,7 @@ msgid "love letter"
msgstr ""
#. 💍 (U+1F48D), see http://wiki.documentfoundation.org/Emoji
+#. HLAyd
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6739,6 +7433,7 @@ msgid "ring"
msgstr "রিং"
#. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji
+#. 2B9Gg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6748,6 +7443,7 @@ msgid "gem"
msgstr ""
#. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji
+#. 5umRf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6757,6 +7453,7 @@ msgid "kiss"
msgstr ""
#. 💐 (U+1F490), see http://wiki.documentfoundation.org/Emoji
+#. uTbGC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6766,6 +7463,7 @@ msgid "bouquet"
msgstr ""
#. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji
+#. PdyCD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6775,6 +7473,7 @@ msgid "couple4"
msgstr ""
#. 💒 (U+1F492), see http://wiki.documentfoundation.org/Emoji
+#. HN5FN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6784,6 +7483,7 @@ msgid "wedding"
msgstr ""
#. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji
+#. nCuz6
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6794,6 +7494,7 @@ msgid "heartbeat"
msgstr "হৃদস্পন্দন"
#. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji
+#. s5RCB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6803,6 +7504,7 @@ msgid "broken heart"
msgstr ""
#. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji
+#. ZKnAA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6812,6 +7514,7 @@ msgid "two hearts"
msgstr ""
#. 💖 (U+1F496), see http://wiki.documentfoundation.org/Emoji
+#. T6fPR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6821,6 +7524,7 @@ msgid "sparkling heart"
msgstr ""
#. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji
+#. Hnpy2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6830,6 +7534,7 @@ msgid "heartpulse"
msgstr ""
#. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji
+#. EoDEC
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6840,6 +7545,7 @@ msgid "love"
msgstr "সরানো"
#. 💝 (U+1F49D), see http://wiki.documentfoundation.org/Emoji
+#. ZvRzq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6849,6 +7555,7 @@ msgid "gift heart"
msgstr ""
#. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji
+#. mNAJQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6858,6 +7565,7 @@ msgid "revolving hearts"
msgstr ""
#. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji
+#. jWmvQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6867,6 +7575,7 @@ msgid "heart decoration"
msgstr ""
#. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji
+#. UjSJU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6876,6 +7585,7 @@ msgid "cuteness"
msgstr ""
#. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji
+#. FgTp9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6885,6 +7595,7 @@ msgid "bulb"
msgstr ""
#. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji
+#. 5uyY8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6894,6 +7605,7 @@ msgid "anger"
msgstr ""
#. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji
+#. BHnsP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6903,6 +7615,7 @@ msgid "bomb"
msgstr ""
#. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji
+#. DxdJx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6912,6 +7625,7 @@ msgid "zzz"
msgstr ""
#. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji
+#. DSa3b
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6922,6 +7636,7 @@ msgid "boom"
msgstr "জুম"
#. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji
+#. nFoAX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6931,6 +7646,7 @@ msgid "sweat drops"
msgstr ""
#. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji
+#. eRxPJ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6941,6 +7657,7 @@ msgid "droplet"
msgstr "জলের ফোঁটা"
#. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji
+#. HDTEE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -6951,6 +7668,7 @@ msgid "dash"
msgstr "ড্যাশ"
#. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji
+#. FyCtU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6960,6 +7678,7 @@ msgid "poo"
msgstr ""
#. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji
+#. tkQEc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6969,6 +7688,7 @@ msgid "muscle"
msgstr ""
#. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji
+#. oV6Re
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6978,6 +7698,7 @@ msgid "dizzy"
msgstr ""
#. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji
+#. Ja8Zt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6987,6 +7708,7 @@ msgid "speech balloon"
msgstr ""
#. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji
+#. Hqstd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -6996,6 +7718,7 @@ msgid "thought balloon"
msgstr ""
#. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji
+#. TFLQ3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7005,6 +7728,7 @@ msgid "white flower"
msgstr ""
#. 💯 (U+1F4AF), see http://wiki.documentfoundation.org/Emoji
+#. NVEJ6
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7015,6 +7739,7 @@ msgid "100"
msgstr "100"
#. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji
+#. 44CJ2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7024,6 +7749,7 @@ msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
+#. WJBFr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7033,6 +7759,7 @@ msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
+#. gEQqV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7042,6 +7769,7 @@ msgid "heavy dollar sign"
msgstr ""
#. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji
+#. BvG4w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7051,6 +7779,7 @@ msgid "credit card"
msgstr ""
#. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji
+#. XPTnu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7060,6 +7789,7 @@ msgid "yen2"
msgstr ""
#. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji
+#. 9tknk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7069,6 +7799,7 @@ msgid "dollar2"
msgstr ""
#. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji
+#. m4oKV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7078,6 +7809,7 @@ msgid "euro2"
msgstr ""
#. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji
+#. 8n3ij
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7087,6 +7819,7 @@ msgid "pound2"
msgstr ""
#. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji
+#. CbXWk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7096,6 +7829,7 @@ msgid "money"
msgstr ""
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
+#. HxDaW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7105,6 +7839,7 @@ msgid "chart4"
msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
+#. uFG2p
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7115,6 +7850,7 @@ msgid "seat"
msgstr "সেট"
#. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji
+#. A72Gd
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7125,6 +7861,7 @@ msgid "computer"
msgstr "কম্পিউটার"
#. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji
+#. dLWEH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7134,6 +7871,7 @@ msgid "briefcase"
msgstr ""
#. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji
+#. 39dHP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7143,6 +7881,7 @@ msgid "md"
msgstr ""
#. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji
+#. Kc5xJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7152,6 +7891,7 @@ msgid "floppy"
msgstr ""
#. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji
+#. 6qMwM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7161,6 +7901,7 @@ msgid "cd"
msgstr ""
#. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji
+#. yEgGX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7170,6 +7911,7 @@ msgid "dvd"
msgstr ""
#. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji
+#. kDfvB
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7180,6 +7922,7 @@ msgid "folder"
msgstr "ফোল্ডার"
#. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji
+#. wAyrP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7189,6 +7932,7 @@ msgid "folder2"
msgstr ""
#. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji
+#. XwFzf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7198,6 +7942,7 @@ msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
+#. nHJbH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7207,6 +7952,7 @@ msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
+#. 3357F
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7217,6 +7963,7 @@ msgid "calendar"
msgstr "বর্ষপঞ্জি "
#. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji
+#. 2T65Q
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7227,6 +7974,7 @@ msgid "calendar2"
msgstr "বর্ষপঞ্জি "
#. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji
+#. DNhZt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7236,6 +7984,7 @@ msgid "card index"
msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
+#. fDBef
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7245,6 +7994,7 @@ msgid "chart"
msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
+#. n2X5h
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7255,6 +8005,7 @@ msgid "chart2"
msgstr "লেখচিত্র"
#. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji
+#. A2YxF
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7265,6 +8016,7 @@ msgid "chart3"
msgstr "লেখচিত্র"
#. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji
+#. rd9qJ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7275,6 +8027,7 @@ msgid "clipboard"
msgstr "ক্লিপবোর্ড"
#. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji
+#. rvk5G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7284,6 +8037,7 @@ msgid "pushpin"
msgstr ""
#. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji
+#. qvHXp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7293,6 +8047,7 @@ msgid "round pushpin"
msgstr ""
#. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji
+#. QnxVB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7302,6 +8057,7 @@ msgid "paperclip"
msgstr ""
#. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji
+#. 7zWG5
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7312,6 +8068,7 @@ msgid "ruler"
msgstr "মাপকাঠি"
#. 📐 (U+1F4D0), see http://wiki.documentfoundation.org/Emoji
+#. AFfRY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7321,6 +8078,7 @@ msgid "ruler2"
msgstr ""
#. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji
+#. 8kKn2
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7331,6 +8089,7 @@ msgid "bookmark"
msgstr "বুকমার্ক"
#. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji
+#. 2JByd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7340,6 +8099,7 @@ msgid "ledger"
msgstr ""
#. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji
+#. CPCYE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7349,6 +8109,7 @@ msgid "notebook"
msgstr ""
#. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji
+#. ktHAV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7358,6 +8119,7 @@ msgid "notebook2"
msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
+#. DYit7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7367,6 +8129,7 @@ msgid "book2"
msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
+#. LjMCp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7376,6 +8139,7 @@ msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
+#. wGEYU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7385,6 +8149,7 @@ msgid "books"
msgstr ""
#. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji
+#. AHKqs
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7395,6 +8160,7 @@ msgid "name"
msgstr "নাম"
#. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji
+#. 7dFZz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7404,6 +8170,7 @@ msgid "scroll"
msgstr ""
#. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji
+#. WACDF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7413,6 +8180,7 @@ msgid "memo"
msgstr ""
#. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji
+#. w7Sqx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7422,6 +8190,7 @@ msgid "receiver"
msgstr ""
#. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji
+#. RFzY6
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7432,6 +8201,7 @@ msgid "pager"
msgstr "পৃষ্ঠা"
#. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji
+#. G6o5r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7441,6 +8211,7 @@ msgid "fax"
msgstr ""
#. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji
+#. jUz5C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7450,6 +8221,7 @@ msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
+#. P5xbh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7459,6 +8231,7 @@ msgid "loudspeaker"
msgstr ""
#. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji
+#. eJHQG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7469,6 +8242,7 @@ msgid "mega"
msgstr "ওমেগা"
#. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji
+#. YcCHy
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7479,6 +8253,7 @@ msgid "tray"
msgstr "ধূসর"
#. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji
+#. f8tnA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7488,6 +8263,7 @@ msgid "tray2"
msgstr ""
#. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji
+#. 8uDGB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7497,6 +8273,7 @@ msgid "package"
msgstr ""
#. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji
+#. tLYTu
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7507,6 +8284,7 @@ msgid "e-mail"
msgstr "ইমেইল"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
+#. qKRip
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7516,6 +8294,7 @@ msgid "envelope7"
msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
+#. HGe9s
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7525,6 +8304,7 @@ msgid "envelope8"
msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
+#. MiuAq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7534,6 +8314,7 @@ msgid "mailbox"
msgstr ""
#. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji
+#. zyZUF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7543,6 +8324,7 @@ msgid "mailbox2"
msgstr ""
#. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji
+#. Sf5YJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7552,6 +8334,7 @@ msgid "mailbox3"
msgstr ""
#. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji
+#. fCEgu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7561,6 +8344,7 @@ msgid "mailbox4"
msgstr ""
#. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji
+#. TManz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7570,6 +8354,7 @@ msgid "postbox"
msgstr ""
#. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji
+#. u2ynR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7579,6 +8364,7 @@ msgid "horn"
msgstr ""
#. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji
+#. gZmY9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7588,6 +8374,7 @@ msgid "newspaper"
msgstr ""
#. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji
+#. C22hA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7598,6 +8385,7 @@ msgid "mobile"
msgstr "মোবাইল"
#. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji
+#. wLbiN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7607,6 +8395,7 @@ msgid "calling"
msgstr ""
#. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji
+#. d3uys
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7616,6 +8405,7 @@ msgid "vibration mode"
msgstr ""
#. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji
+#. SB2ZA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7625,6 +8415,7 @@ msgid "mobile phone off"
msgstr ""
#. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji
+#. s4cxU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7634,6 +8425,7 @@ msgid "no mobile"
msgstr ""
#. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji
+#. CjdGu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7643,6 +8435,7 @@ msgid "signal strength"
msgstr ""
#. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji
+#. eEaUM
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7653,6 +8446,7 @@ msgid "camera"
msgstr "Camera"
#. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji
+#. iUoYo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7662,6 +8456,7 @@ msgid "video camera"
msgstr ""
#. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji
+#. hDmEX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7671,6 +8466,7 @@ msgid "tv"
msgstr ""
#. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji
+#. WLYDg
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7681,6 +8477,7 @@ msgid "radio"
msgstr "সংখ্যা পদ্ধতির পরিচায়ক"
#. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji
+#. SRaWt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7690,6 +8487,7 @@ msgid "vhs"
msgstr ""
#. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji
+#. j6gBG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7700,6 +8498,7 @@ msgid "brightness"
msgstr "উজ্জ্বলতা"
#. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji
+#. Kk8CH
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7710,6 +8509,7 @@ msgid "brightness2"
msgstr "উজ্জ্বলতা"
#. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji
+#. gCXWY
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7720,6 +8520,7 @@ msgid "mute"
msgstr "নিঃশব্দ"
#. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji
+#. zBDGG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7729,6 +8530,7 @@ msgid "speaker"
msgstr ""
#. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji
+#. q6Ccp
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7739,6 +8541,7 @@ msgid "sound"
msgstr "গোলাকার"
#. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji
+#. APeWX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7748,6 +8551,7 @@ msgid "loud sound"
msgstr ""
#. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji
+#. ACRRR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7757,6 +8561,7 @@ msgid "battery"
msgstr ""
#. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji
+#. BG2mN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7766,6 +8571,7 @@ msgid "plug"
msgstr ""
#. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji
+#. jY8rv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7775,6 +8581,7 @@ msgid "mag"
msgstr ""
#. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji
+#. ruAUv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7784,6 +8591,7 @@ msgid "mag2"
msgstr ""
#. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji
+#. 8ZUNE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7793,6 +8601,7 @@ msgid "lock2"
msgstr ""
#. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji
+#. 4g77k
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7802,6 +8611,7 @@ msgid "lock3"
msgstr ""
#. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji
+#. vkQ8o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7811,6 +8621,7 @@ msgid "key"
msgstr ""
#. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji
+#. N7rGA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7821,6 +8632,7 @@ msgid "lock"
msgstr "ব্লক"
#. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji
+#. vRAcY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7830,6 +8642,7 @@ msgid "unlock"
msgstr ""
#. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji
+#. TjiAa
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7840,6 +8653,7 @@ msgid "bell"
msgstr "ঘর"
#. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji
+#. KQzBP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7849,6 +8663,7 @@ msgid "no bell"
msgstr ""
#. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji
+#. R7oDp
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7859,6 +8674,7 @@ msgid "bookmark2"
msgstr "বুকমার্ক"
#. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji
+#. jF6rA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7869,6 +8685,7 @@ msgid "link"
msgstr "মিটমিট"
#. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji
+#. kLzCC
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7879,6 +8696,7 @@ msgid "radio button"
msgstr "রেডিও বোতাম (~R)"
#. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji
+#. omtTU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7888,6 +8706,7 @@ msgid "underage"
msgstr ""
#. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji
+#. 63uY8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7897,6 +8716,7 @@ msgid "abc"
msgstr ""
#. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji
+#. vYrKA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7906,6 +8726,7 @@ msgid "fire"
msgstr ""
#. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji
+#. BXCDZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7915,6 +8736,7 @@ msgid "flashlight"
msgstr ""
#. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji
+#. yiTrG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -7925,6 +8747,7 @@ msgid "wrench"
msgstr "ফ্রেঞ্চ"
#. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji
+#. xkGE3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7934,6 +8757,7 @@ msgid "hammer"
msgstr ""
#. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji
+#. p4ctN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7943,6 +8767,7 @@ msgid "nut and bolt"
msgstr ""
#. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji
+#. SEuBH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7952,6 +8777,7 @@ msgid "knife"
msgstr ""
#. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji
+#. 2RSdn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7961,6 +8787,7 @@ msgid "pistol"
msgstr ""
#. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji
+#. n3FVK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7970,6 +8797,7 @@ msgid "microscope"
msgstr ""
#. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji
+#. 79jnu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7979,6 +8807,7 @@ msgid "telescope"
msgstr ""
#. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji
+#. cFgDU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7988,6 +8817,7 @@ msgid "crystal ball"
msgstr ""
#. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji
+#. 6mztF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -7997,6 +8827,7 @@ msgid "beginner"
msgstr ""
#. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji
+#. w7pSw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8006,6 +8837,7 @@ msgid "trident"
msgstr ""
#. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji
+#. EmJnV
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8016,6 +8848,7 @@ msgid "button2"
msgstr "বোতাম"
#. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji
+#. WRBMQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8025,6 +8858,7 @@ msgid "button"
msgstr "বোতাম"
#. 🕐 (U+1F550), see http://wiki.documentfoundation.org/Emoji
+#. e52Dc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8034,6 +8868,7 @@ msgid "1 h"
msgstr ""
#. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji
+#. ABhgX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8043,6 +8878,7 @@ msgid "2 h"
msgstr ""
#. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji
+#. gMDo3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8052,6 +8888,7 @@ msgid "3 h"
msgstr ""
#. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji
+#. uQYrA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8061,6 +8898,7 @@ msgid "4 h"
msgstr ""
#. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji
+#. eU5ps
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8070,6 +8908,7 @@ msgid "5 h"
msgstr ""
#. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji
+#. yZrjC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8079,6 +8918,7 @@ msgid "6 h"
msgstr ""
#. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji
+#. pJEuM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8088,6 +8928,7 @@ msgid "7 h"
msgstr ""
#. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji
+#. eHaWk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8097,6 +8938,7 @@ msgid "8 h"
msgstr ""
#. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji
+#. BJKnh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8106,6 +8948,7 @@ msgid "9 h"
msgstr ""
#. 🕙 (U+1F559), see http://wiki.documentfoundation.org/Emoji
+#. ouBxv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8115,6 +8958,7 @@ msgid "10 h"
msgstr ""
#. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji
+#. DA8M8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8124,6 +8968,7 @@ msgid "11 h"
msgstr ""
#. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji
+#. NF5SV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8133,6 +8978,7 @@ msgid "12 h"
msgstr ""
#. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji
+#. t7XEN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8142,6 +8988,7 @@ msgid "1.30"
msgstr ""
#. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji
+#. ac4Kx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8151,6 +8998,7 @@ msgid "2.30"
msgstr ""
#. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji
+#. sd7EA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8160,6 +9008,7 @@ msgid "3.30"
msgstr ""
#. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji
+#. CZwtb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8169,6 +9018,7 @@ msgid "4.30"
msgstr ""
#. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji
+#. VunGj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8178,6 +9028,7 @@ msgid "5.30"
msgstr ""
#. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji
+#. WgH9r
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8187,6 +9038,7 @@ msgid "6.30"
msgstr ""
#. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji
+#. HfCBL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8196,6 +9048,7 @@ msgid "7.30"
msgstr ""
#. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji
+#. GGeBZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8205,6 +9058,7 @@ msgid "8.30"
msgstr ""
#. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji
+#. DCtfy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8214,6 +9068,7 @@ msgid "9.30"
msgstr ""
#. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji
+#. tJG5J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8223,6 +9078,7 @@ msgid "10.30"
msgstr ""
#. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji
+#. g55YB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8232,6 +9088,7 @@ msgid "11.30"
msgstr ""
#. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji
+#. PGjbq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8241,6 +9098,7 @@ msgid "12.30"
msgstr ""
#. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji
+#. yzedv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8250,6 +9108,7 @@ msgid "Fuji"
msgstr ""
#. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji
+#. zoL5S
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8260,6 +9119,7 @@ msgid "tower"
msgstr "ঘাত"
#. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji
+#. T5ixq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8269,6 +9129,7 @@ msgid "liberty"
msgstr ""
#. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji
+#. vtyHr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8278,6 +9139,7 @@ msgid "Japan"
msgstr ""
#. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji
+#. rdfcs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8287,6 +9149,7 @@ msgid "statue"
msgstr ""
#. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji
+#. pJXUT
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8297,6 +9160,7 @@ msgid "grinning"
msgstr "মুদ্রণ করা হচ্ছে"
#. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji
+#. aTARh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8306,6 +9170,7 @@ msgid "grin"
msgstr ""
#. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji
+#. DRNjV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8315,6 +9180,7 @@ msgid "joy"
msgstr ""
#. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji
+#. Gcdda
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8324,6 +9190,7 @@ msgid "smiley"
msgstr ""
#. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji
+#. QBnjZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8334,6 +9201,7 @@ msgid "smile"
msgstr "মাইল"
#. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji
+#. xmY3d
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8343,6 +9211,7 @@ msgid "sweat smile"
msgstr ""
#. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji
+#. RLsCo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8352,6 +9221,7 @@ msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
+#. pFuaT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8361,6 +9231,7 @@ msgid "innocent"
msgstr ""
#. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji
+#. j4szE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8370,6 +9241,7 @@ msgid "smiling imp"
msgstr ""
#. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji
+#. k4AZW
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8380,6 +9252,7 @@ msgid "wink"
msgstr "গোলাপী"
#. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji
+#. xPZW8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8389,6 +9262,7 @@ msgid "blush"
msgstr ""
#. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji
+#. d5q9X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8398,6 +9272,7 @@ msgid "yum"
msgstr ""
#. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji
+#. PHXAL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8407,6 +9282,7 @@ msgid "relieved"
msgstr ""
#. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji
+#. BhNrx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8416,6 +9292,7 @@ msgid "heart eyes"
msgstr ""
#. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji
+#. ybcju
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8425,6 +9302,7 @@ msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
+#. GDHDY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8434,6 +9312,7 @@ msgid "smirk"
msgstr ""
#. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji
+#. KsfGz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8443,6 +9322,7 @@ msgid "neutral face"
msgstr ""
#. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji
+#. w7cU8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8452,6 +9332,7 @@ msgid "expressionless"
msgstr ""
#. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji
+#. teWUy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8461,6 +9342,7 @@ msgid "unamused"
msgstr ""
#. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji
+#. sPBAF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8470,6 +9352,7 @@ msgid "sweat"
msgstr ""
#. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji
+#. AEuYX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8479,6 +9362,7 @@ msgid "pensive"
msgstr ""
#. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji
+#. ZB5DT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8488,6 +9372,7 @@ msgid "confused"
msgstr ""
#. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji
+#. gFEjA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8497,6 +9382,7 @@ msgid "confounded"
msgstr ""
#. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji
+#. Wu9JJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8506,6 +9392,7 @@ msgid "kissing"
msgstr ""
#. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji
+#. BzWbz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8515,6 +9402,7 @@ msgid "kiss2"
msgstr ""
#. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji
+#. 2sYft
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8524,6 +9412,7 @@ msgid "kiss3"
msgstr ""
#. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji
+#. D7GhD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8533,6 +9422,7 @@ msgid "kiss4"
msgstr ""
#. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji
+#. ryiUu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8542,6 +9432,7 @@ msgid "tongue2"
msgstr ""
#. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji
+#. JuA5S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8551,6 +9442,7 @@ msgid "tongue3"
msgstr ""
#. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji
+#. CjnZ6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8560,6 +9452,7 @@ msgid "tongue4"
msgstr ""
#. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji
+#. DzqHp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8569,6 +9462,7 @@ msgid "disappointed"
msgstr ""
#. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji
+#. H4sAW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8578,6 +9472,7 @@ msgid "worried"
msgstr ""
#. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji
+#. oCCny
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8587,6 +9482,7 @@ msgid "angry"
msgstr ""
#. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji
+#. 6wuDY
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8597,6 +9493,7 @@ msgid "rage"
msgstr "পরিসর"
#. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji
+#. x27LD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8606,6 +9503,7 @@ msgid "cry"
msgstr ""
#. 😣 (U+1F623), see http://wiki.documentfoundation.org/Emoji
+#. DngFr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8615,6 +9513,7 @@ msgid "persevere"
msgstr ""
#. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji
+#. gBDzZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8624,6 +9523,7 @@ msgid "triumph"
msgstr ""
#. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji
+#. 5hFMz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8633,6 +9533,7 @@ msgid "disappointed relieved"
msgstr ""
#. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji
+#. Kerje
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8642,6 +9543,7 @@ msgid "frowning"
msgstr ""
#. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji
+#. kZYF3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8651,6 +9553,7 @@ msgid "anguished"
msgstr ""
#. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji
+#. bu62A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8660,6 +9563,7 @@ msgid "fearful"
msgstr ""
#. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji
+#. 6HkfU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8669,6 +9573,7 @@ msgid "weary"
msgstr ""
#. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji
+#. XDpxA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8679,6 +9584,7 @@ msgid "sleepy"
msgstr "sleep"
#. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji
+#. RwKrG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8688,6 +9594,7 @@ msgid "tired face"
msgstr ""
#. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji
+#. x9ZFy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8697,6 +9604,7 @@ msgid "grimacing"
msgstr ""
#. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji
+#. BrbFb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8706,6 +9614,7 @@ msgid "sob"
msgstr ""
#. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji
+#. D6iTF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8715,6 +9624,7 @@ msgid "open mouth"
msgstr ""
#. 😯 (U+1F62F), see http://wiki.documentfoundation.org/Emoji
+#. uMReg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8724,6 +9634,7 @@ msgid "hushed"
msgstr ""
#. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji
+#. tavtt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8733,6 +9644,7 @@ msgid "cold sweat"
msgstr ""
#. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji
+#. JpoSb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8742,6 +9654,7 @@ msgid "scream"
msgstr ""
#. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji
+#. vDqqP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8751,6 +9664,7 @@ msgid "astonished"
msgstr ""
#. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji
+#. QtFif
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8760,6 +9674,7 @@ msgid "flushed"
msgstr ""
#. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji
+#. MFwtr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8769,6 +9684,7 @@ msgid "sleeping"
msgstr ""
#. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji
+#. MAD5T
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8778,6 +9694,7 @@ msgid "dizzy face"
msgstr ""
#. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji
+#. NYdBC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8787,6 +9704,7 @@ msgid "no mouth"
msgstr ""
#. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji
+#. 9E7g6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8796,6 +9714,7 @@ msgid "mask"
msgstr ""
#. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji
+#. vHxL5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8805,6 +9724,7 @@ msgid "smile cat"
msgstr ""
#. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji
+#. GXKzF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8814,6 +9734,7 @@ msgid "joy cat"
msgstr ""
#. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji
+#. vAbxV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8823,6 +9744,7 @@ msgid "smiley cat"
msgstr ""
#. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji
+#. hzzjE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8832,6 +9754,7 @@ msgid "heart eyes cat"
msgstr ""
#. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji
+#. FuB4S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8841,6 +9764,7 @@ msgid "smirk cat"
msgstr ""
#. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji
+#. cGEsx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8850,6 +9774,7 @@ msgid "kissing cat"
msgstr ""
#. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji
+#. NyFCw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8859,6 +9784,7 @@ msgid "pouting cat"
msgstr ""
#. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji
+#. Aoh9Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8868,6 +9794,7 @@ msgid "crying cat"
msgstr ""
#. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji
+#. W4tZy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8877,6 +9804,7 @@ msgid "scream cat"
msgstr ""
#. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji
+#. F5Acu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8886,6 +9814,7 @@ msgid "no good"
msgstr ""
#. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji
+#. zMSZd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8895,6 +9824,7 @@ msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
+#. 4BtEr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8904,6 +9834,7 @@ msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
+#. fB5uj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8913,6 +9844,7 @@ msgid "see no evil"
msgstr ""
#. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji
+#. Ja8yE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8922,6 +9854,7 @@ msgid "hear no evil"
msgstr ""
#. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji
+#. e3zGe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8931,6 +9864,7 @@ msgid "speak no evil"
msgstr ""
#. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji
+#. Pwpxw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8940,6 +9874,7 @@ msgid "happiness"
msgstr ""
#. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji
+#. hTJ9z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8949,6 +9884,7 @@ msgid "celebration"
msgstr ""
#. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji
+#. xhTBV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8958,6 +9894,7 @@ msgid "person frowning"
msgstr ""
#. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji
+#. entX5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8967,6 +9904,7 @@ msgid "person pouting"
msgstr ""
#. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji
+#. KtK2c
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8977,6 +9915,7 @@ msgid "pray"
msgstr "ধূসর"
#. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji
+#. 6GdwG
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -8987,6 +9926,7 @@ msgid "rocket"
msgstr "সকেট"
#. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji
+#. hADct
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -8996,6 +9936,7 @@ msgid "helicopter"
msgstr ""
#. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji
+#. CEBY6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9005,6 +9946,7 @@ msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
+#. uiu74
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9014,6 +9956,7 @@ msgid "railway car"
msgstr ""
#. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji
+#. 6gdPP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9023,6 +9966,7 @@ msgid "train2"
msgstr ""
#. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji
+#. KWFVc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9032,6 +9976,7 @@ msgid "train3"
msgstr ""
#. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji
+#. UfDGn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9041,6 +9986,7 @@ msgid "train"
msgstr ""
#. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji
+#. dQgQx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9050,6 +9996,7 @@ msgid "metro"
msgstr ""
#. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji
+#. jL5UD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9059,6 +10006,7 @@ msgid "light rail"
msgstr ""
#. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji
+#. nU3jZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9069,6 +10017,7 @@ msgid "station"
msgstr "ঘূর্ণন"
#. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji
+#. Dri8R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9078,6 +10027,7 @@ msgid "tram"
msgstr ""
#. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji
+#. 9YAFb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9087,6 +10037,7 @@ msgid "tram2"
msgstr ""
#. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji
+#. DhKQs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9096,6 +10047,7 @@ msgid "bus"
msgstr ""
#. 🚍 (U+1F68D), see http://wiki.documentfoundation.org/Emoji
+#. fTFJN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9105,6 +10057,7 @@ msgid "bus2"
msgstr ""
#. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji
+#. tBeU2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9114,6 +10067,7 @@ msgid "trolleybus"
msgstr ""
#. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji
+#. YFFGE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9123,6 +10077,7 @@ msgid "busstop"
msgstr ""
#. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji
+#. AiqLy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9132,6 +10087,7 @@ msgid "minibus"
msgstr ""
#. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji
+#. UjeDu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9141,6 +10097,7 @@ msgid "ambulance"
msgstr ""
#. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji
+#. fHERr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9150,6 +10107,7 @@ msgid "fire engine"
msgstr ""
#. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji
+#. bgbGa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9159,6 +10117,7 @@ msgid "police car"
msgstr ""
#. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji
+#. wMPG9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9168,6 +10127,7 @@ msgid "police car2"
msgstr ""
#. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji
+#. xVRoq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9177,6 +10137,7 @@ msgid "taxi"
msgstr ""
#. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji
+#. hvAxP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9186,6 +10147,7 @@ msgid "taxi2"
msgstr ""
#. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji
+#. 7EjBh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9195,6 +10157,7 @@ msgid "car"
msgstr ""
#. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji
+#. VAENQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9204,6 +10167,7 @@ msgid "car2"
msgstr ""
#. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji
+#. F53eT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9213,6 +10177,7 @@ msgid "car3"
msgstr ""
#. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji
+#. Ky66X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9222,6 +10187,7 @@ msgid "truck2"
msgstr ""
#. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji
+#. 8soAF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9231,6 +10197,7 @@ msgid "lorry"
msgstr ""
#. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji
+#. Jwdgy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9240,6 +10207,7 @@ msgid "tractor"
msgstr ""
#. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji
+#. xBCEM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9249,6 +10217,7 @@ msgid "monorail"
msgstr ""
#. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji
+#. YF5em
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9258,6 +10227,7 @@ msgid "mountain railway"
msgstr ""
#. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji
+#. BFS7w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9267,6 +10237,7 @@ msgid "suspension railway"
msgstr ""
#. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji
+#. xw2kG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9276,6 +10247,7 @@ msgid "mountain cableway"
msgstr ""
#. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji
+#. D6Kee
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9285,6 +10257,7 @@ msgid "aerial tramway"
msgstr ""
#. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji
+#. iT3XR
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9295,6 +10268,7 @@ msgid "ship"
msgstr "হুইপ"
#. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji
+#. UGEtk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9304,6 +10278,7 @@ msgid "rowboat"
msgstr ""
#. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji
+#. eBgos
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9313,6 +10288,7 @@ msgid "speedboat"
msgstr ""
#. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji
+#. hFcdF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9322,6 +10298,7 @@ msgid "traffic light"
msgstr ""
#. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji
+#. nV9zL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9331,6 +10308,7 @@ msgid "traffic light2"
msgstr ""
#. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji
+#. JaFGo
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9341,6 +10319,7 @@ msgid "construction"
msgstr "Instructions"
#. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji
+#. oixqW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9350,6 +10329,7 @@ msgid "rotating light"
msgstr ""
#. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji
+#. AGDmx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9359,6 +10339,7 @@ msgid "triangular flag"
msgstr ""
#. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji
+#. FCxDK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9368,6 +10349,7 @@ msgid "door"
msgstr ""
#. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji
+#. dAJJp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9377,6 +10359,7 @@ msgid "no entry sign"
msgstr ""
#. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji
+#. H2dFa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9386,6 +10369,7 @@ msgid "smoking"
msgstr ""
#. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji
+#. ReEtE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9395,6 +10379,7 @@ msgid "no smoking"
msgstr ""
#. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji
+#. owPyG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9404,6 +10389,7 @@ msgid "litter"
msgstr ""
#. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji
+#. 4qXxK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9413,6 +10399,7 @@ msgid "do not litter"
msgstr ""
#. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji
+#. ZjTkh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9422,6 +10409,7 @@ msgid "potable water"
msgstr ""
#. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji
+#. sbTAA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9431,6 +10419,7 @@ msgid "non-potable water"
msgstr ""
#. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji
+#. KZmCA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9441,6 +10430,7 @@ msgid "bike"
msgstr "মত"
#. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji
+#. RECxo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9450,6 +10440,7 @@ msgid "no bicycles"
msgstr ""
#. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji
+#. FGCMF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9459,6 +10450,7 @@ msgid "bicyclist"
msgstr ""
#. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji
+#. P3F9z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9468,6 +10460,7 @@ msgid "bicyclist2"
msgstr ""
#. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji
+#. 4Jk7j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9477,6 +10470,7 @@ msgid "walking"
msgstr ""
#. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji
+#. wMwUM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9486,6 +10480,7 @@ msgid "no pedestrians"
msgstr ""
#. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji
+#. tfRvX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9495,6 +10490,7 @@ msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
+#. 5bTta
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9504,6 +10500,7 @@ msgid "mens"
msgstr ""
#. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji
+#. DkTJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9513,6 +10510,7 @@ msgid "womens"
msgstr ""
#. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji
+#. fyZ5J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9522,6 +10520,7 @@ msgid "restroom"
msgstr ""
#. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji
+#. waXZA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9531,6 +10530,7 @@ msgid "baby2"
msgstr ""
#. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji
+#. 7j9FT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9540,6 +10540,7 @@ msgid "toilet"
msgstr ""
#. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji
+#. 2GY7E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9549,6 +10550,7 @@ msgid "toilet2"
msgstr ""
#. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji
+#. WrCWt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9558,6 +10560,7 @@ msgid "shower"
msgstr ""
#. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji
+#. g545x
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9568,6 +10571,7 @@ msgid "bath"
msgstr "গণিত"
#. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji
+#. miVDJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9577,6 +10581,7 @@ msgid "bathtub"
msgstr ""
#. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji
+#. BXMUC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9586,6 +10591,7 @@ msgid "passport"
msgstr ""
#. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji
+#. EcdFo
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -9596,6 +10602,7 @@ msgid "customs"
msgstr "স্বনির্ধারিত:"
#. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji
+#. rR2Xw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9605,6 +10612,7 @@ msgid "baggage"
msgstr ""
#. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji
+#. pxsMt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9614,6 +10622,7 @@ msgid "left luggage"
msgstr ""
#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#. LZEAD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9623,6 +10632,7 @@ msgid "feast"
msgstr ""
#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#. PWmbQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9632,6 +10642,7 @@ msgid "smiling3"
msgstr ""
#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#. CeamS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9641,6 +10652,7 @@ msgid "frowning2"
msgstr ""
#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#. vhzbs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9650,6 +10662,7 @@ msgid "detective"
msgstr ""
#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#. Ae2cr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9659,6 +10672,7 @@ msgid "sleep"
msgstr ""
#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#. Xuc2A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9668,6 +10682,7 @@ msgid "suit"
msgstr ""
#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#. AkeBV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9677,6 +10692,7 @@ msgid "head"
msgstr ""
#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#. cf525
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9686,6 +10702,7 @@ msgid "golf"
msgstr ""
#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#. As3GE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9695,6 +10712,7 @@ msgid "weight lifter"
msgstr ""
#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#. bDCyA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9704,6 +10722,7 @@ msgid "car4"
msgstr ""
#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#. 2MoqD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9713,6 +10732,7 @@ msgid "motorcycle"
msgstr ""
#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#. gNBn5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9722,6 +10742,7 @@ msgid "finger"
msgstr ""
#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#. AHWD9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9731,6 +10752,7 @@ msgid "spock"
msgstr ""
#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#. Ati77
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9740,6 +10762,7 @@ msgid "hand2"
msgstr ""
#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#. 6ADML
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9749,6 +10772,7 @@ msgid "eye"
msgstr ""
#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#. z7WCd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9758,6 +10782,7 @@ msgid "bubble"
msgstr ""
#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#. 7FoF3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9767,6 +10792,7 @@ msgid "bubble4"
msgstr ""
#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#. djWbu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9776,6 +10802,7 @@ msgid "hole"
msgstr ""
#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#. AGMoo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9785,6 +10812,7 @@ msgid "sunglasses"
msgstr ""
#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#. fq7Cq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9794,6 +10822,7 @@ msgid "shop"
msgstr ""
#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#. eQaW4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9803,6 +10832,7 @@ msgid "chipmunk"
msgstr ""
#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#. Yoo9T
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9812,6 +10842,7 @@ msgid "dove"
msgstr ""
#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#. Uyg9S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9821,6 +10852,7 @@ msgid "spider"
msgstr ""
#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#. DPtYj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9830,6 +10862,7 @@ msgid "web"
msgstr ""
#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#. UaQDN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9839,6 +10872,7 @@ msgid "rosette"
msgstr ""
#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#. SAxJc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9848,6 +10882,7 @@ msgid "pepper"
msgstr ""
#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#. 3WpkF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9857,6 +10892,7 @@ msgid "plate"
msgstr ""
#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#. zvA3Y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9866,6 +10902,7 @@ msgid "map"
msgstr ""
#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#. PU3q7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9875,6 +10912,7 @@ msgid "mountain2"
msgstr ""
#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#. 9CR2B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9884,6 +10922,7 @@ msgid "camping"
msgstr ""
#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#. QQU86
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9893,6 +10932,7 @@ msgid "beach"
msgstr ""
#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#. E3dKM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9902,6 +10942,7 @@ msgid "desert"
msgstr ""
#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#. uFHXi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9911,6 +10952,7 @@ msgid "island"
msgstr ""
#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#. rB6rV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9920,6 +10962,7 @@ msgid "park"
msgstr ""
#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#. KtGDD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9929,6 +10972,7 @@ msgid "stadium"
msgstr ""
#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#. 9UYRC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9938,6 +10982,7 @@ msgid "museum"
msgstr ""
#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#. TU5KH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9947,6 +10992,7 @@ msgid "crane"
msgstr ""
#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#. ybjvN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9956,6 +11002,7 @@ msgid "houses"
msgstr ""
#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#. TEAtW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9965,6 +11012,7 @@ msgid "house3"
msgstr ""
#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#. rjmXE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9974,6 +11022,7 @@ msgid "city"
msgstr ""
#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#. gdgnE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9983,6 +11032,7 @@ msgid "motorway"
msgstr ""
#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#. XNZp2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -9992,6 +11042,7 @@ msgid "track"
msgstr ""
#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#. JDKF2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10001,6 +11052,7 @@ msgid "drum"
msgstr ""
#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#. KG2xi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10010,6 +11062,7 @@ msgid "ship2"
msgstr ""
#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#. hfqZC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10019,6 +11072,7 @@ msgid "motor boat"
msgstr ""
#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#. M7r8K
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10028,6 +11082,7 @@ msgid "airplane2"
msgstr ""
#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#. FTJfG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10037,6 +11092,7 @@ msgid "departure"
msgstr ""
#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#. CwiZi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10046,6 +11102,7 @@ msgid "arrival"
msgstr ""
#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#. 5BbRQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10055,6 +11112,7 @@ msgid "satellite"
msgstr ""
#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#. GePUa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10064,6 +11122,7 @@ msgid "bell2"
msgstr ""
#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#. N3XKK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10073,6 +11132,7 @@ msgid "clock"
msgstr ""
#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#. vC2BF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10082,6 +11142,7 @@ msgid "thermometer"
msgstr ""
#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#. eDCCS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10091,6 +11152,7 @@ msgid "cloudy"
msgstr ""
#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#. yuxDV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10100,6 +11162,7 @@ msgid "cloudy2"
msgstr ""
#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#. SwLUG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10109,6 +11172,7 @@ msgid "rainy"
msgstr ""
#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#. uBa2e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10118,6 +11182,7 @@ msgid "storm"
msgstr ""
#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#. f3Sbb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10127,6 +11192,7 @@ msgid "snow"
msgstr ""
#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#. boe8A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10136,6 +11202,7 @@ msgid "lightning"
msgstr ""
#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#. RS8Wb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10145,6 +11212,7 @@ msgid "tornado"
msgstr ""
#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#. EqDhD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10154,6 +11222,7 @@ msgid "fog"
msgstr ""
#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#. XTTqx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10163,6 +11232,7 @@ msgid "wind"
msgstr ""
#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#. 7X7bW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10172,6 +11242,7 @@ msgid "ribbon"
msgstr ""
#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#. RqApZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10181,6 +11252,7 @@ msgid "ticket2"
msgstr ""
#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#. GLTVB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10190,6 +11262,7 @@ msgid "medal2"
msgstr ""
#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#. uT4sx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10199,6 +11272,7 @@ msgid "medal"
msgstr ""
#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#. EszEZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10208,6 +11282,7 @@ msgid "joystick"
msgstr ""
#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#. wY9cB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10217,6 +11292,7 @@ msgid "picture"
msgstr ""
#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#. RWFZz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10226,6 +11302,7 @@ msgid "microphone2"
msgstr ""
#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#. FNDDe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10235,6 +11312,7 @@ msgid "slider"
msgstr ""
#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#. HRvG2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10244,6 +11322,7 @@ msgid "control"
msgstr ""
#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#. DunGT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10253,6 +11332,7 @@ msgid "computer2"
msgstr ""
#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#. 5i9iG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10262,6 +11342,7 @@ msgid "printer"
msgstr ""
#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#. gCiTV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10271,6 +11352,7 @@ msgid "mouse3"
msgstr ""
#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#. kr6mD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10280,6 +11362,7 @@ msgid "trackball"
msgstr ""
#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#. a7M8c
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10289,6 +11372,7 @@ msgid "film"
msgstr ""
#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#. 5XEHv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10298,6 +11382,7 @@ msgid "projector"
msgstr ""
#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#. e6d8k
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10307,6 +11392,7 @@ msgid "flash"
msgstr ""
#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#. 85ZZG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10316,6 +11402,7 @@ msgid "candle"
msgstr ""
#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#. Roj4S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10325,6 +11412,7 @@ msgid "newspaper2"
msgstr ""
#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#. KGGrV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10334,6 +11422,7 @@ msgid "label"
msgstr ""
#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#. MtcT9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10343,6 +11432,7 @@ msgid "ballot"
msgstr ""
#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#. eVhur
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10352,6 +11442,7 @@ msgid "pen2"
msgstr ""
#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#. zPbDv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10361,6 +11452,7 @@ msgid "pen"
msgstr ""
#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#. GMFPP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10370,6 +11462,7 @@ msgid "paintbrush"
msgstr ""
#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#. oj4qT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10379,6 +11472,7 @@ msgid "crayon"
msgstr ""
#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#. 6mFoM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10388,6 +11482,7 @@ msgid "index"
msgstr ""
#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#. 4vrvA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10397,6 +11492,7 @@ msgid "notepad"
msgstr ""
#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#. fjcB6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10406,6 +11502,7 @@ msgid "calendar3"
msgstr ""
#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#. bwrwB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10415,6 +11512,7 @@ msgid "paperclip2"
msgstr ""
#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#. zm6R6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10424,6 +11522,7 @@ msgid "box"
msgstr ""
#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#. D9Ev3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10433,6 +11532,7 @@ msgid "cabinet"
msgstr ""
#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#. 7Rhsi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10442,6 +11542,7 @@ msgid "wastebasket"
msgstr ""
#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#. i498o
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10451,6 +11552,7 @@ msgid "key2"
msgstr ""
#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#. EDHj7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10460,6 +11562,7 @@ msgid "hammer and wrench"
msgstr ""
#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#. qnaCC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10469,6 +11572,7 @@ msgid "knife2"
msgstr ""
#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#. QCXRd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10478,6 +11582,7 @@ msgid "shield"
msgstr ""
#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#. F9G5C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10487,6 +11592,7 @@ msgid "clamp"
msgstr ""
#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#. g4DGu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10496,6 +11602,7 @@ msgid "bed"
msgstr ""
#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#. XnFom
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10505,6 +11612,7 @@ msgid "couch"
msgstr ""
#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#. R8EvG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10514,6 +11622,7 @@ msgid "om"
msgstr ""
#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#. ETWok
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10523,6 +11632,7 @@ msgid "pause"
msgstr ""
#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#. 6Fkq7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10532,6 +11642,7 @@ msgid "stop2"
msgstr ""
#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#. PApbW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10541,6 +11652,7 @@ msgid "record"
msgstr ""
#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#. hytrL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10550,6 +11662,7 @@ msgid "flag"
msgstr ""
#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#. mBjRj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10559,6 +11672,7 @@ msgid "flag2"
msgstr ""
#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#. GBXU7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10568,6 +11682,7 @@ msgid "checkbox4"
msgstr ""
#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#. htBDW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10577,6 +11692,7 @@ msgid "boys"
msgstr ""
#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#. MNHt2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10586,6 +11702,7 @@ msgid "information3"
msgstr ""
#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#. 9wBWk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10595,6 +11712,7 @@ msgid "girls"
msgstr ""
#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#. wpUD2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10604,6 +11722,7 @@ msgid "airplane4"
msgstr ""
#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#. AZpeG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10613,6 +11732,7 @@ msgid "locomotive2"
msgstr ""
#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#. RCBUE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10622,6 +11742,7 @@ msgid "airplane3"
msgstr ""
#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#. vEzt8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10631,6 +11752,7 @@ msgid "fire engine2"
msgstr ""
#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#. 5E5qt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10640,6 +11762,7 @@ msgid "airplane5"
msgstr ""
#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#. 3YCGT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10649,6 +11772,7 @@ msgid "airplane6"
msgstr ""
#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#. V5pj8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10658,6 +11782,7 @@ msgid "bubble5"
msgstr ""
#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#. yp5bD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10667,6 +11792,7 @@ msgid "bubble6"
msgstr ""
#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#. FFx4K
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10676,6 +11802,7 @@ msgid "bubble7"
msgstr ""
#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#. JEqPj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10685,6 +11812,7 @@ msgid "chart5"
msgstr ""
#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#. LNFqr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10694,6 +11822,7 @@ msgid "page4"
msgstr ""
#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#. zi4B5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10703,6 +11832,7 @@ msgid "writing2"
msgstr ""
#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#. r8Xz8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10712,6 +11842,7 @@ msgid "rays"
msgstr ""
#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#. 7Zvkw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10721,6 +11852,7 @@ msgid "notes3"
msgstr ""
#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#. gYeEg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10730,6 +11862,7 @@ msgid "circle3"
msgstr ""
#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#. iywvE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10739,6 +11872,7 @@ msgid "notes4"
msgstr ""
#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#. ESTxC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10748,6 +11882,7 @@ msgid "book"
msgstr ""
#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#. qF7am
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10757,6 +11892,7 @@ msgid "font"
msgstr ""
#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#. ZSeGW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10766,6 +11902,7 @@ msgid "circle4"
msgstr ""
#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#. VMMh9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10775,6 +11912,7 @@ msgid "bullhorn"
msgstr ""
#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#. EvEb4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10784,6 +11922,7 @@ msgid "bullhorn2"
msgstr ""
#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#. AtkEf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10793,6 +11932,7 @@ msgid "receiver2"
msgstr ""
#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#. EgspW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10802,6 +11942,7 @@ msgid "phone3"
msgstr ""
#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#. WXomE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10811,6 +11952,7 @@ msgid "receiver4"
msgstr ""
#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#. emFc7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10820,6 +11962,7 @@ msgid "receiver3"
msgstr ""
#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#. HdoYh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10829,6 +11972,7 @@ msgid "phone4"
msgstr ""
#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#. 335BP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10838,6 +11982,7 @@ msgid "left4"
msgstr ""
#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#. ubunD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10847,6 +11992,7 @@ msgid "ok2"
msgstr ""
#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#. 3YbN8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10856,6 +12002,7 @@ msgid "left5"
msgstr ""
#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#. 26mFx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10865,6 +12012,7 @@ msgid "rays2"
msgstr ""
#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#. YxMaD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10874,6 +12022,7 @@ msgid "right4"
msgstr ""
#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#. RHxMa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10883,6 +12032,7 @@ msgid "down3"
msgstr ""
#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#. Feod4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10892,6 +12042,7 @@ msgid "up3"
msgstr ""
#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#. vWrdA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10901,6 +12052,7 @@ msgid "droplet2"
msgstr ""
#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#. tzhR8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10910,6 +12062,7 @@ msgid "synthesizer"
msgstr ""
#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#. KpEFc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10919,6 +12072,7 @@ msgid "bouquet2"
msgstr ""
#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#. kBDE9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10928,6 +12082,7 @@ msgid "heart2"
msgstr ""
#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#. kWWTC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10937,6 +12092,7 @@ msgid "pirate"
msgstr ""
#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#. Lk3GC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10946,6 +12102,7 @@ msgid "modem"
msgstr ""
#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#. CYnVK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10955,6 +12112,7 @@ msgid "no piracy"
msgstr ""
#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#. MngCK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10964,6 +12122,7 @@ msgid "marks chapter"
msgstr ""
#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#. tA9Nr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10973,6 +12132,7 @@ msgid "Celtic cross"
msgstr ""
#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#. TbsbW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10982,6 +12142,7 @@ msgid "down4"
msgstr ""
#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#. Sh7hb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -10991,6 +12152,7 @@ msgid "envelope4"
msgstr ""
#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#. 6AKdz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11000,6 +12162,7 @@ msgid "envelope2"
msgstr ""
#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#. UVBZB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11009,6 +12172,7 @@ msgid "rays3"
msgstr ""
#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#. teGE4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11018,6 +12182,7 @@ msgid "pencil4"
msgstr ""
#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#. zvLQc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11027,6 +12192,7 @@ msgid "envelope3"
msgstr ""
#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#. ED7mw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11036,6 +12202,7 @@ msgid "tack"
msgstr ""
#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#. KE6gJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11045,6 +12212,7 @@ msgid "envelope5"
msgstr ""
#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#. npC85
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11054,6 +12222,7 @@ msgid "mobile2"
msgstr ""
#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#. GoddF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11063,6 +12232,7 @@ msgid "envelope6"
msgstr ""
#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#. DVJqf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11072,6 +12242,7 @@ msgid "left6"
msgstr ""
#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#. v5Ngu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11081,6 +12252,7 @@ msgid "right5"
msgstr ""
#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#. Cqs44
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11090,6 +12262,7 @@ msgid "maximize"
msgstr ""
#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#. a8Ton
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11099,6 +12272,7 @@ msgid "overlap"
msgstr ""
#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#. jZs9w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11108,6 +12282,7 @@ msgid "page2"
msgstr ""
#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#. ejx3h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11117,6 +12292,7 @@ msgid "pages"
msgstr ""
#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#. 2Fp3C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11126,6 +12302,7 @@ msgid "arrows"
msgstr ""
#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#. bFSAy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11135,6 +12312,7 @@ msgid "font2"
msgstr ""
#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#. KeAPT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11144,6 +12322,7 @@ msgid "minimize"
msgstr ""
#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#. cWAh4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11153,6 +12332,7 @@ msgid "cancel"
msgstr ""
#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#. CpvEL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11162,6 +12342,7 @@ msgid "window"
msgstr ""
#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#. 9MFBE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11171,6 +12352,7 @@ msgid "empty page"
msgstr ""
#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#. 4fcuu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11180,6 +12362,7 @@ msgid "empty document"
msgstr ""
#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#. hQp56
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11189,6 +12372,7 @@ msgid "empty pages"
msgstr ""
#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#. g8N6C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11198,6 +12382,7 @@ msgid "document"
msgstr ""
#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#. MaUGt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11207,6 +12392,7 @@ msgid "empty note page"
msgstr ""
#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#. 7w4gh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11216,6 +12402,7 @@ msgid "note pad"
msgstr ""
#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#. AE3mL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11225,6 +12412,7 @@ msgid "note3"
msgstr ""
#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#. 5aCDm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11234,6 +12422,7 @@ msgid "empty note pad"
msgstr ""
#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#. bDRqr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11243,6 +12432,7 @@ msgid "note page"
msgstr ""
#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#. FdBv4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11252,6 +12442,7 @@ msgid "optical disc"
msgstr ""
#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#. Ghxv6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11261,6 +12452,7 @@ msgid "folder3"
msgstr ""
#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#. gwq6Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11270,6 +12462,7 @@ msgid "right6"
msgstr ""
#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#. V9USD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11279,6 +12472,7 @@ msgid "folder4"
msgstr ""
#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#. Wb5pZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11288,6 +12482,7 @@ msgid "empty note"
msgstr ""
#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#. 2DTcZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11297,6 +12492,7 @@ msgid "folder5"
msgstr ""
#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#. 9icB8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11306,6 +12502,7 @@ msgid "frame"
msgstr ""
#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#. 2zYBL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11315,6 +12512,7 @@ msgid "frame2"
msgstr ""
#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#. CWPgm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11324,6 +12522,7 @@ msgid "document2"
msgstr ""
#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#. W5ZZb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11333,6 +12532,7 @@ msgid "document3"
msgstr ""
#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#. BR5B8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11342,6 +12542,7 @@ msgid "document4"
msgstr ""
#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#. iWFAt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11351,6 +12552,7 @@ msgid "printer2"
msgstr ""
#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#. CmW6a
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11360,6 +12562,7 @@ msgid "fax2"
msgstr ""
#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#. u4fMX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11369,6 +12572,7 @@ msgid "mouse4"
msgstr ""
#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#. YM2Wi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11378,6 +12582,7 @@ msgid "pc"
msgstr ""
#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#. uCEtj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11387,6 +12592,7 @@ msgid "screen"
msgstr ""
#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#. dxgBq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11396,6 +12602,7 @@ msgid "mouse5"
msgstr ""
#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#. h2kWQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11405,6 +12612,7 @@ msgid "hard disk"
msgstr ""
#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#. zVUTo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11414,6 +12622,7 @@ msgid "calculator"
msgstr ""
#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#. vxsZg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11423,6 +12632,7 @@ msgid "cartridge"
msgstr ""
#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#. 8CWzA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11432,6 +12642,7 @@ msgid "floppy2"
msgstr ""
#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#. SxL8M
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11441,6 +12652,7 @@ msgid "floppy3"
msgstr ""
#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#. LYzF5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11450,6 +12662,7 @@ msgid "keyboard2"
msgstr ""
#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#. 63xqd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11459,6 +12672,7 @@ msgid "victory2"
msgstr ""
#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#. nnqCB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11468,6 +12682,7 @@ msgid "network"
msgstr ""
#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#. jTG2R
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11477,6 +12692,7 @@ msgid "floppy4"
msgstr ""
#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#. cK4DP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11486,6 +12702,7 @@ msgid "lips"
msgstr ""
#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#. maQCB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11495,6 +12712,7 @@ msgid "keyboard3"
msgstr ""
#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#. gxjyq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11504,6 +12722,7 @@ msgid "down5"
msgstr ""
#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#. fzdRY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11513,6 +12732,7 @@ msgid "down6"
msgstr ""
#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#. S5d7x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11522,6 +12742,7 @@ msgid "stereo"
msgstr ""
#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#. g3tfF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11531,6 +12752,7 @@ msgid "rosette2"
msgstr ""
#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#. i4YCp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11540,6 +12762,7 @@ msgid "pennant"
msgstr ""
#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#. JBDRo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11549,6 +12772,7 @@ msgid "up4"
msgstr ""
#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#. Pc5KV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11558,6 +12782,7 @@ msgid "up5"
msgstr ""
#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#. 2A8Yp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11567,6 +12792,7 @@ msgid "pennant2"
msgstr ""
#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#. Ew6So
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11576,6 +12802,7 @@ msgid "feast2"
msgstr ""
#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#. AJpzE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11585,6 +12812,7 @@ msgid "no2"
msgstr ""
#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#. SqfKC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11594,6 +12822,7 @@ msgid "hand3"
msgstr ""
#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#. 5EAvq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11603,6 +12832,7 @@ msgid "yes2"
msgstr ""
#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#. EBpBK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11612,6 +12842,7 @@ msgid "speaker2"
msgstr ""
#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#. v3jrY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11621,6 +12852,7 @@ msgid "Latin cross2"
msgstr ""
#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#. QhPED
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11630,6 +12862,7 @@ msgid "Latin cross3"
msgstr ""
#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#. y9uLG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11639,6 +12872,7 @@ msgid "speaker3"
msgstr ""
#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#. yXfff
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11648,6 +12882,7 @@ msgid "bell3"
msgstr ""
#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#. rq3dA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11657,6 +12892,7 @@ msgid "sun2"
msgstr ""
#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#. etzs6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11666,6 +12902,7 @@ msgid "prohibited"
msgstr ""
#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#. Qiqnn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11675,6 +12912,7 @@ msgid "triangle3"
msgstr ""
#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#. NxoaJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11684,6 +12922,7 @@ msgid "bubble3"
msgstr ""
#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#. ccFjf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11693,6 +12932,7 @@ msgid "speaker4"
msgstr ""
#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#. B8Hg3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11702,6 +12942,7 @@ msgid "bubble8"
msgstr ""
#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#. BJdG2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11711,6 +12952,7 @@ msgid "rays4"
msgstr ""
#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#. KQe2w
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11720,6 +12962,7 @@ msgid "lightning2"
msgstr ""
#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#. ySPbT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11729,6 +12972,7 @@ msgid "bubble9"
msgstr ""
#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#. Ti5Gc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11738,6 +12982,7 @@ msgid "checkbox5"
msgstr ""
#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#. K9FkL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11747,6 +12992,7 @@ msgid "check mark4"
msgstr ""
#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#. fxebH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11756,6 +13002,7 @@ msgid "bubble2"
msgstr ""
#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#. mQ7Sx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11765,6 +13012,7 @@ msgid "x4"
msgstr ""
#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#. HADvf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11774,6 +13022,7 @@ msgid "bubble10"
msgstr ""
#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#. CgYR4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11783,6 +13032,7 @@ msgid "checkbox6"
msgstr ""
#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#. C3B4F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11792,6 +13042,7 @@ msgid "check mark5"
msgstr ""
#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#. EbZew
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11801,6 +13052,7 @@ msgid "hugging"
msgstr ""
#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#. QGVSq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11810,6 +13062,7 @@ msgid "thinking"
msgstr ""
#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#. YWnjW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11819,6 +13072,7 @@ msgid "eye roll"
msgstr ""
#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#. eahZt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11828,6 +13082,7 @@ msgid "zipper"
msgstr ""
#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#. UEkgj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11837,6 +13092,7 @@ msgid "upside-down"
msgstr ""
#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#. NHvD5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11846,6 +13102,7 @@ msgid "money3"
msgstr ""
#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#. XNpdb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11855,6 +13112,7 @@ msgid "thermometer2"
msgstr ""
#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#. 7baC2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11864,6 +13122,7 @@ msgid "bandage"
msgstr ""
#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#. AZgGL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11873,6 +13132,7 @@ msgid "nerd"
msgstr ""
#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#. GdDbE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11882,6 +13142,7 @@ msgid "robot"
msgstr ""
#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#. GANQW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11891,6 +13152,7 @@ msgid "skin1"
msgstr ""
#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#. gbDCJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11900,6 +13162,7 @@ msgid "skin2"
msgstr ""
#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#. SCAhC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11909,6 +13172,7 @@ msgid "skin3"
msgstr ""
#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#. 73nmB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11918,6 +13182,7 @@ msgid "skin4"
msgstr ""
#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#. xD2SM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11927,6 +13192,7 @@ msgid "skin5"
msgstr ""
#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#. uqz8D
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11936,6 +13202,7 @@ msgid "horns"
msgstr ""
#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#. UZABL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11945,6 +13212,7 @@ msgid "beads"
msgstr ""
#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#. XwHn4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11954,6 +13222,7 @@ msgid "lion"
msgstr ""
#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#. AsQ5Q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11963,6 +13232,7 @@ msgid "unicorn"
msgstr ""
#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#. wE3ZV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11972,6 +13242,7 @@ msgid "turkey"
msgstr ""
#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#. ygHYG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11981,6 +13252,7 @@ msgid "crab"
msgstr ""
#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#. eCLRs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11990,6 +13262,7 @@ msgid "scorpion"
msgstr ""
#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#. 7Rapv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -11999,6 +13272,7 @@ msgid "cheese"
msgstr ""
#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#. G77U6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12008,6 +13282,7 @@ msgid "hot dog"
msgstr ""
#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#. adkNd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12017,6 +13292,7 @@ msgid "taco"
msgstr ""
#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#. iznZM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12026,6 +13302,7 @@ msgid "burrito"
msgstr ""
#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#. EpADQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12035,6 +13312,7 @@ msgid "popcorn"
msgstr ""
#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#. SjEyK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12044,6 +13322,7 @@ msgid "party4"
msgstr ""
#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#. rK7h3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12053,6 +13332,7 @@ msgid "amphora"
msgstr ""
#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#. GAMLG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12062,6 +13342,7 @@ msgid "mosque"
msgstr ""
#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#. iqBVa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12071,6 +13352,7 @@ msgid "synagogue"
msgstr ""
#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#. 3rTFA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12080,6 +13362,7 @@ msgid "Kaaba"
msgstr ""
#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#. JnWWX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12089,6 +13372,7 @@ msgid "volleyball"
msgstr ""
#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#. BLab9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12098,6 +13382,7 @@ msgid "cricket"
msgstr ""
#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#. 2Gshv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12107,6 +13392,7 @@ msgid "hockey2"
msgstr ""
#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#. P8BNH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12116,6 +13402,7 @@ msgid "hockey"
msgstr ""
#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#. sjezt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12125,6 +13412,7 @@ msgid "ping pong"
msgstr ""
#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#. qCCrH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12134,6 +13422,7 @@ msgid "badminton"
msgstr ""
#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#. HpJnE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12143,6 +13432,7 @@ msgid "bow"
msgstr ""
#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#. EhGbP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12152,6 +13442,7 @@ msgid "worship"
msgstr ""
#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#. VJK9e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12161,6 +13452,7 @@ msgid "menorah"
msgstr ""
#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#. ZEUxq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12170,6 +13462,7 @@ msgid "lol"
msgstr ""
#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#. 9dmGD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12179,6 +13472,7 @@ msgid "drool"
msgstr ""
#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#. BFDoH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12188,6 +13482,7 @@ msgid "nausea"
msgstr ""
#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#. E2kqb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12197,6 +13492,7 @@ msgid "sneeze"
msgstr ""
#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#. eqg7B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12206,6 +13502,7 @@ msgid "cowboy"
msgstr ""
#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#. ECess
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12215,6 +13512,7 @@ msgid "clown"
msgstr ""
#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#. kGYvx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12224,6 +13522,7 @@ msgid "liar"
msgstr ""
#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#. Vm8HH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12233,6 +13532,7 @@ msgid "prince"
msgstr ""
#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#. z4cUf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12242,6 +13542,7 @@ msgid "groom"
msgstr ""
#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#. 2z7dc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12251,6 +13552,7 @@ msgid "pregnant"
msgstr ""
#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#. 2G73S
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12260,6 +13562,7 @@ msgid "mrs. claus"
msgstr ""
#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#. DMAKw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12269,6 +13572,7 @@ msgid "facepalm"
msgstr ""
#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#. HfLEz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12278,6 +13582,7 @@ msgid "shrugging"
msgstr ""
#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#. LunYv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12287,6 +13592,7 @@ msgid "dancer2"
msgstr ""
#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#. j3rnK
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12296,6 +13602,7 @@ msgid "fencer"
msgstr ""
#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#. GWy2x
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12305,6 +13612,7 @@ msgid "gymnast"
msgstr ""
#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#. wDcBh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12314,6 +13622,7 @@ msgid "wrestling"
msgstr ""
#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#. d98om
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12323,6 +13632,7 @@ msgid "water polo"
msgstr ""
#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#. CUX53
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12332,6 +13642,7 @@ msgid "handball"
msgstr ""
#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#. ZxAWV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12341,6 +13652,7 @@ msgid "juggling"
msgstr ""
#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#. ydPAe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12350,6 +13662,7 @@ msgid "selfie"
msgstr ""
#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#. hCFfC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12359,6 +13672,7 @@ msgid "good luck"
msgstr ""
#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#. cXaXX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12368,6 +13682,7 @@ msgid "call"
msgstr ""
#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#. FAjqc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12377,6 +13692,7 @@ msgid "fist3"
msgstr ""
#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#. F5CCT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12386,6 +13702,7 @@ msgid "fist4"
msgstr ""
#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#. ix9At
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12395,6 +13712,7 @@ msgid "hand4"
msgstr ""
#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#. 9fHKn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12404,6 +13722,7 @@ msgid "handshake"
msgstr ""
#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#. gm7FZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12413,6 +13732,7 @@ msgid "black heart"
msgstr ""
#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#. 2NjPB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12422,6 +13742,7 @@ msgid "gorilla"
msgstr ""
#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#. KTrLE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12431,6 +13752,7 @@ msgid "fox"
msgstr ""
#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#. hFm9Y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12440,6 +13762,7 @@ msgid "deer"
msgstr ""
#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#. vH7xA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12449,6 +13772,7 @@ msgid "rhinoceros"
msgstr ""
#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#. La26G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12458,6 +13782,7 @@ msgid "bat"
msgstr ""
#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#. A5zoM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12467,6 +13792,7 @@ msgid "eagle"
msgstr ""
#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#. 6pBEy
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12476,6 +13802,7 @@ msgid "duck"
msgstr ""
#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#. 5WB2J
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12485,6 +13812,7 @@ msgid "owl"
msgstr ""
#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#. mTdZD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12494,6 +13822,7 @@ msgid "lizard"
msgstr ""
#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#. HGPa7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12503,6 +13832,7 @@ msgid "shark"
msgstr ""
#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#. 9st9X
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12512,6 +13842,7 @@ msgid "shrimp"
msgstr ""
#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#. wLzdC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12521,6 +13852,7 @@ msgid "squid"
msgstr ""
#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#. ABYeM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12530,6 +13862,7 @@ msgid "butterfly"
msgstr ""
#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#. g8zbG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12539,6 +13872,7 @@ msgid "flower2"
msgstr ""
#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#. rhEXe
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12548,6 +13882,7 @@ msgid "kiwi"
msgstr ""
#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#. YyyRA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12557,6 +13892,7 @@ msgid "avocado"
msgstr ""
#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#. GszVJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12566,6 +13902,7 @@ msgid "potato"
msgstr ""
#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#. Ym3pa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12575,6 +13912,7 @@ msgid "carrot"
msgstr ""
#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#. Kh3D3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12584,6 +13922,7 @@ msgid "cucumber"
msgstr ""
#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#. zhUDL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12593,6 +13932,7 @@ msgid "peanuts"
msgstr ""
#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#. RjA9y
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12602,6 +13942,7 @@ msgid "croissant"
msgstr ""
#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#. NGegu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12611,6 +13952,7 @@ msgid "bread2"
msgstr ""
#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#. Kv3zL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12620,6 +13962,7 @@ msgid "pancakes"
msgstr ""
#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#. ZD8B4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12629,6 +13972,7 @@ msgid "bacon"
msgstr ""
#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#. FBeQo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12638,6 +13982,7 @@ msgid "flatbread"
msgstr ""
#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#. ogxKP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12647,6 +13992,7 @@ msgid "egg"
msgstr ""
#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#. MLBgW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12656,6 +14002,7 @@ msgid "food"
msgstr ""
#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#. NW5YQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12665,6 +14012,7 @@ msgid "salad"
msgstr ""
#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#. ABhFU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12674,6 +14022,7 @@ msgid "milk"
msgstr ""
#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#. CE4Gm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12683,6 +14032,7 @@ msgid "party3"
msgstr ""
#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#. f7rVY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12692,6 +14042,7 @@ msgid "glass3"
msgstr ""
#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#. xQXfU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12701,6 +14052,7 @@ msgid "spoon"
msgstr ""
#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#. i9HME
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12710,6 +14062,7 @@ msgid "scooter"
msgstr ""
#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#. qNJVu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12719,6 +14072,7 @@ msgid "scooter2"
msgstr ""
#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#. aFYby
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12728,6 +14082,7 @@ msgid "stop"
msgstr ""
#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#. SXBDP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12737,6 +14092,7 @@ msgid "canoe"
msgstr ""
#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#. 4XgcG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12746,6 +14102,7 @@ msgid "gold"
msgstr ""
#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#. TSHQA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12755,6 +14112,7 @@ msgid "silver"
msgstr ""
#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#. EAVkw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12764,6 +14122,7 @@ msgid "bronze"
msgstr ""
#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#. wd46F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12773,6 +14132,7 @@ msgid "boxing"
msgstr ""
#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#. YUmnP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12782,6 +14142,7 @@ msgid "judo"
msgstr ""
#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#. qGHW2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12791,6 +14152,7 @@ msgid "soccer2"
msgstr ""
#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#. AbcnT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12800,6 +14162,7 @@ msgid "drum2"
msgstr ""
#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#. B6WXA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12809,6 +14172,7 @@ msgid "cart"
msgstr ""
#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#. eVxGr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12818,6 +14182,7 @@ msgid "excited"
msgstr ""
#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#. Tsyfv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12827,6 +14192,7 @@ msgid "eyebrow"
msgstr ""
#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#. na53j
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12836,6 +14202,7 @@ msgid "shocked"
msgstr ""
#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#. 4WDd3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12845,6 +14212,7 @@ msgid "zany"
msgstr ""
#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#. h2dHg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12854,6 +14222,7 @@ msgid "cursing"
msgstr ""
#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#. kBxkz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12863,6 +14232,7 @@ msgid "vomit"
msgstr ""
#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#. eYbxY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12872,6 +14242,7 @@ msgid "hush"
msgstr ""
#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#. n5YYY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12881,6 +14252,7 @@ msgid "smiling4"
msgstr ""
#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#. jB9dt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12890,6 +14262,7 @@ msgid "monocle"
msgstr ""
#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#. SLPCQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12899,6 +14272,7 @@ msgid "child"
msgstr ""
#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#. GfBGz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12908,6 +14282,7 @@ msgid "adult"
msgstr ""
#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#. iMBiE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12917,6 +14292,7 @@ msgid "old"
msgstr ""
#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#. a4XKd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12926,6 +14302,7 @@ msgid "headscarf"
msgstr ""
#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#. wwFwk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12935,6 +14312,7 @@ msgid "beard"
msgstr ""
#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#. aiLD6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12944,6 +14322,7 @@ msgid "baby3"
msgstr ""
#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#. AiBBt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12953,6 +14332,7 @@ msgid "mage"
msgstr ""
#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#. 72AoC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12962,6 +14342,7 @@ msgid "fairy"
msgstr ""
#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#. xcCHr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12971,6 +14352,7 @@ msgid "vampire"
msgstr ""
#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#. 6E3EF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12980,6 +14362,7 @@ msgid "merperson"
msgstr ""
#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#. 7WZ3s
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12989,6 +14372,7 @@ msgid "elf"
msgstr ""
#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#. GQBVF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -12998,6 +14382,7 @@ msgid "genie"
msgstr ""
#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#. sF9YT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13007,6 +14392,7 @@ msgid "zombie"
msgstr ""
#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#. SFGkA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13016,6 +14402,7 @@ msgid "sauna"
msgstr ""
#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#. 5LRF9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13025,6 +14412,7 @@ msgid "climber"
msgstr ""
#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#. UhgUh
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13034,6 +14422,7 @@ msgid "yoga"
msgstr ""
#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#. 2KjLY
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13043,6 +14432,7 @@ msgid "love2"
msgstr ""
#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#. tjwnx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13052,6 +14442,7 @@ msgid "palm2"
msgstr ""
#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#. Fvr8C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13061,6 +14452,7 @@ msgid "brain"
msgstr ""
#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#. 65Vzz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13070,6 +14462,7 @@ msgid "orange heart"
msgstr ""
#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#. 9F7KC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13079,6 +14472,7 @@ msgid "scarf"
msgstr ""
#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#. 2hKw4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13088,6 +14482,7 @@ msgid "gloves"
msgstr ""
#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#. 7dGHw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13097,6 +14492,7 @@ msgid "coat"
msgstr ""
#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#. j5RzV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13106,6 +14502,7 @@ msgid "socks"
msgstr ""
#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#. tZNWA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13115,6 +14512,7 @@ msgid "cap"
msgstr ""
#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#. 8mGXr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13124,6 +14522,7 @@ msgid "zebra"
msgstr ""
#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#. KK5ZG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13133,6 +14532,7 @@ msgid "giraffe"
msgstr ""
#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#. m5ZyA
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13142,6 +14542,7 @@ msgid "hedgehog"
msgstr ""
#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#. QGK7G
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13151,6 +14552,7 @@ msgid "dinosaur"
msgstr ""
#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#. Nixns
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13160,6 +14562,7 @@ msgid "dinosaur2"
msgstr ""
#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#. v74vD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13169,6 +14572,7 @@ msgid "cricket2"
msgstr ""
#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#. F6DcD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13178,6 +14582,7 @@ msgid "coconut"
msgstr ""
#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#. ysJGH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13187,6 +14592,7 @@ msgid "broccoli"
msgstr ""
#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#. CVDqB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13196,6 +14602,7 @@ msgid "pretzel"
msgstr ""
#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#. EFzoB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13205,6 +14612,7 @@ msgid "steak"
msgstr ""
#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#. kUkjd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13214,6 +14622,7 @@ msgid "sandwich"
msgstr ""
#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#. UgCS4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13223,6 +14632,7 @@ msgid "bowl"
msgstr ""
#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#. ruvC5
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13232,6 +14642,7 @@ msgid "can"
msgstr ""
#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#. TZV8E
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13241,6 +14652,7 @@ msgid "dumpling"
msgstr ""
#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#. APAjG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13250,6 +14662,7 @@ msgid "cookie2"
msgstr ""
#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#. T3CFr
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13259,6 +14672,7 @@ msgid "takeout"
msgstr ""
#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#. LYCNG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13268,6 +14682,7 @@ msgid "pie"
msgstr ""
#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#. YNHfJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13277,6 +14692,7 @@ msgid "drink"
msgstr ""
#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#. 3KB5F
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13286,6 +14702,7 @@ msgid "chopsticks"
msgstr ""
#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#. QmGAB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13295,6 +14712,7 @@ msgid "ufo"
msgstr ""
#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#. xghQ3
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13304,6 +14722,7 @@ msgid "sled"
msgstr ""
#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#. 5hGNv
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13313,6 +14732,7 @@ msgid "curling"
msgstr ""
#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#. EXrBL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13322,6 +14742,7 @@ msgid "bitcoin"
msgstr ""
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
+#. nmwie
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13331,6 +14752,7 @@ msgid "1/2"
msgstr ""
#. ⅓ (U+02153), see http://wiki.documentfoundation.org/Emoji
+#. GCWJS
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13340,6 +14762,7 @@ msgid "1/3"
msgstr ""
#. ¼ (U+000BC), see http://wiki.documentfoundation.org/Emoji
+#. Lgj8u
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13349,6 +14772,7 @@ msgid "1/4"
msgstr ""
#. ⅔ (U+02154), see http://wiki.documentfoundation.org/Emoji
+#. uYJY7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13358,6 +14782,7 @@ msgid "2/3"
msgstr ""
#. ¾ (U+000BE), see http://wiki.documentfoundation.org/Emoji
+#. UP2KQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13367,6 +14792,7 @@ msgid "3/4"
msgstr ""
#. ⅛ (U+0215B), see http://wiki.documentfoundation.org/Emoji
+#. ZBRTd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13376,6 +14802,7 @@ msgid "1/8"
msgstr ""
#. ⅜ (U+0215C), see http://wiki.documentfoundation.org/Emoji
+#. wAAbx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13385,6 +14812,7 @@ msgid "3/8"
msgstr ""
#. ⅝ (U+0215D), see http://wiki.documentfoundation.org/Emoji
+#. CX2bs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13394,6 +14822,7 @@ msgid "5/8"
msgstr ""
#. ⅞ (U+0215E), see http://wiki.documentfoundation.org/Emoji
+#. J9HEX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13403,6 +14832,7 @@ msgid "7/8"
msgstr ""
#. ¹ (U+000B9), see http://wiki.documentfoundation.org/Emoji
+#. oFFdk
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13412,6 +14842,7 @@ msgid "^1"
msgstr ""
#. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji
+#. tQbfE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13421,6 +14852,7 @@ msgid "^2"
msgstr ""
#. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji
+#. KChg6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13430,6 +14862,7 @@ msgid "^3"
msgstr ""
#. ⁴ (U+02074), see http://wiki.documentfoundation.org/Emoji
+#. FAXEo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13439,6 +14872,7 @@ msgid "^4"
msgstr ""
#. ⁵ (U+02075), see http://wiki.documentfoundation.org/Emoji
+#. mq4xj
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13448,6 +14882,7 @@ msgid "^5"
msgstr ""
#. ⁶ (U+02076), see http://wiki.documentfoundation.org/Emoji
+#. iwveQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13457,6 +14892,7 @@ msgid "^6"
msgstr ""
#. ⁷ (U+02077), see http://wiki.documentfoundation.org/Emoji
+#. pB4Eu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13466,6 +14902,7 @@ msgid "^7"
msgstr ""
#. ⁸ (U+02078), see http://wiki.documentfoundation.org/Emoji
+#. mC2zV
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13475,6 +14912,7 @@ msgid "^8"
msgstr ""
#. ⁹ (U+02079), see http://wiki.documentfoundation.org/Emoji
+#. uN9Qp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13484,6 +14922,7 @@ msgid "^9"
msgstr ""
#. ⁰ (U+02070), see http://wiki.documentfoundation.org/Emoji
+#. H3Zqf
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13493,6 +14932,7 @@ msgid "^0"
msgstr ""
#. ⁺ (U+0207A), see http://wiki.documentfoundation.org/Emoji
+#. GtmTo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13502,6 +14942,7 @@ msgid "^+"
msgstr ""
#. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji
+#. cKEWZ
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -13512,6 +14953,7 @@ msgid "^-"
msgstr "^-"
#. ⁼ (U+0207C), see http://wiki.documentfoundation.org/Emoji
+#. ukJvM
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13521,6 +14963,7 @@ msgid "^="
msgstr ""
#. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji
+#. ZMZdA
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -13531,6 +14974,7 @@ msgid "^("
msgstr "^("
#. ⁾ (U+0207E), see http://wiki.documentfoundation.org/Emoji
+#. EaAEu
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -13541,6 +14985,7 @@ msgid "^)"
msgstr "^)"
#. ₁ (U+02081), see http://wiki.documentfoundation.org/Emoji
+#. TBS22
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13550,6 +14995,7 @@ msgid "_1"
msgstr ""
#. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji
+#. gL88Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13559,6 +15005,7 @@ msgid "_2"
msgstr ""
#. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji
+#. gSTF9
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13568,6 +15015,7 @@ msgid "_3"
msgstr ""
#. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji
+#. qW6Ce
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13577,6 +15025,7 @@ msgid "_4"
msgstr ""
#. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji
+#. B4VTa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13586,6 +15035,7 @@ msgid "_5"
msgstr ""
#. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji
+#. WsC7f
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13595,6 +15045,7 @@ msgid "_6"
msgstr ""
#. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji
+#. 2rEnp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13604,6 +15055,7 @@ msgid "_7"
msgstr ""
#. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji
+#. 5SGSg
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13613,6 +15065,7 @@ msgid "_8"
msgstr ""
#. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji
+#. Kaa2h
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13622,6 +15075,7 @@ msgid "_9"
msgstr ""
#. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji
+#. op8an
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13631,6 +15085,7 @@ msgid "_0"
msgstr ""
#. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji
+#. FE6Lq
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13640,6 +15095,7 @@ msgid "_+"
msgstr ""
#. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji
+#. PdL5c
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -13650,6 +15106,7 @@ msgid "_-"
msgstr "_-"
#. ₌ (U+0208C), see http://wiki.documentfoundation.org/Emoji
+#. 97EG8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13659,6 +15116,7 @@ msgid "_="
msgstr ""
#. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji
+#. pF9N5
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -13669,6 +15127,7 @@ msgid "_("
msgstr "_("
#. ₎ (U+0208E), see http://wiki.documentfoundation.org/Emoji
+#. kCT2R
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -13679,6 +15138,7 @@ msgid "_)"
msgstr "_)"
#. ᵃ (U+01D43), see http://wiki.documentfoundation.org/Emoji
+#. huaxo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13688,6 +15148,7 @@ msgid "^a"
msgstr ""
#. ᵇ (U+01D47), see http://wiki.documentfoundation.org/Emoji
+#. pB7jZ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13697,6 +15158,7 @@ msgid "^b"
msgstr ""
#. ᶜ (U+01D9C), see http://wiki.documentfoundation.org/Emoji
+#. QymSR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13706,6 +15168,7 @@ msgid "^c"
msgstr ""
#. ᵈ (U+01D48), see http://wiki.documentfoundation.org/Emoji
+#. WWuF4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13715,6 +15178,7 @@ msgid "^d"
msgstr ""
#. ᵉ (U+01D49), see http://wiki.documentfoundation.org/Emoji
+#. DBFRu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13724,6 +15188,7 @@ msgid "^e"
msgstr ""
#. ᶠ (U+01DA0), see http://wiki.documentfoundation.org/Emoji
+#. FSSAb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13733,6 +15198,7 @@ msgid "^f"
msgstr ""
#. ᵍ (U+01D4D), see http://wiki.documentfoundation.org/Emoji
+#. wFF2B
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13742,6 +15208,7 @@ msgid "^g"
msgstr ""
#. ʰ (U+002B0), see http://wiki.documentfoundation.org/Emoji
+#. 2pBei
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13751,6 +15218,7 @@ msgid "^h"
msgstr ""
#. ⁱ (U+02071), see http://wiki.documentfoundation.org/Emoji
+#. GtCEX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13760,6 +15228,7 @@ msgid "^i"
msgstr ""
#. ʲ (U+002B2), see http://wiki.documentfoundation.org/Emoji
+#. ikBkL
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13769,6 +15238,7 @@ msgid "^j"
msgstr ""
#. ᵏ (U+01D4F), see http://wiki.documentfoundation.org/Emoji
+#. JNyVU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13778,6 +15248,7 @@ msgid "^k"
msgstr ""
#. ˡ (U+002E1), see http://wiki.documentfoundation.org/Emoji
+#. U8qEx
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13787,6 +15258,7 @@ msgid "^l"
msgstr ""
#. ᵐ (U+01D50), see http://wiki.documentfoundation.org/Emoji
+#. Bb3N7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13796,6 +15268,7 @@ msgid "^m"
msgstr ""
#. ⁿ (U+0207F), see http://wiki.documentfoundation.org/Emoji
+#. oT4ts
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13805,6 +15278,7 @@ msgid "^n"
msgstr ""
#. ᵒ (U+01D52), see http://wiki.documentfoundation.org/Emoji
+#. ufK3e
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13814,6 +15288,7 @@ msgid "^o"
msgstr ""
#. ᵖ (U+01D56), see http://wiki.documentfoundation.org/Emoji
+#. CDWbH
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13823,6 +15298,7 @@ msgid "^p"
msgstr ""
#. ʳ (U+002B3), see http://wiki.documentfoundation.org/Emoji
+#. tHyqw
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13832,6 +15308,7 @@ msgid "^r"
msgstr ""
#. ˢ (U+002E2), see http://wiki.documentfoundation.org/Emoji
+#. CsBY6
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13841,6 +15318,7 @@ msgid "^s"
msgstr ""
#. ᵗ (U+01D57), see http://wiki.documentfoundation.org/Emoji
+#. aU39K
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13850,6 +15328,7 @@ msgid "^t"
msgstr ""
#. ᵘ (U+01D58), see http://wiki.documentfoundation.org/Emoji
+#. zDqKT
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13859,6 +15338,7 @@ msgid "^u"
msgstr ""
#. ᵛ (U+01D5B), see http://wiki.documentfoundation.org/Emoji
+#. KYKGm
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13868,6 +15348,7 @@ msgid "^v"
msgstr ""
#. ʷ (U+002B7), see http://wiki.documentfoundation.org/Emoji
+#. j9e8C
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13877,6 +15358,7 @@ msgid "^w"
msgstr ""
#. ˣ (U+002E3), see http://wiki.documentfoundation.org/Emoji
+#. Eiacc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13886,6 +15368,7 @@ msgid "^x"
msgstr ""
#. ʸ (U+002B8), see http://wiki.documentfoundation.org/Emoji
+#. XQPuC
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13895,6 +15378,7 @@ msgid "^y"
msgstr ""
#. ᶻ (U+01DBB), see http://wiki.documentfoundation.org/Emoji
+#. vnmnz
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13904,6 +15388,7 @@ msgid "^z"
msgstr ""
#. ᴬ (U+01D2C), see http://wiki.documentfoundation.org/Emoji
+#. WvCDU
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13913,6 +15398,7 @@ msgid "^A"
msgstr ""
#. ᴮ (U+01D2E), see http://wiki.documentfoundation.org/Emoji
+#. wGXNi
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13922,6 +15408,7 @@ msgid "^B"
msgstr ""
#. ᴰ (U+01D30), see http://wiki.documentfoundation.org/Emoji
+#. hVJVE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13931,6 +15418,7 @@ msgid "^D"
msgstr ""
#. ᴱ (U+01D31), see http://wiki.documentfoundation.org/Emoji
+#. 8Efke
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13940,6 +15428,7 @@ msgid "^E"
msgstr ""
#. ᴳ (U+01D33), see http://wiki.documentfoundation.org/Emoji
+#. pApe7
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13949,6 +15438,7 @@ msgid "^G"
msgstr ""
#. ᴴ (U+01D34), see http://wiki.documentfoundation.org/Emoji
+#. Bjk2Z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13958,6 +15448,7 @@ msgid "^H"
msgstr ""
#. ᴵ (U+01D35), see http://wiki.documentfoundation.org/Emoji
+#. UR8AR
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13967,6 +15458,7 @@ msgid "^I"
msgstr ""
#. ᴶ (U+01D36), see http://wiki.documentfoundation.org/Emoji
+#. uobRE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13976,6 +15468,7 @@ msgid "^J"
msgstr ""
#. ᴷ (U+01D37), see http://wiki.documentfoundation.org/Emoji
+#. DMNFo
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13985,6 +15478,7 @@ msgid "^K"
msgstr ""
#. ᴸ (U+01D38), see http://wiki.documentfoundation.org/Emoji
+#. bzESb
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -13994,6 +15488,7 @@ msgid "^L"
msgstr ""
#. ᴹ (U+01D39), see http://wiki.documentfoundation.org/Emoji
+#. 2gTjB
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14003,6 +15498,7 @@ msgid "^M"
msgstr ""
#. ᴺ (U+01D3A), see http://wiki.documentfoundation.org/Emoji
+#. J5Gx4
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14012,6 +15508,7 @@ msgid "^N"
msgstr ""
#. ᴼ (U+01D3C), see http://wiki.documentfoundation.org/Emoji
+#. icthu
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14021,6 +15518,7 @@ msgid "^O"
msgstr ""
#. ᴾ (U+01D3E), see http://wiki.documentfoundation.org/Emoji
+#. zE85z
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14030,6 +15528,7 @@ msgid "^P"
msgstr ""
#. ᴿ (U+01D3F), see http://wiki.documentfoundation.org/Emoji
+#. jANLc
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14039,6 +15538,7 @@ msgid "^R"
msgstr ""
#. ᵀ (U+01D40), see http://wiki.documentfoundation.org/Emoji
+#. VXTXF
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14048,6 +15548,7 @@ msgid "^T"
msgstr ""
#. ᵁ (U+01D41), see http://wiki.documentfoundation.org/Emoji
+#. CCEnp
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14057,6 +15558,7 @@ msgid "^U"
msgstr ""
#. ⱽ (U+02C7D), see http://wiki.documentfoundation.org/Emoji
+#. CTtuW
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14066,6 +15568,7 @@ msgid "^V"
msgstr ""
#. ᵂ (U+01D42), see http://wiki.documentfoundation.org/Emoji
+#. tGGcN
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14075,6 +15578,7 @@ msgid "^W"
msgstr ""
#. ₐ (U+02090), see http://wiki.documentfoundation.org/Emoji
+#. mzsGJ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14084,6 +15588,7 @@ msgid "_a"
msgstr ""
#. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji
+#. AjRgG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14093,6 +15598,7 @@ msgid "_e"
msgstr ""
#. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji
+#. PEzPP
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14102,6 +15608,7 @@ msgid "_h"
msgstr ""
#. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji
+#. oVoDX
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14111,6 +15618,7 @@ msgid "_i"
msgstr ""
#. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji
+#. eAM4q
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14120,6 +15628,7 @@ msgid "_j"
msgstr ""
#. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji
+#. 5ZgCG
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14129,6 +15638,7 @@ msgid "_k"
msgstr ""
#. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji
+#. xvYvD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14138,6 +15648,7 @@ msgid "_l"
msgstr ""
#. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji
+#. GCDfd
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14147,6 +15658,7 @@ msgid "_m"
msgstr ""
#. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji
+#. GrwUs
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14156,6 +15668,7 @@ msgid "_n"
msgstr ""
#. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji
+#. ZG9m2
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14165,6 +15678,7 @@ msgid "_o"
msgstr ""
#. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji
+#. HaoJt
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14174,6 +15688,7 @@ msgid "_p"
msgstr ""
#. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji
+#. Yeg7A
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14183,6 +15698,7 @@ msgid "_r"
msgstr ""
#. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji
+#. F3MHa
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14192,6 +15708,7 @@ msgid "_s"
msgstr ""
#. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji
+#. nKDsn
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14201,6 +15718,7 @@ msgid "_t"
msgstr ""
#. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji
+#. NqYaD
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14210,6 +15728,7 @@ msgid "_u"
msgstr ""
#. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji
+#. 6P9ZQ
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14219,6 +15738,7 @@ msgid "_v"
msgstr ""
#. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji
+#. BCsM8
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14228,6 +15748,7 @@ msgid "_x"
msgstr ""
#. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji
+#. gytmK
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14238,6 +15759,7 @@ msgid "^alpha"
msgstr "আলফা"
#. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji
+#. hrktE
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14248,6 +15770,7 @@ msgid "^beta"
msgstr "বেটা"
#. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji
+#. yqXNK
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14258,6 +15781,7 @@ msgid "^gamma"
msgstr "গামা"
#. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji
+#. tL6DL
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14268,6 +15792,7 @@ msgid "^delta"
msgstr "ডেলটা"
#. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji
+#. w3K77
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14278,6 +15803,7 @@ msgid "^epsilon"
msgstr "এপসিলন"
#. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji
+#. xgw47
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14288,6 +15814,7 @@ msgid "^theta"
msgstr "থীটা"
#. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji
+#. mAHBc
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14298,6 +15825,7 @@ msgid "^iota"
msgstr "আইওটা"
#. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji
+#. W2CJE
#: emoji.ulf
msgctxt ""
"emoji.ulf\n"
@@ -14307,6 +15835,7 @@ msgid "^Phi"
msgstr ""
#. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji
+#. x68Va
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14317,6 +15846,7 @@ msgid "^phi"
msgstr "ফাই"
#. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji
+#. t9p8B
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14327,6 +15857,7 @@ msgid "^chi"
msgstr "কাই"
#. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji
+#. ZTjXp
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14337,6 +15868,7 @@ msgid "_beta"
msgstr "বেটা"
#. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji
+#. XTDCK
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14347,6 +15879,7 @@ msgid "_gamma"
msgstr "গামা"
#. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji
+#. GFHAL
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14357,6 +15890,7 @@ msgid "_rho"
msgstr "রো"
#. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji
+#. SFGWx
#: emoji.ulf
#, fuzzy
msgctxt ""
@@ -14367,6 +15901,7 @@ msgid "_phi"
msgstr "ফাই"
#. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji
+#. QZ79t
#: emoji.ulf
#, fuzzy
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index 52df7d282e7..f1bab8a59e0 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "বর্তমান ড্রাইভটি পরিবর্তন করা হয়।"
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
#. ncuAv
#: 03020402.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 feaceb58f7b..7382cfa2ed1 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,22 +10339,31 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
-#. yQzKr
+#. vFJRL
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"hd_id201586594659135\n"
+"par_id771621035263403\n"
"help.text"
-msgid "Service invocation"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
msgstr ""
-#. 5YFk5
+#. VAaLU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id211621035276160\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
msgstr ""
#. T8o7G
@@ -10321,6 +10375,15 @@ msgctxt ""
msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
#. HABsh
#: sf_exception.xhp
msgctxt ""
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
msgstr ""
-#. A9gBj
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
+msgstr ""
+
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
msgstr ""
-#. DBbfU
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
+msgstr ""
+
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index ddb560fd96f..5a9a2755a3d 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20545,6 +20545,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>পাঠ্য</emph> পাঠ্য নির্দেশ করে থাকে যা থেকে সকল অমুদ্রণযোগ্য অক্ষর অপসারণ করা হয়।"
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20815,14 +20824,14 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>দশমিক</emph> হলো দশমিক স্থানের ঐচ্ছিক সংখ্যা।"
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "<item type=\"input\">=DOLLAR(255)</item> $২৫৫.০০ প্রদান করে।"
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
#. 2beTG
#: 04060110.xhp
@@ -27151,805 +27160,13 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> 0064 প্রদান করে।"
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr ""
-
-#. NNzM9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"help.text"
-msgid "CONVERT"
-msgstr ""
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">একটি মানকে এক পরিমাপ একক থেকে অন্য পরিমাপ এককের সংশ্লিষ্ট মানে রূপান্তর করে।</ahelp>পরিমাপের একক টেক্সট হিসেবে সরাসরি উদ্ধৃতি চিহ্নের মধ্যে বা রেফারেন্স হিসেবে সন্নিবেশ করুন। আপনি যদি ঘরের মধ্যে পরিমাপের একক সন্নিবেশ করান, তাদেরকে অবশ্যই হুবুহু নিম্নলিখিত তালিকার সাথে অনুরূপ হতে হবে, যা অক্ষরের ছাঁদ নির্ভরশীল: উদাহরণস্বরূপ, ঘরে একটি ছোট হাতের l (লিটারের জন্য) সন্নিবেশ করানোর জন্য, l এর পরে উর্ধ্ব কমা ' সন্নিবেশ করান।"
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr "বৈশিষ্ট্য"
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr "একক"
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr "ওজন"
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr "দৈর্ঘ্য"
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr ""
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr "সময়"
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr ""
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr "চাপ"
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr ""
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr "বল"
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr ""
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr "শক্তি"
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr ""
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "ক্ষমতা"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr ""
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr "ক্ষেত্র শক্তি"
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr "তাপমাত্রা"
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr ""
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr "আয়তন"
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr ""
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr "এলাকা"
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr ""
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr "গতি"
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr "তথ্য"
-
-#. UTUhA
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"par_id3159899\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr ""
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr ""
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr ""
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr ""
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr ""
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr ""
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr ""
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr ""
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr ""
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr ""
-
-#. HnJBh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr ""
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr ""
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr ""
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr ""
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr ""
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr ""
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr ""
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr ""
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr ""
-
-#. G2FDE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr ""
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr ""
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr ""
-
-#. iiAPq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr ""
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr ""
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr ""
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr ""
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr ""
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr ""
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr ""
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr ""
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr ""
-
-#. GD6Gw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr ""
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr ""
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr ""
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr ""
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr ""
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr ""
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr ""
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr ""
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr ""
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr ""
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr ""
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr ""
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "তথ্যসূচক একক \"বিট\" এবং \"বাইট\" এর পূর্বে নিচের IEC 60027-2 / IEEE 1541 প্রিফিক্সের মধ্যে যেকোনো একটি থাকতে পারে:"
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ki kibi 1024"
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "Mi mebi 1048576"
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "Gi gibi 1073741824"
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "Ti tebi 1099511627776"
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "Pi pebi 1125899906842620"
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "Ei exbi 1152921504606850000"
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "Zi zebi 1180591620717410000000"
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "Yi yobi 1208925819614630000000000"
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr ""
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>Number</emph> হলো এমন একটি সংখ্যা, যা রূপান্তর করা হবে।"
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>FromUnit</emph> হলো এমন একটি একক, যেখান হতে রূপান্তর সম্পন্ন করা হয়।"
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>ToUnit</emph> হলো একটি একক যা রূপান্তরিত হয়। উভা একক একই ধরনের হতে হবে।"
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr ""
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
msgstr ""
#. G7UNe
@@ -49543,14 +48760,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "AutoFilter"
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
#. cTu3x
#: 12040100.xhp
@@ -49561,6 +48778,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">স্বয়ংক্রিয়ভাবে নির্বাচিত ঘর পরিসর পরিশোধন করে, এবং এর-সারি বাক্স তৈরি করে যেখানে আপনার প্রদর্শন করতে চাওয়া উপাদান আপনি পছন্দ করতে পারেন।</ahelp>"
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55591,6 +55042,33 @@ msgctxt ""
msgid "Examples"
msgstr "উদাহরণসমূহ"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57526,6 +57004,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr ""
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58624,13 +59848,22 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr ""
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
msgstr ""
#. BNTm6
@@ -63862,13 +65095,13 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr ""
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
msgstr ""
#. JoYks
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/guide.po b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
index 3aa44e5a9d2..276de5e55c9 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3022,13 +3022,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "একটি ফাঁকা কক্ষে কার্সার নির্ধারণ করুন, উদাহরণস্বরূপ, J১৪, এবং <emph>সন্নিবেশ করান - কার্যক্রম</emph> পছন্দ করুন।"
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index d49193df192..03f63d9ad29 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20320,6 +20320,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr ""
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/06.po b/source/bn-IN/helpcontent2/source/text/shared/06.po
index dc7e07e24aa..ca21b5b27f0 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/06.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2018-09-03 12:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -304,13 +304,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr ""
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
+msgid "Impress Screenshots"
msgstr ""
#. c6FJr
diff --git a/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 103f710ec13..651f926a03f 100644
--- a/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-03-31 10:35+0200\n"
-"PO-Revision-Date: 2018-11-13 06:24+0000\n"
-"Last-Translator: joydeep <jdsk2013@gmail.com>\n"
-"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
-"Language: bn_IN\n"
+"PO-Revision-Date: 2021-05-27 15:37+0000\n"
+"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
+"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/bn_IN/>\n"
+"Language: bn-IN\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: 1542090266.000000\n"
#. tBfTE
@@ -212,7 +212,7 @@ msgctxt ""
"OOO_ACTIONTEXT_22\n"
"LngText.text"
msgid "Searching for related applications"
-msgstr "সংশ্লিষ্ট অ্যাপ্লিকেশনসমূহ খোঁজা হচ্ছে "
+msgstr "সংশ্লিষ্ট অ্যাপ্লিকেশনসমূহ খোঁজা হচ্ছে"
#. aARc2
#: ActionTe.ulf
@@ -248,7 +248,7 @@ msgctxt ""
"OOO_ACTIONTEXT_26\n"
"LngText.text"
msgid "Copying files to the network"
-msgstr "নেটওয়ার্কে ফাইলসমূহ কপি করা হচ্ছে "
+msgstr "নেটওয়ার্কে ফাইলসমূহ কপি করা হচ্ছে"
#. GB7FF
#: ActionTe.ulf
@@ -572,7 +572,7 @@ msgctxt ""
"OOO_ACTIONTEXT_62\n"
"LngText.text"
msgid "ProgID: [1]"
-msgstr "ProgID: [1]"
+msgstr "প্রোগ্রামID: [1]"
#. TMjrn
#: ActionTe.ulf
@@ -590,7 +590,7 @@ msgctxt ""
"OOO_ACTIONTEXT_64\n"
"LngText.text"
msgid "LibID: [1]"
-msgstr "LibID: [1]"
+msgstr "লিবID: [1]"
#. X4YAE
#: ActionTe.ulf
@@ -671,7 +671,7 @@ msgctxt ""
"OOO_ACTIONTEXT_73\n"
"LngText.text"
msgid "Removing files from previous installation"
-msgstr ""
+msgstr "পুরানো প্রতিস্থাপন থেকে ফাইল মোছা"
#. G7Cdp
#: ActionTe.ulf
@@ -950,7 +950,7 @@ msgctxt ""
"OOO_ACTIONTEXT_108\n"
"LngText.text"
msgid "AppId: [1]{{, AppType: [2]}}"
-msgstr "AppId: [1]{{, AppType: [2]}}"
+msgstr "এপId: [1]{{, এপপ্রকৃতি: [2]}}"
#. pwfZN
#: ActionTe.ulf
@@ -1022,7 +1022,7 @@ msgctxt ""
"OOO_ACTIONTEXT_116\n"
"LngText.text"
msgid "ProgID: [1]"
-msgstr "ProgID: [1]"
+msgstr "প্রোগ্রামID: [1]"
#. mFnav
#: ActionTe.ulf
@@ -1040,7 +1040,7 @@ msgctxt ""
"OOO_ACTIONTEXT_118\n"
"LngText.text"
msgid "LibID: [1]"
-msgstr "LibID: [1]"
+msgstr "লিবID: [1]"
#. GHGDX
#: ActionTe.ulf
@@ -1130,7 +1130,7 @@ msgctxt ""
"OOO_CONTROL_7\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "বর্তমান গন্তব্য ফোল্ডার পরিবর্তন করুন"
#. 6cCLG
#: Control.ulf
@@ -1206,13 +1206,12 @@ msgstr "পণ্যের সার্ভার ছবির জন্য এ
#. NdeD8
#: Control.ulf
-#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_20\n"
"LngText.text"
msgid "Enter the network location or click Change to browse to a location. Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard."
-msgstr "নেটওয়ার্ক অবস্থান ঢোকান অথবা একটি অবস্থানে ব্রাউজ করতে পরিবর্তন এ ক্লিক করুন। উল্লেখিত নেটওয়ার্ক অবস্থানে [ProductName] এর একটি সার্ভার চিত্র তৈরি করতে ইনস্টলেশন ক্লিক করুন অথবা উইজার্ড প্রস্থান করতে বাতিল এ ক্লিক করুন।"
+msgstr "নেটওয়ার্ক অবস্থান টাইপ করুন অথবা একটি অবস্থানে ব্রাউজ করতে পরিবর্তন এ ক্লিক করুন। উল্লেখিত নেটওয়ার্ক অবস্থানে [ProductName] এর একটি সার্ভার চিত্র তৈরি করতে ইনস্টলেশন ক্লিক করুন অথবা উইজার্ড প্রস্থান করতে বাতিল এ ক্লিক করুন।"
#. U7sr3
#: Control.ulf
@@ -1275,7 +1274,7 @@ msgctxt ""
"OOO_CONTROL_27\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "[productName[ প্রতিস্থাপন উইজার্ড এ স্বাগত"
#. 9Zq7E
#: Control.ulf
@@ -1374,7 +1373,7 @@ msgctxt ""
"OOO_CONTROL_40\n"
"LngText.text"
msgid "{&DialogDefaultBold}User Information"
-msgstr ""
+msgstr "ব্যবহারকারীর তথ্য"
#. 3cLPR
#: Control.ulf
@@ -1464,7 +1463,7 @@ msgctxt ""
"OOO_CONTROL_54\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup"
-msgstr ""
+msgstr "আচার-বহির্ভূত প্রতিস্থাপন"
#. AnSJQ
#: Control.ulf
@@ -1545,7 +1544,7 @@ msgctxt ""
"OOO_CONTROL_65\n"
"LngText.text"
msgid "{&DialogDefaultBold}Custom Setup Tips"
-msgstr ""
+msgstr "আচার-বহির্ভূত প্রতিস্থাপনের ইঙ্গিত"
#. 2sY6N
#: Control.ulf
@@ -1563,7 +1562,7 @@ msgctxt ""
"OOO_CONTROL_67\n"
"LngText.text"
msgid "Will be installed on first use. (Available only if the feature supports this option.)"
-msgstr "প্রথমবার ব্যবহারে ইনস্টলেশন করা হবে। (শুধুমাত্র যদি বৈশিষ্ট্য এই অপশন সমর্থন করে তবেই এটি সুপ্রাপ্য) "
+msgstr "প্রথমবার ব্যবহারে ইনস্টলেশন করা হবে। (শুধুমাত্র যদি বৈশিষ্ট্য এই অপশন সমর্থন করে তবেই এটি সুপ্রাপ্য)"
#. N5QGm
#: Control.ulf
@@ -1662,7 +1661,7 @@ msgctxt ""
"OOO_CONTROL_90\n"
"LngText.text"
msgid "{&DialogDefaultBold}Destination Folder"
-msgstr ""
+msgstr "গন্তব্য ফোল্ডার"
#. RgRB4
#: Control.ulf
@@ -1878,7 +1877,7 @@ msgctxt ""
"OOO_CONTROL_124\n"
"LngText.text"
msgid "Build contributed in collaboration with the community by [Manufacturer]. For credits, see: https://www.documentfoundation.org"
-msgstr ""
+msgstr "[Manufacturer] এর দ্বারা সম্প্রদায়ের সহযোগিতায় নির্মিত কৃতিত্বের জন্যে দেখুন: https://www.documentfoundation.org"
#. tLGPm
#: Control.ulf
@@ -1896,7 +1895,7 @@ msgctxt ""
"OOO_CONTROL_126\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "[ProductName] প্রতিস্থাপন উইজার্ড এ স্বাগত"
#. wJD2b
#: Control.ulf
@@ -1941,7 +1940,7 @@ msgctxt ""
"OOO_CONTROL_133\n"
"LngText.text"
msgid "{&DialogDefaultBold}License Agreement"
-msgstr ""
+msgstr "অনুমতিপত্র স্বীকৃতি"
#. VmMs5
#: Control.ulf
@@ -2058,7 +2057,7 @@ msgctxt ""
"OOO_CONTROL_149\n"
"LngText.text"
msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "[Product Name] এর প্রতিস্থাপন উইজার্ড এ স্বাগত"
#. A8B4y
#: Control.ulf
@@ -2094,7 +2093,7 @@ msgctxt ""
"OOO_CONTROL_155\n"
"LngText.text"
msgid "{&DialogDefaultBold}Out of Disk Space"
-msgstr ""
+msgstr "ডিস্কে যথেষ্ট খালি জায়গা নেই"
#. 4BEms
#: Control.ulf
@@ -2148,7 +2147,7 @@ msgctxt ""
"OOO_CONTROL_161\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "[Product Name]এর সংস্কারে স্বাগত"
#. wFLhj
#: Control.ulf
@@ -2211,7 +2210,7 @@ msgctxt ""
"OOO_CONTROL_170\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Modify the Program"
-msgstr ""
+msgstr "প্রোগ্রামে পরিবর্তন করতে প্রস্তুত"
#. a9B5F
#: Control.ulf
@@ -2220,7 +2219,7 @@ msgctxt ""
"OOO_CONTROL_171\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Repair the Program"
-msgstr ""
+msgstr "প্রোগ্রামের সংশোধন করতে প্রস্তুত"
#. 9e9VQ
#: Control.ulf
@@ -2229,7 +2228,7 @@ msgctxt ""
"OOO_CONTROL_172\n"
"LngText.text"
msgid "{&DialogDefaultBold}Ready to Install the Program"
-msgstr ""
+msgstr "প্রোগ্রাম প্রতিস্থাপন করতে প্রস্তুত"
#. y8BGp
#: Control.ulf
@@ -2265,7 +2264,7 @@ msgctxt ""
"OOO_CONTROL_178\n"
"LngText.text"
msgid "You have chosen to remove the program from your system."
-msgstr "আপনি সিস্টেম থেকে প্রোগ্রাম সরিয়ে ফেলা বেছে নিয়েছেন। "
+msgstr "আপনি সিস্টেম থেকে প্রোগ্রাম সরিয়ে ফেলা বেছে নিয়েছেন।"
#. FxWU4
#: Control.ulf
@@ -2292,7 +2291,7 @@ msgctxt ""
"OOO_CONTROL_181\n"
"LngText.text"
msgid "{&DialogDefaultBold}Remove the Program"
-msgstr ""
+msgstr "প্রোগ্রাম অপসারণ করতে প্রস্তুত"
#. x4Thh
#: Control.ulf
@@ -2373,7 +2372,7 @@ msgctxt ""
"OOO_CONTROL_190\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "প্রতিস্থাপন উইজার্ড-এর কাজ সম্পন্ন হয়েছে"
#. 3yQtG
#: Control.ulf
@@ -2418,7 +2417,7 @@ msgctxt ""
"OOO_CONTROL_198\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "প্রতিস্থাপন উইজার্ড-এর কাজ সম্পন্ন হয়েছে"
#. HXdXy
#: Control.ulf
@@ -2544,17 +2543,16 @@ msgctxt ""
"OOO_CONTROL_217\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "[ProductName] এর প্রতিস্থাপন উইজার্ডে স্বাগত"
#. GYEbK
#: Control.ulf
-#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_218\n"
"LngText.text"
msgid "[ProductName] Setup is preparing the Installation Wizard which will guide you through the program setup process. Please wait."
-msgstr "[ProductName] সেটআপ, একটি ইনস্টলেশন উইজার্ড শুরু করতে যাচ্ছে যেটি আপনাকে ইনস্টলেশন প্রক্রিয়ার প্রতি ধাপে নির্দেশনা দিবে। অনুগ্রহ করে অপেক্ষা করুন।"
+msgstr "[ProductName] সেটআপ, একটি প্রতিস্থাপন উইজার্ড শুরু করতে যাচ্ছে যেটি আপনাকে প্রতিস্থাপন প্রক্রিয়ার প্রতি ধাপে দিকনির্দেশ দেবে। অনুগ্রহ করে অপেক্ষা করুন।"
#. ryhy8
#: Control.ulf
@@ -2626,7 +2624,7 @@ msgctxt ""
"OOO_CONTROL_226\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "প্রতিস্থাপন উইজার্ডের কাজ সম্পন্ন হয়েছে"
#. fCUfv
#: Control.ulf
@@ -2671,7 +2669,7 @@ msgctxt ""
"OOO_CONTROL_234\n"
"LngText.text"
msgid "The program features you selected are being installed."
-msgstr "যে প্রোগ্রাম বৈশিষ্ট্যগুলো আপনি নির্বাচন করেছেন তা ইনস্টল হচ্ছে। "
+msgstr "যে প্রোগ্রাম বৈশিষ্ট্যগুলো আপনি নির্বাচন করেছেন তা ইনস্টল হচ্ছে।"
#. S2Nsa
#: Control.ulf
@@ -2707,7 +2705,7 @@ msgctxt ""
"OOO_CONTROL_238\n"
"LngText.text"
msgid "{&DialogDefaultBold}Installing [ProductName]"
-msgstr ""
+msgstr "[ProductName] প্রতিস্থাপিত হচ্ছে"
#. hwEMZ
#: Control.ulf
@@ -2716,7 +2714,7 @@ msgctxt ""
"OOO_CONTROL_239\n"
"LngText.text"
msgid "{&DialogDefaultBold}Uninstalling [ProductName]"
-msgstr ""
+msgstr "[ProductName] অপসারিত হচ্ছে"
#. XuEFu
#: Control.ulf
@@ -2806,7 +2804,7 @@ msgctxt ""
"OOO_CONTROL_250\n"
"LngText.text"
msgid "{&DialogHeading}Resuming the Installation Wizard for [ProductName]"
-msgstr ""
+msgstr "[ProductName] এর প্রতিস্থাপন উইজার্ড পুনরায় শুরু করা হচ্ছে"
#. ryZBv
#: Control.ulf
@@ -2869,7 +2867,7 @@ msgctxt ""
"OOO_CONTROL_259\n"
"LngText.text"
msgid "{&DialogDefaultBold}Setup Type"
-msgstr ""
+msgstr "প্রতিস্থাপনের প্রকৃতি"
#. kv6GZ
#: Control.ulf
@@ -2977,7 +2975,7 @@ msgctxt ""
"OOO_CONTROL_278\n"
"LngText.text"
msgid "{&DialogDefaultBold}File Type"
-msgstr ""
+msgstr "ফাইলের শ্রেণীবিভাগ"
#. gjEzM
#: Control.ulf
@@ -3026,7 +3024,6 @@ msgstr "গন্তব্য ফোল্ডার পরীক্ষা কর
#. 5VLAA
#: Control.ulf
-#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_305\n"
@@ -3041,17 +3038,16 @@ msgctxt ""
"OOO_CONTROL_306\n"
"LngText.text"
msgid "To select a different version, click Change. Otherwise click Cancel to abort the Installation Wizard."
-msgstr ""
+msgstr "অন্য সংস্করণ বাছতে পরিবর্তন এ ক্লিক করুন, অন্যথায় প্রতিস্থাপন উইজার্ডটিকে বাতিল করতে বাতিল এ ক্লিক করুন"
#. LFZCF
#: Control.ulf
-#, fuzzy
msgctxt ""
"Control.ulf\n"
"OOO_CONTROL_307\n"
"LngText.text"
msgid "To select a different folder, click Change."
-msgstr "একটি ভিন্ন ফোল্ডার নির্বাচন করতে, ক্লিক করুন "
+msgstr "একটি ভিন্ন ফোল্ডার নির্বাচন করতে, পরিবর্তনে ক্লিক করুন"
#. VganB
#: Control.ulf
@@ -3096,7 +3092,7 @@ msgctxt ""
"OOO_CONTROL_319\n"
"LngText.text"
msgid "Create a shortcut on desktop"
-msgstr ""
+msgstr "ডেস্কটপে শর্টকাট তৈরী করুন"
#. cjkES
#: Control.ulf
@@ -3123,7 +3119,7 @@ msgctxt ""
"OOO_CONTROL_323\n"
"LngText.text"
msgid "The following applications are using files that need to be updated by this setup. You can let Installation Wizard close them and attempt to restart them, or reboot the system later to complete the setup."
-msgstr ""
+msgstr "নিম্নলিখিত এপ্লিকেশনগুলি এমন কিছু ফাইল ব্যবহার করছে যা এই সেটআপ প্রোগ্রাম কে উন্নীত করতে হবে। আপনি চাইলে প্রতিস্থাপন উইজার্ডকে এদের বন্ধ করে পুনরায় চালু করার অনুমতি দিতে পারেন অথবা কম্পিউটার পুনরায় চালু করে সেটআপ শেষ করতে পারেন।"
#. qDAnG
#: Control.ulf
@@ -3132,7 +3128,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "ফাইল ব্যবহৃত হচ্ছে"
#. giWW4
#: Control.ulf
@@ -3159,7 +3155,7 @@ msgctxt ""
"OOO_CONTROL_327\n"
"LngText.text"
msgid "{&DialogDefaultBold}Attention!"
-msgstr ""
+msgstr "লক্ষ্য করুন"
#. 5eE5R
#: Control.ulf
@@ -3168,7 +3164,7 @@ msgctxt ""
"OOO_CONTROL_328\n"
"LngText.text"
msgid "The [ProductName] Help must be installed in the same directory as the program."
-msgstr ""
+msgstr "প্রোগ্রাম এবং সহায়ক একই ডিরেক্টরিতে প্রতিস্থাপন করতে হবে"
#. jeyr7
#: CustomAc.ulf
@@ -3357,7 +3353,7 @@ msgctxt ""
"OOO_ERROR_19\n"
"LngText.text"
msgid "Please wait while Windows configures [ProductName]"
-msgstr "যখন Windows [ProductName] কনফিগার করছে তখন অনুগ্রহ করে অপেক্ষা করুন "
+msgstr "যখন Windows [ProductName] কনফিগার করছে তখন অনুগ্রহ করে অপেক্ষা করুন"
#. bzY5o
#: Error.ulf
@@ -3564,7 +3560,7 @@ msgctxt ""
"OOO_ERROR_42\n"
"LngText.text"
msgid "An error occurred while attempting to create the directory [2]"
-msgstr "ডিরেক্টরি [2] তৈরি করার চেষ্টা করার সময় একটি ত্রুটি সংঘঠিত হয়েছিল "
+msgstr "ডিরেক্টরি [2] তৈরি করার চেষ্টা করার সময় একটি ত্রুটি সংঘঠিত হয়েছিল"
#. r7jLo
#: Error.ulf
@@ -4158,7 +4154,7 @@ msgctxt ""
"OOO_ERROR_108\n"
"LngText.text"
msgid "Could not unregister type library for file [2]. Contact your support personnel."
-msgstr "ফাইল [2] এর জন্য টাইপ লাইব্রেরি অনিবন্ধিত করতে ব্যর্থ। আপনার সহায়তা প্রদানকারীর সাথে যোগাযোগ করুন। "
+msgstr "ফাইল [2] এর জন্য টাইপ লাইব্রেরি অনিবন্ধিত করতে ব্যর্থ। আপনার সহায়তা প্রদানকারীর সাথে যোগাযোগ করুন।"
#. 4pspZ
#: Error.ulf
@@ -4365,7 +4361,7 @@ msgctxt ""
"OOO_ERROR_131\n"
"LngText.text"
msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]"
-msgstr ""
+msgstr "একটি পূর্বপ্রয়োজনীয়ের প্রতিস্থাপন হয়নি [২] । আপনি নিজে এটি মাইক্রোসফট এর সাইট থেকে প্রতিস্থাপন করে এই উৎপাদনটি ব্যবহার করতে হতে পারে[৩]।"
#. oeCq9
#: LaunchCo.ulf
@@ -4392,7 +4388,7 @@ msgctxt ""
"OOO_LAUNCH_3\n"
"LngText.text"
msgid "To install [ProductName] on Windows 8.1, at least April 2014 update rollup (MS KB 2919355) must be installed."
-msgstr ""
+msgstr "[ProductName] উইন্ডোস ৮.১ এ প্রতিস্থাপন করতে হলে ন্যূনতম এপ্রিল ২০১৪ এর উন্নীতিকরণ (MS KB 2919355) প্রতিস্থাপিত হতে হবে"
#. 9rCtE
#: Property.ulf
@@ -4527,7 +4523,7 @@ msgctxt ""
"OOO_RADIOBUTTON_1\n"
"LngText.text"
msgid "{&DialogDefaultBold}&Modify"
-msgstr ""
+msgstr "পরিবর্তন"
#. AGLAj
#: RadioBut.ulf
@@ -4536,7 +4532,7 @@ msgctxt ""
"OOO_RADIOBUTTON_2\n"
"LngText.text"
msgid "{&DialogDefaultBold}Re&pair"
-msgstr ""
+msgstr "মেরামত"
#. wCZDY
#: RadioBut.ulf
@@ -4545,7 +4541,7 @@ msgctxt ""
"OOO_RADIOBUTTON_3\n"
"LngText.text"
msgid "{&DialogDefaultBold}&Remove"
-msgstr ""
+msgstr "অপসারণ"
#. GGfjA
#: RadioBut.ulf
@@ -4554,7 +4550,7 @@ msgctxt ""
"OOO_RADIOBUTTON_4\n"
"LngText.text"
msgid "{&DialogDefaultBold}&Typical"
-msgstr ""
+msgstr "সাধারণ"
#. e8DR4
#: RadioBut.ulf
@@ -4563,7 +4559,7 @@ msgctxt ""
"OOO_RADIOBUTTON_5\n"
"LngText.text"
msgid "{&DialogDefaultBold}Cu&stom"
-msgstr ""
+msgstr "ঐচ্ছিক"
#. WaaRd
#: RadioBut.ulf
@@ -4608,7 +4604,7 @@ msgctxt ""
"OOO_RADIOBUTTON_10\n"
"LngText.text"
msgid "&Close the applications and attempt to restart them."
-msgstr ""
+msgstr "এপ্লিকেশন গুলি বন্ধ করে পুনরায় চালু করার প্রয়াস।"
#. T4DzH
#: RadioBut.ulf
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 593e6f86025..a1ef6ca954f 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4616,14 +4616,14 @@ msgctxt ""
msgid "~Number"
msgstr "সংখ্যা"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4636,14 +4636,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index 45bccd10fd6..df61b08e2c5 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -16961,112 +16961,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "আদর্শ ফিল্টার"
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "শীর্ষ ১০"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "ফাঁকা"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "ফাঁকা নয়"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "নামহীন"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "কলাম"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "সারি %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "শীট"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "নাম"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "শীট সংযুক্ত করুন"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "শীট পুনঃনামকরণ করুন"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "ট্যাবের রং"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "ডিফল্ট"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "বস্তু নামকরণ"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "ছবি সন্নিবেশ করুন"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -17074,135 +17080,135 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "রেকর্ড সুরক্ষিতকরণ"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "রেকর্ড অরক্ষিতকরণ "
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "পাসওয়ার্ড:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "পাসওয়ার্ড (ঐচ্ছিক):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "ভুল পাসওয়ার্ড"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "প্রান্ত (~E)"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "অজানা"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "সর্বনিম্ন (~M)"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "সর্বোচ্চ (~M)"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "মান (~V)"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "উৎস (~S)"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "ভুক্তি (~E)"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "সিস্টেম"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "ট্যাব"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "স্থান"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17214,409 +17220,409 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "ছবি ফিল্টার"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "পাঠ্য"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "শীট নির্বাচন করুন"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "নির্বাচিত শীট (~S)"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "মাপকাঠি"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "এই মাপকাঠিটি নির্দিষ্ট অবস্থানে বস্তুকে নিয়ন্ত্রণ করে।"
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "প্রাকদর্শন"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "এই শীটটি দেখায় কিভাবে নথিতে ডাটা সাজানো হবে।"
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "নথির দৃশ্যপট"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "শীট %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "ঘর %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "বাম অংশ"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "পৃষ্ঠা প্রাকদর্শন"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "কেন্দ্রীয় অংশ"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "ডান অংশ"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "%1 পৃষ্ঠার শীর্ষচরণ"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "%1 পৃষ্ঠার পাদচরণ"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "ইনপুট লাইন"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "এটি এমন জায়গা যেখানে আপনি পাঠ্য, সংখ্যা বা সূত্রসমূহ সন্নিবেশ করাতে বা সম্পাদনা করতে পারেন।"
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "মিডিয়া প্লেব্যাক"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "মাউসের বোতাম চাপা হয়েছে"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "সূত্র বার"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME স্প্রেডশীটসমূহ"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(শুধুমাত্র-পাঠযোগ্য)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(প্রাকদর্শন মোড)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
#, fuzzy
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "ফাঁকা পৃষ্ঠার আউটপুট রোধ করুন"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "মূল নথিটি খোলা না হওয়ার ফলে নিম্নলিখিত DDE উৎস আপডেট করা সম্ভব নয়। অনুগ্রহ করে মূল নথিটি খুলে পুনরায় প্রচেষ্টা করুন।"
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "নিম্নলিখিত বহিস্থিত ফাইলটি লোড করা যায়নি। এই ফাইল থেকে সংযুক্ত তথ্য আপডেট করা হয়নি।"
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "বাহ্যিক লিঙ্ক অাপডেট করা হচ্ছে।"
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "ক্যালক A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "এক্সেল A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "এক্সেল R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "পরিসর কলাম লেবেল ধারণ করে (~b)"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "পরিসর সারি লেবেল ধারণ করে (~r)"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "অবৈধ মান"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "কোনো সূত্র উল্লেখিত নেই।"
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "কলাম বা সারি কোনটিই উল্লেখিত নেই।"
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "অনির্ধারিত নাম বা পরিসর।"
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "অনির্ধারিত নাম বা ভুল ঘরের রেফারেন্স।"
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "সূত্রসমূহ কলাম গঠন করে না।"
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "সূত্রসমূহ সারি গঠন করে না।"
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "AutoFormat যোগ করুন"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "AutoFormat পুনরায় নামকরণ করুন"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "নাম"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "AutoFormat মুছুন"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "আপনি কি সত্যিই # স্বয়ংক্রিয়-বিন্যাস মুছে ফেলতে চান?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "বন্ধ করুন (~C)"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "জানুয়ারি"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "ফেব্রুয়ারি"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "মার্চ"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "উত্তর"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "মধ্য"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "দক্ষিণ"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "সর্বমোট"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "নোঙ্গর পরিবর্তন"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17624,448 +17630,448 @@ msgstr "শর্ত"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "বিষয়বস্তু"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "শীট"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "পরিসরের নাম"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "ডাটাবেসের পরিসর"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "ছবি"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE অবজেক্ট"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "মন্তব্য"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "সংযোগকৃত এলাকাসমূহ"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "অঙ্কন বস্তু"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "সক্রিয়"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "নিষ্ক্রিয়"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "আড়াল"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "সক্রিয় উইন্ডো"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "দৃশ্যকল্পের নাম"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "মন্তব্য"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "আরোহী ক্রমানুসারে সাজানো"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "অবরোহী ক্রমানুসারে সাজানো"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "পছন্দসই ক্রমিকায়ন"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "নামের বাক্স"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "ইনপুট লাইন"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "ফাংশন উইজার্ড"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "গ্রহণ"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "বাতিল"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "সূত্র"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "ফরমুলা বার প্রসারণ করা হবে"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "ফরমুলা বার সংকুচন করা হবে"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "তারিখ"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "অজানা ব্যবহারকারী"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "কলাম সন্নিবেশ করা হয়েছে"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "সারি সন্নিবেশ করা হয়েছে"
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "শীট সন্নিবেশ করা হয়েছে"
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "কলাম মুছে ফেলা হয়েছে"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "সারি মুছে ফেলা হয়েছে"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "শীট মুছে ফেলা হয়েছে"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "পরিসর সরানো হয়েছে"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "পরিবর্তিত বিষয়বস্তুসমূহ"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "পরিবর্তিত বিষয়বস্তুসমূহ"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "পরিবর্তন করা হয়েছে"
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "মূল"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "পরিবর্তন বাতিল করা হয়েছে"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "গ্রহণ করা হয়েছে"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "বাতিল করা হয়েছে"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "সন্নিবেশ নিষেধ"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<ফাঁকা>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "সুরক্ষিত নয়"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "পাসওয়ার্ড সুরক্ষিত নয়"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "সঙ্গতিহীন হ্যাশ"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "সঙ্গতিপূর্ণ হ্যাশ"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "পুনরায় লিখুন"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "পরিবর্তনশীল গড়"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "এক্সপোনেনশিয়াল স্মুথিং"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
#, fuzzy
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "বিভেদতার বিশ্লেষণ"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
#, fuzzy
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - একক ফ্যাক্টর"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
#, fuzzy
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "ANOVA - দুই ফ্যাক্টর"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "গ্রুপসমূহ"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
#, fuzzy
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "গ্রুপের মধ্যে"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
#, fuzzy
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "গ্রুপের মধ্যে"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "পার্থক্যের উত্স"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
#, fuzzy
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
#, fuzzy
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
#, fuzzy
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "P-মান"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
#, fuzzy
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "F গুরুতর"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "সর্বমোট"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "অান্তঃসম্পর্ক"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
#, fuzzy
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
@@ -18073,13 +18079,13 @@ msgstr "অান্তঃসম্পর্ক"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "কোভ্যারিয়েন্স"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
#, fuzzy
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
@@ -18087,105 +18093,105 @@ msgstr "কোভ্যারিয়েন্স"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "বর্ণনাত্মক পরিসংখ্যান"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "গড়"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "মানক ত্রুটি"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Mode"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "মেডিয়ান"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "ভেদাংক"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
#, fuzzy
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "মানক চ্যুতি"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
#, fuzzy
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "কিরটোসিস"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
#, fuzzy
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "স্কিউনেস"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "পরিসর"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
#, fuzzy
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "সর্বনিম্ন"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "সর্বোচ্চ"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
#, fuzzy
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Sum"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
#, fuzzy
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Count"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
#, fuzzy
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
@@ -18193,122 +18199,122 @@ msgstr "তৃতীয় চতুর্থাংশ"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
#, fuzzy
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "অনির্দিষ্ট ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "একই"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "একই অখন্ড"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "স্বাভাবিক"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "কৌচি"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "বারনৌলি"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "দ্বিমাত্রিক"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "ঋণাত্মক বাইনোমিয়াল"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "চি স্কোয়ার্ড"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "জ্যামিতিক"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "সর্বনিম্ন"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "সর্বোচ্চ"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "গড়"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "মানক চ্যুতি"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "মেডিয়ান"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "সিগমা"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "p মান"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "ট্রায়ালের সংখ্যা"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
@@ -18316,365 +18322,365 @@ msgstr "nu মান"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "নমুনা"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
#, fuzzy
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "F-পরীক্ষা"
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
#, fuzzy
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "F-পরীক্ষা"
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
#, fuzzy
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "z-পরীক্ষা"
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
#, fuzzy
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "z-পরীক্ষা"
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
#, fuzzy
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "টেস্ট অফ ইন্ডিপেন্ডেন্স (চি-স্কোয়ার)"
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
#, fuzzy
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "কলাম %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
#, fuzzy
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "সারি %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "আলফা"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "ভ্যারিয়েবল ১"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "ভ্যারিয়েবল ২"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
#, fuzzy
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "হাইপোথেজাইড গড় পার্থক্য"
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "অপারেশন"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
#, fuzzy
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "পরিলক্ষিত গড় পার্থক্য"
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "P-মান"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "জরুরি মান"
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "টেস্ট পরিসংখ্যান"
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
#, fuzzy
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "রৈখিক (_n)"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "লগারিদমিক"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "ঘাত"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
#, fuzzy
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "রিগ্রেশন ধরন"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "ইন্টারনেট"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
#, fuzzy
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) ডান-টেল"
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F গুরুত্বপূর্ণ ডান-টেল"
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
#, fuzzy
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) বাম-টেল"
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F গুরুত্বপূর্ণ বাম-টেল"
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
#, fuzzy
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P দুই-টেল"
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
@@ -18682,49 +18688,49 @@ msgstr "F গুরুতর দুই-টেল"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
#, fuzzy
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "পিয়ার্সন অান্তঃসম্পর্ক"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
#, fuzzy
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "পার্থক্যের বিভেদতা"
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
#, fuzzy
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "t স্ট্যাট"
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
#, fuzzy
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) ওয়ান-টেল"
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t ক্রিটিক্যাল ওয়ান-টেল"
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) দুই-টেল"
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
@@ -18732,41 +18738,41 @@ msgstr "t গুরুত্বপূর্ণ দুই-টেল"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
#, fuzzy
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "জ্ঞাত বৈচিত্র্য"
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) ওয়ান-টেল"
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "z ক্রিটিক্যাল ওয়ান-টেল"
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
#, fuzzy
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (Z<=z) টু-টেল"
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
@@ -18774,111 +18780,111 @@ msgstr "z জরুরি টু-টেল"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "কোনো ব্যবহারকারী ডাটা সহজলভ্য নয়।"
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(বিশেষ প্রবেশাধিকার)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index baf98d9bf46..4e801ad359d 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3645,9 +3645,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "মুদ্রণযোগ্য পৃষ্ঠায় মানানসই করা হবে"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3657,9 +3657,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "একাধিক কাগজের পাতায় ভাগ করে দেয়া হয়"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 9dfb6c01c57..bea36801176 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -2987,148 +2987,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3140,55 +3140,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "ডকুমেন্টে হরফ এম্বেড করুন (_E)"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr "_শুধুমাত্র ডকুমেন্ট ব্যবহার করা হয় যে ফন্ট এম্বেড করুন"
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr "_ল্যাটিন ফন্ট"
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr "_আসিয়ান ফন্ট"
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3661,19 +3661,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4531,61 +4531,61 @@ msgid "Wrap _around"
msgstr "চারিদিকে গুটিয়ে ফেলুন (_a)"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "শুধুমাত্র পাঠযোগ্য ফাইল খোলা হবে (_O)"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "পরিবর্তন রেকর্ড করা হবে (_c)"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "সুরক্ষা..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "অরক্ষিত... (_U)"
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "ফাইল ভাগ করার বিকল্প"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/bn-IN/starmath/messages.po b/source/bn-IN/starmath/messages.po
index 0b5d567fa34..6b93ac8e73a 100644
--- a/source/bn-IN/starmath/messages.po
+++ b/source/bn-IN/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-11-11 06:35+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3269,127 +3269,140 @@ msgid "These changes will apply for all new formulas."
msgstr "এই পরিবর্তনগুলি সকল নতুন সূত্রের জন্য প্রযোজ্য হবে।"
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "শিরোনাম সারি (_T)"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "ফর্মূলা টেক্সট (_F)"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "প্রান্তরেখা (_o)"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "মুদ্রণ বিকল্প"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "আদি আকার (_r)"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "পৃষ্ঠার সাথে মানানসই করা হবে (_p)"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "আকার পরিবর্তন (_S):"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "মুদ্রণ বিন্যাস"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "লাইনের শেষে ~~a এবং ` উপেক্ষা করা হবে (_n)"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "শুধুমাত্র সিম্বলের জন্য সন্নিবেশ করা (ক্ষুদ্রতম ফাইলের আকার)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "বিবিধ বিকল্প"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index 849c62ec27f..716b0f38fcb 100644
--- a/source/bn-IN/svx/messages.po
+++ b/source/bn-IN/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali (India) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn_IN/>\n"
@@ -14130,6 +14130,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index ccdab5a94f9..6b81ec4ae15 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8380,1265 +8380,1271 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "কোন পৃষ্ঠা নেই"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "উল্লম্বভাবে কেন্দ্রস্থিত"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "নিচে"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "লাইনের উপরে"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "বাম কেন্দ্রস্থিত"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "লাইনের নিচে"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "অনুভূমিকভাবে কেন্দ্রস্থিত"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ভিতর"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "বাহির"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "সম্পূর্ণ প্রস্থ (_w)"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "কলাম"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
#, fuzzy
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "শুধুমাত্র-পাঠযোগ্য নথিতে সম্পাদনাযোগ্য (_d)"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
#, fuzzy
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "বিভাজন করুন"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "এবং"
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "উজ্জ্বলতা"
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "পুনরায় করা"
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "বৈসাদৃশ্য"
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "স্বচ্ছতা"
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "সন্নিবেশ"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "গ্রাফিক্স মোড"
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "আদর্শ"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "গ্রেস্কেল"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "সাদা এবং কালো"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "জলছাপ"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "উদ্ধৃতি"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "কোনো গ্রিড নেই"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "গ্রিড (শুধুমাত্র লাইন)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "গ্রিড (লাইন এবং অক্ষর)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
#, fuzzy
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "পাঠ্য প্রবাহ অনুসরণ করুন (_x)"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
msgstr "সারণি"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "অঙ্কন"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
#, fuzzy
msgctxt "ST_CTRL"
msgid "Control"
msgstr "কন্ট্রোল"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "বিভাগ"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "বুকমার্ক"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "গ্রাফিক্স"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE অবজেক্ট"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "শিরোনাম"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "নির্বাচন"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "পাদটীকা"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "মন্তব্য"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "পুনরায় অনুসন্ধান"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "পরবর্তী পৃষ্ঠা"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "শিরোনামহীন (~N)"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "পরবর্তী বুকমার্কে"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "শিরোনামহীন (~N)"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "পরবর্তী পাদটীকায়"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "পরবর্তী মন্তব্য"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "সূচির ভুক্তি সন্নিবেশ"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "পূর্ববর্তী পৃষ্ঠা"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "পূর্ববর্তী পৃষ্ঠা"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "পূর্ববর্তী বিভাগে"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "পূর্ববর্তী বুকমার্কে"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "পূর্ববর্তী পাদটীকায়"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "পূর্ববর্তী মন্তব্য"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "পূর্ববর্তী সারণি সূত্রে যান"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "পূর্ববর্তী ত্রুটিযুক্ত সারণি সূত্রে যান"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "পরবর্তী ত্রুটিযুক্ত সারণি সূত্রে যান"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "সন্নিবেশ"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "মুছে ফেলুন"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "সারণির পরিবর্তন "
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "প্রয়োগকৃত অনুচ্ছেদ শৈলী"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "সারি সন্নিবেশ করা হয়েছে"
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "সারি মুছে ফেলা হয়েছে"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "প্রান্তটীকা"
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "পাদটীকা"
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
#, fuzzy
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "স্তর মুছে ফেলুন... (~L)"
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "পৃষ্ঠা বিন্যাস... (~P)"
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
#, fuzzy
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "পাদচরণ মুছবেন?"
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "ফ্লোর বিন্যাস করা হবে..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
#, fuzzy
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "ছবি ফাইলটি খোলা যায়নি"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "ছবি ফাইল পড়া যাচ্ছে না"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "অজানা ছবি ফরম্যাট"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "এই ছবি ফাইলের সংস্করণ সমর্থিত নয়"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "ছবি ফিল্টার খুঁজে পাওয়া যায়নি"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
#, fuzzy
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "ছবি যোগ করার জন্য যথেষ্ট জায়গা নেই"
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
#, fuzzy
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ফ্রেম সন্নিবেশ"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "মন্তব্য:"
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "সন্নিবেশন"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "অপসারণ"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "স্বয়ংক্রিয় সংশোধন"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "সারণির পরিবর্তন "
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "প্রয়োগকৃত অনুচ্ছেদ শৈলী"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "পৃষ্ঠা"
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "অনুচ্ছেদ"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
#, fuzzy
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ছবি"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE অবজেক্ট"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ফ্রেম"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "সারণি"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "সারণি সারি"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "সারণি ঘর"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "শীর্ষচরণ"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "পাদচরণ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML নথি"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "শিরোনাম"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "বিভাজক"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "স্তর"
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ফাইল, \"%2\" পাথে \"%1\" খুঁজে পাওয়া যাইনি।"
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
#, fuzzy
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ব্যবহারকারী-নির্ধারিত নতুন সূচি"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
#, fuzzy
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<কোনটি না>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
#, fuzzy
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<কোনটি না>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "অধ্যায় নম্বর"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ভুক্তি"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ট্যাব-স্টপ"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "লেখা"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
#, fuzzy
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "পৃষ্ঠার নম্বর"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
#, fuzzy
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "তথ্যসূত্র ভুক্তি"
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
#, fuzzy
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "অক্ষর শৈলী"
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9647,267 +9653,267 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "বেস লাইন উপরে (~t)"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "বেস লাইন নিচে (~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "বেস লাইন কেন্দ্রস্থিত (~c)"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "বস্তু সন্নিবেশ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "বস্তু সম্পাদনা"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (ফর্মা:"
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "সীমানা"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "পটভূমি"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(অনুচ্ছেদ শৈলী:"
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
#, fuzzy
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "পৃষ্ঠা নম্বর বর্তমান পৃষ্ঠায় প্রয়োগ করা যাবে না। জোড় সংখ্যা বাম পৃষ্ঠায় এবং ডান পৃষ্ঠায় বিজোড় সংখ্যা ব্যবহার করা যেতে পারে।"
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION মাস্টার নথি"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "কোনটি না (বানান পরীক্ষা করা হবে না)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "পূর্বনির্ধারিত ভাষা পুনঃনির্ধারণ"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "আরও..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "উপেক্ষা করুন (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML নথি"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "নথি প্রতি"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "স্তর"
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "আউটলাইন"
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "পাদটীকা/প্রান্তটীকা সন্নিবেশ"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "XX বার অনুসন্ধানের কি প্রতিস্থাপন করা হয়েছে"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "সারি"
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "কলাম (~m)"
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "চালিয়ে যাওয়া হবে"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9916,7 +9922,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9925,141 +9931,129 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "স্বাক্ষর করেছেন"
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "ব্যবসায়িক কার্ড (~u)"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "সন্নিবেশ"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "মুছে ফেলুন"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
#, fuzzy
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "বৈশিষ্ট্য"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
#, fuzzy
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "অনুসন্ধান শব্দপদ"
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "১ম কী"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "২য় কী"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "মন্তব্য"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "অক্ষরের ছাঁদ মেলানো"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "হ্যাঁ"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "না"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "স্বনির্ধারিত"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -11382,7 +11376,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "তথ্যসূত্র রেফারেন্স সন্নিবেশ করুন।"
@@ -17898,111 +17892,111 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "নথিতে পূর্ববর্তী পাদটীকা অথবা প্রান্তটীকা নোঙ্গর সরানো হয়।"
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "নথিতে পরবর্তী পাদটীকা অথবা প্রান্তটীকা নোঙ্গর সরানো হয়।"
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "স্বয়ংক্রিয়"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr "আপনার সন্নিবেশকৃত পাদটীকা বা প্রান্তটীকায় স্বয়ংক্রিয়ভাবে ধারাবাহিক নম্বর প্রদান করে।"
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "অক্ষর"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "নির্বাচন করুন"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "একটি পাদটীকা বা প্রান্তটীকা নোঙ্গর হিসেবে একটি বিশেষ অক্ষর সন্নিবেশ করা হয়। "
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "সংখ্যায়ন"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "পাদটীকা"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "নথির বর্তমান কার্সার অবস্থানে একটি পাদটিকা সন্নিবেশ করান, এবং পৃষ্ঠার নিচে একটি পাদটিকা যুক্ত করুন।"
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "প্রান্তটীকা"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "নথির বর্তমান কার্সার অবস্থানে একটি প্রান্তটীকা সন্নিবেশ করা হয়, এবং নথির শেষে একটি প্রান্তটীকা যুক্ত করা হয়।"
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "ধরন"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -30533,209 +30527,209 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
#, fuzzy
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "সমান্তরাল"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "উপযুক্ত (_O)"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "সেটিংসমূহ"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
#, fuzzy
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr "বাম:"
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
#, fuzzy
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "উচ্চতা"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
#, fuzzy
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr "শীর্ষ"
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
#, fuzzy
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "নিচে"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "পাঠ্য এবং বস্তুর বাম প্রান্তের মাঝে আপনি যে পরিমাণ ফাঁকা জায়গা রাখতে চান তা দিন।"
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "পাঠ্য এবং বস্তুর ডান প্রান্তের মাঝে আপনি যে পরিমাণ ফাঁকা জায়গা রাখতে চান তা দিন।"
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "পাঠ্য এবং বস্তুর শীর্ষ প্রান্তের মাঝে আপনি যে পরিমাণ ফাঁকা জায়গা রাখতে চান তা দিন।"
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "বস্তুর নিম্ন প্রান্ত এবং পাঠ্যের মাঝে আপনি যে স্থানটুকু চান সেটি সন্নিবেশ করান।"
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "ফাঁকা"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
#, fuzzy
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "প্রথম অনুচ্ছেদ (~F)"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
#, fuzzy
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "পটভূমিতে (~B)"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
#, fuzzy
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "কনট্যুর"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
#, fuzzy
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr "বাইরের শেষে"
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "শুধুমাত্র বস্তুর কনট্যুর চারপাশে পাঠ্য মোড়ান,কিন্তু বস্তু আকৃতির মধ্যের উন্মুক্ত এলাকায় নয়।"
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "অপশন"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/bn-IN/uui/messages.po b/source/bn-IN/uui/messages.po
index 91f1f12adab..969bcec5da0 100644
--- a/source/bn-IN/uui/messages.po
+++ b/source/bn-IN/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2021-04-22 09:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/bn_IN/>\n"
@@ -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: 1522251479.000000\n"
#. DLY8p
@@ -643,13 +643,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "নথি ব্যবহৃত হচ্ছে"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -658,14 +659,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "খুলুন (~O)"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -674,73 +681,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "সংরক্ষণকরণ করতে পুনরায় চেষ্টা করুন (~R)"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "সংরক্ষণ করুন (~S)"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "সেশনের শেষ পর্যন্ত পাসওয়ার্ড মনে রাখা হবে (~R)"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "পাসওয়ার্ড মনে রাখা হবে (~R)"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "এনক্রিপশনবিহীন স্ট্রীম"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
-#, fuzzy
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "%PRODUCTNAME'র বিশেষ প্রবেশাধিকার থাকায় ফাইলটি লক করা যায়নি, কারণ ঐ ফাইলের অবস্থানে লক ফাইল তৈরি করার অনুমতি পাওয়া যায়নি।"
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "নথি ব্যবহৃত হচ্ছে"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -748,31 +764,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "অনুলিপি খুলুন (~C)"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "অজানা ব্যবহারকারী"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "নথিটি বা ফাইলটি অন্যের দ্বারা পরিবর্তিত হয়েছে"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -781,19 +803,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "তবুও সংরক্ষণ করুন (~S)"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "নথি ব্যবহৃত হচ্ছে"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -804,7 +826,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -815,19 +837,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "সংরক্ষণকরণ করতে পুনরায় চেষ্টা করুন (~R)"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "নতুনভাবে সংরক্ষণ... (~S)"
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -835,7 +857,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -843,59 +865,116 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "পাসওয়ার্ড ভুল। ফাইলটি খোলা যাচ্ছে না।"
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "পাসওয়ার্ড ভুল। ফাইলটি পরিবর্তন করা যাচ্ছে না।"
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "মাস্টার পাসওয়ার্ড ভুল।"
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "পাসওয়ার্ড ভুল।"
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "পাসওয়ার্ড নিশ্চিতকরণ মিলে না।"
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 7aa48e060f4..40cdfcad4d7 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4592,80 +4592,80 @@ msgid "_Replace"
msgstr "প্রতিস্থাপন (~R)"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr ""
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr ""
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr ""
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
#, fuzzy
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "প্রতিস্থাপন (~R)"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -10153,205 +10153,205 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "বিন্যাস"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "হাংগুল/হানজা (~H)"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "হানজা (হাংগুল) (~g)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+#, fuzzy
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "হাংগুল (হানজা) (~u)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "হাংগুল/হানজা (~H)"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "হানজা (হাংগুল) (~g)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-#, fuzzy
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "হাংগুল (হানজা) (~u)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
#, fuzzy
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "রূপান্তর"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
#, fuzzy
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "শুধুমাত্র হাংগুল (~o)"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
#, fuzzy
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "শুধুমাত্র হানজা (~y)"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "উপেক্ষা (~I)"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "সর্বদা উপেক্ষা (~g)"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "প্রতিস্থাপন (~R)"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "সর্বদা প্রতিস্থাপন (~e)"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "অক্ষর দ্বারা প্রতিস্থাপন (~y)"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14915,127 +14915,114 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-#, fuzzy
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr " %PRODUCTNAME ডায়ালগ"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr ""
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "নথির মুদ্রণকরণ পরিবর্তন হিসেবে গণনা করা হয় কিনা তা উল্লেখ করা হয়।"
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির নাম অবস্থা"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম শুরুর সময় %PRODUCTNAME লোড করা"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার নিষ্ক্রিয় করুন"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr "%PRODUCTNAME এর জন্য সাধারণ সেটিং সুনির্দিষ্ট করে।"
@@ -16041,14 +16028,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr ""
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -21113,69 +21106,69 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr ""
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr ""
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
#, fuzzy
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "বিলম্ব"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
#, fuzzy
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "স্বয়ংক্রিয়"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "বৈশিষ্ট্য"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21717,10 +21710,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared.po b/source/bn/helpcontent2/source/text/sbasic/shared.po
index e391da7689f..4838ae575f3 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "বর্তমান ড্রাইভটি পরিবর্তন করা হয়।"
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
#. ncuAv
#: 03020402.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 e115ba83a80..c0746181d1c 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,22 +10339,31 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
-#. yQzKr
+#. vFJRL
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"hd_id201586594659135\n"
+"par_id771621035263403\n"
"help.text"
-msgid "Service invocation"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
msgstr ""
-#. 5YFk5
+#. VAaLU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id211621035276160\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
msgstr ""
#. T8o7G
@@ -10321,6 +10375,15 @@ msgctxt ""
msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
#. HABsh
#: sf_exception.xhp
msgctxt ""
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
msgstr ""
-#. A9gBj
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
+msgstr ""
+
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
msgstr ""
-#. DBbfU
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
+msgstr ""
+
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 765e4c2c424..e872e5df68c 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20545,6 +20545,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>পাঠ্য</emph> পাঠ্য নির্দেশ করে থাকে যা থেকে সকল অমুদ্রণযোগ্য অক্ষর অপসারণ করা হয়।"
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20815,14 +20824,14 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>দশমিক</emph> হলো দশমিক স্থানের ঐচ্ছিক সংখ্যা।"
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "<item type=\"input\">=DOLLAR(255)</item> $২৫৫.০০ প্রদান করে।"
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
#. 2beTG
#: 04060110.xhp
@@ -27151,805 +27160,13 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> 0064 প্রদান করে।"
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr ""
-
-#. NNzM9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"help.text"
-msgid "CONVERT"
-msgstr ""
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">একটি মানকে এক পরিমাপ একক থেকে অন্য পরিমাপ এককের সংশ্লিষ্ট মানে রূপান্তর করে।</ahelp>পরিমাপের একক টেক্সট হিসেবে সরাসরি উদ্ধৃতি চিহ্নের মধ্যে বা রেফারেন্স হিসেবে সন্নিবেশ করুন। আপনি যদি ঘরের মধ্যে পরিমাপের একক সন্নিবেশ করান, তাদেরকে অবশ্যই হুবুহু নিম্নলিখিত তালিকার সাথে অনুরূপ হতে হবে, যা অক্ষরের ছাঁদ নির্ভরশীল: উদাহরণস্বরূপ, ঘরে একটি ছোট হাতের l (লিটারের জন্য) সন্নিবেশ করানোর জন্য, l এর পরে উর্ধ্ব কমা ' সন্নিবেশ করান।"
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr "বৈশিষ্ট্য"
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr "একক"
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr "ওজন"
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr "দৈর্ঘ্য"
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr ""
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr "সময়"
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr ""
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr "চাপ"
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr ""
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr "বল"
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr ""
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr "শক্তি"
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr ""
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "ক্ষমতা"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr ""
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr "ক্ষেত্র শক্তি"
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr "তাপমাত্রা"
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr ""
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr "আয়তন"
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr ""
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr "এলাকা"
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr ""
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr "গতি"
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr "তথ্য"
-
-#. UTUhA
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"par_id3159899\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr ""
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr ""
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr ""
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr ""
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr ""
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr ""
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr ""
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr ""
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr ""
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr ""
-
-#. HnJBh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr ""
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr ""
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr ""
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr ""
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr ""
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr ""
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr ""
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr ""
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr ""
-
-#. G2FDE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr ""
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr ""
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr ""
-
-#. iiAPq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr ""
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr ""
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr ""
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr ""
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr ""
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr ""
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr ""
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr ""
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr ""
-
-#. GD6Gw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr ""
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr ""
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr ""
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr ""
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr ""
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr ""
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr ""
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr ""
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr ""
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr ""
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr ""
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr ""
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr "তথ্যসূচক একক \"বিট\" এবং \"বাইট\" এর পূর্বে নিচের IEC 60027-2 / IEEE 1541 প্রিফিক্সের মধ্যে যেকোনো একটি থাকতে পারে:"
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr "ki kibi 1024"
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr "Mi mebi 1048576"
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr "Gi gibi 1073741824"
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr "Ti tebi 1099511627776"
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr "Pi pebi 1125899906842620"
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr "Ei exbi 1152921504606850000"
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr "Zi zebi 1180591620717410000000"
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
-"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr "Yi yobi 1208925819614630000000000"
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr ""
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "<emph>Number</emph> হলো এমন একটি সংখ্যা, যা রূপান্তর করা হবে।"
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "<emph>FromUnit</emph> হলো এমন একটি একক, যেখান হতে রূপান্তর সম্পন্ন করা হয়।"
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr "<emph>ToUnit</emph> হলো একটি একক যা রূপান্তরিত হয়। উভা একক একই ধরনের হতে হবে।"
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr ""
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
msgstr ""
#. G7UNe
@@ -49543,14 +48760,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "AutoFilter"
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
#. cTu3x
#: 12040100.xhp
@@ -49561,6 +48778,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">স্বয়ংক্রিয়ভাবে নির্বাচিত ঘর পরিসর পরিশোধন করে, এবং এর-সারি বাক্স তৈরি করে যেখানে আপনার প্রদর্শন করতে চাওয়া উপাদান আপনি পছন্দ করতে পারেন।</ahelp>"
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55591,6 +55042,33 @@ msgctxt ""
msgid "Examples"
msgstr "উদাহরণসমূহ"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57526,6 +57004,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr ""
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58624,13 +59848,22 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr ""
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
msgstr ""
#. BNTm6
@@ -63862,13 +65095,13 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr ""
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
msgstr ""
#. JoYks
diff --git a/source/bn/helpcontent2/source/text/scalc/guide.po b/source/bn/helpcontent2/source/text/scalc/guide.po
index e217e01ca40..73a8746582c 100644
--- a/source/bn/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3022,13 +3022,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "একটি ফাঁকা কক্ষে কার্সার নির্ধারণ করুন, উদাহরণস্বরূপ, J১৪, এবং <emph>সন্নিবেশ করান - কার্যক্রম</emph> পছন্দ করুন।"
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 66793b209c3..4592d69e70b 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20320,6 +20320,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr ""
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/06.po b/source/bn/helpcontent2/source/text/shared/06.po
index 8620c2954a9..6353f55a74c 100644
--- a/source/bn/helpcontent2/source/text/shared/06.po
+++ b/source/bn/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2018-09-03 12:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -304,13 +304,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr ""
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
+msgid "Impress Screenshots"
msgstr ""
#. c6FJr
diff --git a/source/bn/helpcontent2/source/text/shared/explorer/database.po b/source/bn/helpcontent2/source/text/shared/explorer/database.po
index b7505a1eab9..4b1f890e6fc 100644
--- a/source/bn/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bn/helpcontent2/source/text/shared/explorer/database.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-05-05 17:15+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"
+"PO-Revision-Date: 2021-05-25 14:37+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"Language-Team: Bengali <https://translations.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/bn/>\n"
"Language: bn\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: 1565285335.000000\n"
#. SaBHA
@@ -8028,6 +8028,7 @@ msgstr "সহজলভ্য ক্ষেত্র"
#. sVEFU
#: tablewizard03.xhp
+#, fuzzy
msgctxt ""
"tablewizard03.xhp\n"
"par_idN10587\n"
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 37491e2ec73..ea680210a41 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4628,14 +4628,14 @@ msgctxt ""
msgid "~Number"
msgstr "সংখ্যা"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4648,14 +4648,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index afe389f5830..86da5f43804 100644
--- a/source/bn/sc/messages.po
+++ b/source/bn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -17000,38 +17000,44 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "আদর্শ পরিশোধক..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "শীর্ষ ১০"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr ""
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr ""
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
#, fuzzy
msgctxt "SCSTR_NONAME"
msgid "unnamed"
@@ -17039,7 +17045,7 @@ msgstr "নামহীন"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
#, fuzzy
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
@@ -17047,68 +17053,68 @@ msgstr "কলাম"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr ""
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "শীট"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "নাম"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "শীট সংযুক্ত করুন"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "শীটের পুনঃনামকরণ করুন"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "ট্যাবের রং"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "ডিফল্ট"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "বস্তু নামকরণ"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
#, fuzzy
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "পৃষ্ঠার সন্নিবেশ"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -17116,137 +17122,137 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "রেকর্ড সুরক্ষিতকরণ"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "রেকর্ড অরক্ষিতকরণ "
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "পাসওয়ার্ড:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "পাসওয়ার্ড (ঐচ্ছিক):"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "ভুল পাসওয়ার্ড"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "প্রান্ত (~E)"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "অজানা"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "সর্বনিম্ন (~M)"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "সর্বোচ্চ (~M)"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "মান (~V)"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "উৎস (~S)"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "ভুক্তি (~E)"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "সিস্টেম"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
#, fuzzy
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "ট্যাব"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
#, fuzzy
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "মহাকাশ"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17258,413 +17264,413 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "পাঠ্য"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "শীট নির্বাচন করুন"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "নির্বাচিত শীট (~S)"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "মাপকাঠি"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "এই মাপকাঠিটি নির্দিষ্ট অবস্থানে বস্তুকে নিয়ন্ত্রণ করে।"
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "প্রাকদর্শন"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "এই শীটটি দেখায় কিভাবে নথিতে ডাটা সাজানো হবে।"
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "নথির দৃশ্যপট"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "শীট %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "ঘর %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "বাম অংশ"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "পৃষ্ঠা প্রাকদর্শন"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "কেন্দ্রীয় অংশ"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "ডান অংশ"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "%1 পৃষ্ঠার শীর্ষচরণ"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "%1 পৃষ্ঠার পাদচরণ"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "ইনপুট লাইন"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "এটি এমন জায়গা যেখানে আপনি পাঠ্য, সংখ্যা বা সূত্রসমূহ সন্নিবেশ করাতে বা সম্পাদনা করতে পারেন।"
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "মিডিয়া প্লেব্যাক"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "মাউসের বোতাম চাপা হয়েছে"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
#, fuzzy
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "সূত্র বার (~F)"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME স্প্রেডশীট"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr " (শুধুমাত্র-পাঠযোগ্য)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
#, fuzzy
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "প্রাকদর্শন মোড (~v)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr ""
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "ক্যালক A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "এক্সেল A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "এক্সেল R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "পরিসর কলাম লেবেল ধারণ করে (~b)"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "পরিসর সারি লেবেল ধারণ করে (~r)"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "অকার্যকর মান।"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "স্বয়ংক্রিয়-বিন্যাস যোগ"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr ""
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "নাম"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr ""
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "আপনি কি সত্যিই # এন্ট্রিটি মুছে ফেলতে চান?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "বন্ধ করুন (~C)"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "জানু"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "ফেব্রু"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "মার্চ"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "উত্তর"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "মধ্য"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "দক্ষিণ"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "মোট"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "নোঙ্গর পরিবর্তন"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17672,1230 +17678,1230 @@ msgstr "শর্ত"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "বিষয়বস্তু"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "শীট"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "পরিসরের নাম"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
#, fuzzy
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "ডাটাবেস পরিসর"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "চিত্র"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE অবজেক্ট"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "মন্তব্য"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "সংযোগকৃত এলাকাসমূহ"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "অঙ্কন বস্তু"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "সক্রিয়"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "নিষ্ক্রিয়"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "আড়াল"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "সক্রিয় উইন্ডো"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "দৃশ্যকল্পের নাম"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "মন্তব্য"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
#, fuzzy
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "আরোহী ক্রমানুসারে সাজান"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
#, fuzzy
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "অবরোহী ক্রমানুসারে সাজান"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "পছন্দসই ক্রমিকায়ন"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "নামের বাক্স"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "ইনপুট লাইন"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "ফাংশন উইজার্ড"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "গ্রহণ"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "বাতিল"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
#, fuzzy
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "সূত্রসমূহ"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr ""
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr ""
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "লেখক"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "তারিখ"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "অজানা ব্যবহারকারী"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
#, fuzzy
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "কলাম সন্নিবেশ করা হয়েছে"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
#, fuzzy
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "সারি সন্নিবেশ করা হয়েছে"
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
#, fuzzy
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "শীট সন্নিবেশ করা হয়েছে"
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
#, fuzzy
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "কলাম মুছে ফেলা হয়েছে"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
#, fuzzy
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "সারি মুছে ফেলা হয়েছে"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
#, fuzzy
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "শীট মুছে ফেলা হয়েছে"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
#, fuzzy
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "পরিসর সরানো হয়েছে"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
#, fuzzy
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "পরিবর্তিত বিষয়বস্তুসমূহ"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
#, fuzzy
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "পরিবর্তিত বিষয়বস্তুসমূহ"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
#, fuzzy
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "পরিবর্তন করা হয়েছে"
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
#, fuzzy
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "মূল"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
#, fuzzy
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "পরিবর্তন বাতিল করা হয়েছে"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
#, fuzzy
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "গ্রহণ করা হয়েছে"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
#, fuzzy
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "বাতিল করা হয়েছে"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
#, fuzzy
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "সন্নিবেশ নিষেধ"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
#, fuzzy
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<ফাঁকা>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "সুরক্ষিত নয়"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "পাসওয়ার্ড সুরক্ষিত নয়"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "সঙ্গতিহীন হ্যাশ"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "সঙ্গতিপূর্ণ হ্যাশ"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "পুনরায় লিখুন"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "গ্রুপ"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "মোট"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "গড়"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
#, fuzzy
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Mode"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "মিডিয়া"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "পরিবর্তনশীল"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "পরিসর"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
#, fuzzy
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "সর্বনিম্ন (~M)"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
#, fuzzy
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "সর্বোচ্চ (~M)"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
#, fuzzy
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Sum"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Count"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "সাধারণ"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
#, fuzzy
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "জ্যামিতি"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "সর্বনিম্ন (~M)"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "সর্বোচ্চ (~M)"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "গড়"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "মিডিয়া"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "সিগমা"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "আলফা"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "পরিবর্তনশীল"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "পরিবর্তনশীল"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Reservations"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
#, fuzzy
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "লগারিদম"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "ঘাত"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "ইন্টারনেট"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr ""
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index 3155aea4dec..1bd7ae8bb30 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3671,9 +3671,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "মুদ্রণযোগ্য পৃষ্ঠায় মানানসই করা হবে"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3683,9 +3683,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "একাধিক কাগজের পাতায় ভাগ করে দেয়া হয়"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 317b179fbf5..9a6ab6b2d37 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3034,148 +3034,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3187,55 +3187,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr ""
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3732,19 +3732,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4631,62 +4631,62 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr ""
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
#, fuzzy
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "রেকর্ডকৃত পরির্তন"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr ""
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr ""
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr ""
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/bn/starmath/messages.po b/source/bn/starmath/messages.po
index 42c2fe0b91c..135d4ce2ec1 100644
--- a/source/bn/starmath/messages.po
+++ b/source/bn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-05-08 13:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3336,134 +3336,147 @@ msgid "These changes will apply for all new formulas."
msgstr ""
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr ""
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
#, fuzzy
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "ফর্মূলা টেক্সট (~F)"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
#, fuzzy
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "সীমানা"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
#, fuzzy
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "মুদ্রণ অপশন"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
#, fuzzy
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "আদি আকার"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
#, fuzzy
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "পৃষ্ঠার সাথে মানানসই করা হবে (~F)"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
#, fuzzy
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "আকার পরিবর্তন"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr ""
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
#, fuzzy
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "বিবিধ প্রতীক"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index a180f3f4930..956c43143cb 100644
--- a/source/bn/svx/messages.po
+++ b/source/bn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn/>\n"
@@ -14207,6 +14207,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
#, fuzzy
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index c4c4663c7ec..20c25b40357 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8427,1258 +8427,1264 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
#, fuzzy
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "কোন পৃষ্ঠা নেই"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "উল্লম্বভাবে কেন্দ্রস্থিত"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "নিচে"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "লাইনের উপরে"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "বাম কেন্দ্রস্থিত"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "লাইনের নিচে"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "অনুভূমিকভাবে কেন্দ্রস্থিত"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ভিতর"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "বাহির"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "পূর্ণ-প্রস্থ"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "কলাম"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
#, fuzzy
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "বিভাজন করুন"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
#, fuzzy
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "এবং"
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "উজ্জ্বলতা"
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "পুনরায় করা"
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "বৈসাদৃশ্য"
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "স্বচ্ছতা"
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "বিপরীত"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "গ্রাফিক্স মোড"
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "আদর্শ"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "গ্রেস্কেল"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "সাদা এবং কালো"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "জলছাপ"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "উদ্ধৃতি"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "সারণি"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "অঙ্কন"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "কন্ট্রোল"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "বিভাগ"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "বুকমার্ক"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "গ্রাফিক্স"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE অবজেক্ট"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "শিরোনাম"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "নির্বাচন"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "পাদটীকা"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "মন্তব্য"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "পুনরায় অনুসন্ধান"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "পরবর্তী পৃষ্ঠা"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "শিরোনামহীন (~N)"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "পরবর্তী বুকমার্কে"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "শিরোনামহীন (~N)"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "পরবর্তী পাদটীকায়"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "পরবর্তী মন্তব্য"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "সূচির ভুক্তি সন্নিবেশ"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "পূর্ববর্তী পৃষ্ঠা"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "পূর্ববর্তী পৃষ্ঠা"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "পূর্ববর্তী বিভাগে"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "পূর্ববর্তী বুকমার্কে"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "পূর্ববর্তী পাদটীকায়"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "পূর্ববর্তী মন্তব্য"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "পূর্ববর্তী সারণি সূত্রে যান"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "পূর্ববর্তী ত্রুটিযুক্ত সারণি সূত্রে যান"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "পরবর্তী ত্রুটিযুক্ত সারণি সূত্রে যান"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "সংযোজন"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "অপসারণ"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "সারণির পরিবর্তন "
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "প্রয়োগকৃত অনুচ্ছেদ শৈলী"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "প্রান্তটীকা"
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "পাদটীকা"
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "পৃষ্ঠা বিন্যাস... (~P)"
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
#, fuzzy
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "ফ্লোর বিন্যাস করা হবে..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
#, fuzzy
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "এই ফাইলটি খোলা যায়নি"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
#, fuzzy
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "ফ্রেম সন্নিবেশ"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "মন্তব্য:"
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "সন্নিবেশন"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "অপসারণ"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "স্বয়ংক্রিয় সংশোধন"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "সারণির পরিবর্তন "
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "প্রয়োগকৃত অনুচ্ছেদ শৈলী"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "পৃষ্ঠা"
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "অনুচ্ছেদ"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "চিত্র"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE অবজেক্ট"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ফ্রেম"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "সারণি"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "সারণি সারি"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "সারণি ঘর"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "শীর্ষচরণ"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "পাদচরণ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML নথি"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
msgctxt "STR_TITLE"
msgid "Title"
msgstr "শিরোনাম"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "বিভাজক"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "স্তর"
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "ফাইল, \"%2\" পথের \"%1\" খুঁজে পাওয়া যাইনি।"
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
#, fuzzy
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ব্যবহারকারী-নির্ধারিত নতুন সূচি"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
#, fuzzy
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<কোনটি না>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
#, fuzzy
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<কোনটি না>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "অধ্যায় নম্বর"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
#, fuzzy
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ভুক্তি"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
#, fuzzy
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ট্যাব স্টপ"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "লেখা"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
#, fuzzy
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "পৃষ্ঠার নম্বর"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
#, fuzzy
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "তথ্যসূত্র ভুক্তি"
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
#, fuzzy
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "অক্ষর শৈলী"
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9687,265 +9693,265 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "বেস লাইন উপরে (~t)"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "বেস লাইন নিচে (~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "বেস লাইন কেন্দ্রস্থিত (~c)"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "বস্তু সন্নিবেশ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "বস্তু সম্পাদনা"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (ফর্মা:"
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "সীমানা"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "পটভূমি"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(অনুচ্ছেদ শৈলী:"
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION মাস্টার নথি"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "কোনটি না (বানান পরীক্ষা করা হবে না)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "পূর্বনির্ধারিত ভাষা পুনঃনির্ধারণ"
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "আরও..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "উপেক্ষা (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML নথি"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "নথি প্রতি"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "স্তর"
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "সীমারেখা"
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "পাদটীকা/প্রান্তটীকা সম্পাদনা"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "অনুসন্ধানকৃত কীটি XX বার প্রতিস্থাপন করা হয়েছে"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "সারি"
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "কলাম (~m)"
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "চালিয়ে যাওয়া হবে"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9954,7 +9960,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9963,144 +9969,132 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
#, fuzzy
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "অকার্যকর"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "ব্যবসায়িক কার্ড (~u)"
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
#, fuzzy
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "সংযোজন"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
#, fuzzy
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "অপসারণ"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
#, fuzzy
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "বৈশিষ্ট্য"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "১ম কী"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "২য় কী"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "বিষয়বস্তু"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
#, fuzzy
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "অক্ষরের ছাঁদ মেলানো"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "হ্যাঁ"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "না"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "স্বনির্ধারিত"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -11438,7 +11432,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "তথ্যসূত্র রেফারেন্স সন্নিবেশ করুন।"
@@ -18050,112 +18044,112 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "নথিতে পূর্ববর্তী পাদটীকা অথবা প্রান্তটীকা নোঙ্গর সরানো হয়।"
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "নথিতে পরবর্তী পাদটীকা অথবা প্রান্তটীকা নোঙ্গর সরানো হয়।"
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "স্বয়ংক্রিয়"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr "আপনার সন্নিবেশকৃত পাদটীকা বা প্রান্তটীকায় স্বয়ংক্রিয়ভাবে ধারাবাহিক নম্বর প্রদান করে।"
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "অক্ষর"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "পছন্দ"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "একটি পাদটীকা বা প্রান্তটীকা নোঙ্গর হিসেবে একটি বিশেষ অক্ষর সন্নিবেশ করা হয়। "
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
#, fuzzy
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "সংখ্যায়ন"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "পাদটীকা"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "নথির বর্তমান কার্সার অবস্থানে একটি পাদটিকা সন্নিবেশ করান, এবং পৃষ্ঠার নিচে একটি পাদটিকা যুক্ত করুন।"
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "প্রান্তটীকা"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "নথির বর্তমান কার্সার অবস্থানে একটি প্রান্তটীকা সন্নিবেশ করা হয়, এবং নথির শেষে একটি প্রান্তটীকা যুক্ত করা হয়।"
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "ধরন"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -30796,209 +30790,209 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
#, fuzzy
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "সমান্তরাল"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
#, fuzzy
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "উপযুক্ত"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
#, fuzzy
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "সেটিং"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr ""
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
#, fuzzy
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "ডান"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr ""
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
#, fuzzy
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "নিচে"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "পাঠ্য এবং বস্তুর বাম প্রান্তের মাঝে আপনি যে পরিমাণ ফাঁকা জায়গা রাখতে চান তা দিন।"
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "পাঠ্য এবং বস্তুর ডান প্রান্তের মাঝে আপনি যে পরিমাণ ফাঁকা জায়গা রাখতে চান তা দিন।"
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "পাঠ্য এবং বস্তুর শীর্ষ প্রান্তের মাঝে আপনি যে পরিমাণ ফাঁকা জায়গা রাখতে চান তা দিন।"
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "বস্তুর নিম্ন প্রান্ত এবং পাঠ্যের মাঝে আপনি যে স্থানটুকু চান সেটি সন্নিবেশ করান।"
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
#, fuzzy
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "ফাঁকা"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
#, fuzzy
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "প্রথম অনুচ্ছেদ (~F)"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
#, fuzzy
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "পটভূমিতে (~B)"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
#, fuzzy
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "কনট্যুর"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr ""
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "শুধুমাত্র বস্তুর কনট্যুর চারপাশে পাঠ্য মোড়ান,কিন্তু বস্তু আকৃতির মধ্যের উন্মুক্ত এলাকায় নয়।"
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
msgctxt "wrappage|label3"
msgid "Options"
msgstr "অপশন"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/bn/uui/messages.po b/source/bn/uui/messages.po
index ef1244962e0..cce45a4efec 100644
--- a/source/bn/uui/messages.po
+++ b/source/bn/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-03-28 15:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -641,13 +641,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "নথি ব্যবহৃত হচ্ছে"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -656,14 +657,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "খুলুন (~O)"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -672,73 +679,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "পুনরায় সংরক্ষণ করার চেষ্টা করুন (~R)"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "সংরক্ষণ করুন (~S)"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "সেশনের শেষ পর্যন্ত পাসওয়ার্ড মনে রাখা হবে (~R)"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "পাসওয়ার্ড মনে রাখা হবে (~R)"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr "এনক্রিপশনবিহীন স্ট্রীম"
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
-#, fuzzy
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "%PRODUCTNAME'র বিশেষ প্রবেশাধিকার থাকায় ফাইলটি লক করা যায়নি, কারণ ঐ ফাইলের অবস্থানে লক ফাইল তৈরি করার অনুমতি পাওয়া যায়নি।"
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "নথি ব্যবহৃত হচ্ছে"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -746,32 +762,38 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "অনুলিপি খুলুন (~C)"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "অজানা ব্যবহারকারী"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
#, fuzzy
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr "নথি যেভাবে সংরক্ষণ করা হয়েছে"
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -780,19 +802,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "তবুও সংরক্ষণ করুন (~S)"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "নথিটি ব্যবহৃত হচ্ছে"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -803,7 +825,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -814,19 +836,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "সংরক্ষণকরণ করতে পুনরায় চেষ্টা করুন (~R)"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "নতুনভাবে সংরক্ষণ... (~S)"
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -834,7 +856,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -842,61 +864,118 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "পাসওয়ার্ড ভুল। ফাইলটি খোলা যাচ্ছে না।"
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "পাসওয়ার্ড ভুল। ফাইলটি পরিবর্তন করা যাচ্ছে না।"
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
#, fuzzy
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "পাসওয়ার্ড নির্ধারণ করা হয়নি।"
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
#, fuzzy
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "পাসওয়ার্ড নির্ধারণ করা হয়নি।"
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "পাসওয়ার্ড নিশ্চিতকরণ মিলে না।"
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "শুধুমাত্র-পাঠযোগ্য খুলুন (~R)"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index ac0c13e37fc..adc75908886 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4581,80 +4581,80 @@ msgid "_Replace"
msgstr "ཚབ་བརྗེ།(~R)"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr ""
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr ""
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr ""
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
#, fuzzy
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "ཚབ་བརྗེ།(~R)"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -10139,196 +10139,196 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "format"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr ""
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr ""
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr ""
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr ""
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr ""
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr ""
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr ""
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr ""
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr ""
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
#, fuzzy
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "སྣང་མེད། (~I)"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr ""
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
#, fuzzy
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "ཚབ་བརྗེ།(~R)"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr ""
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr ""
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14862,127 +14862,114 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:163
-#, fuzzy
-msgctxt "optgeneralpage|printdlg"
-msgid "Use %PRODUCTNAME _dialogs"
-msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-
-#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr ""
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr "ཡིག་ཚགས་གཏག་པར་དེ་བཟོ་བཅོས་སུ་བརྩི་མིན་གཏན་འཁེལ་བྱེད། "
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ཡིག་ཚགས་མིང་། གནས་སྟངས།"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "བསྡོམས་འབོར།"
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "启动时载入%PRODUCTNAME"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "མ་ལག་གི་ལས་འགན་གདམ་ཚང་མགྱོགས་མྱུར་འགུལ་སློང་བྱེད་དུ་མི་འཇུག་པ།"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15987,14 +15974,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr ""
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -21059,69 +21052,69 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr ""
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr ""
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
#, fuzzy
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "འགྱང་བ།"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
#, fuzzy
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "རང་འགུལ།"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "གཏོགས་གཤིས།"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21661,10 +21654,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared.po b/source/bo/helpcontent2/source/text/sbasic/shared.po
index 206f52db97b..685e4685aac 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -610,6 +610,51 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
+#. 3aa4B
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id191620312698501\n"
+"help.text"
+msgid "In Basic"
+msgstr ""
+
+#. BenDd
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id831620312769993\n"
+"help.text"
+msgid "In Python"
+msgstr ""
+
+#. AuYyY
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131185\n"
+"help.text"
+msgid "This method is only available for <emph>Basic</emph> scripts."
+msgstr ""
+
+#. Kk2av
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id701621038131336\n"
+"help.text"
+msgid "This method is only available for <emph>Python</emph> scripts."
+msgstr ""
+
+#. FMxTn
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id81621427048241\n"
+"help.text"
+msgid "This method requires the installation of the <link href=\"https://extensions.libreoffice.org/en/extensions/show/apso-alternative-script-organizer-for-python\" name=\"APSO Link\">APSO (Alternative Script Organizer for Python)</link> extension. If it is not installed, an error will occur."
+msgstr ""
+
#. TV2YL
#: 00000003.xhp
msgctxt ""
@@ -11167,6 +11212,15 @@ msgctxt ""
msgid "Some DOS-specific file and directory functions are no longer provided in %PRODUCTNAME, or their function is only limited. For example, support for the <literal>ChDir</literal>, <literal>ChDrive</literal> and <literal>CurDir</literal> functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for %PRODUCTNAME. Therefore this feature is subject to removal in a future release."
msgstr ""
+#. EQYDk
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"par_id321620859565917\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"SF_Lib\">ScriptForge</link> library in %PRODUCTNAME 7.1 introduces the <link href=\"text/sbasic/shared/03/sf_filesystem.xhp\" name=\"FileSystem_Service\">FileSystem</link> service with methods to handle files and folders in user scripts."
+msgstr ""
+
#. WXPPp
#: 03020401.xhp
msgctxt ""
@@ -11230,15 +11284,6 @@ msgctxt ""
msgid "Changes the current drive."
msgstr "མིག་མདུན་སྒུལ་ཆས་བཟོ་བཅོས།"
-#. rkzEY
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "ChDrive Text As String"
-
#. ncuAv
#: 03020402.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 52eed1e0f1b..d34489efa41 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3499,22 +3499,22 @@ msgctxt ""
msgid "<variable id=\"CalcService\"><link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\"><literal>SFDocuments</literal>.<literal>Calc</literal> service</link></variable>"
msgstr ""
-#. DLwen
+#. DGXCA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id381589189355849\n"
"help.text"
-msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of LibreOffice Calc documents."
+msgid "The <literal>SFDocuments</literal> library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Calc documents."
msgstr ""
-#. ts5ZW
+#. m4FFE
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591014177269\n"
"help.text"
-msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
+msgid "Some methods are generic for all types of documents and are inherited from the <literal>Document</literal> service, whereas other methods are specific for the <literal>SF_Calc</literal> module."
msgstr ""
#. kTVJM
@@ -3562,49 +3562,58 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. DLSfC
+#. z3JcW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id141610734722352\n"
+"par_id591589191059889\n"
"help.text"
-msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
+msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
msgstr ""
-#. z3JcW
+#. mKqEu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"par_id591589191059889\n"
+"par_id551621623999947\n"
"help.text"
-msgid "The <literal>Calc</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Calc</literal> service can be invoked."
+msgid "The code snippet below creates a <literal>Calc</literal> service instance that corresponds to the currently active Calc document."
msgstr ""
-#. zNhLz
+#. gECrc
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191739218\n"
+"par_id341621467500466\n"
"help.text"
-msgid "'1) From the ScriptForge.UI service:"
+msgid "Another way to create an instance of the <literal>Calc</literal> service is using the <literal>UI</literal> service. In the following example, a new Calc document is created and <literal>oDoc</literal> is a <literal>Calc</literal> service instance:"
msgstr ""
-#. BhvuW
+#. x6qdq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id331589191766531\n"
+"par_id921621467621019\n"
"help.text"
-msgid "'Or: Set oDoc = ui.OpenDocument(\"C:\\Me\\MyFile.ods\")"
+msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
msgstr ""
-#. GZXJG
+#. MDxMC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id571589191774268\n"
+"par_id741621467697967\n"
"help.text"
-msgid "'2) Directly if the document is already open"
+msgid "It is also possible to instantiate the <literal>Calc</literal> service using the <literal>CreateScriptService</literal> method:"
+msgstr ""
+
+#. CKafD
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id271621467810774\n"
+"help.text"
+msgid "In the example above, \"MyFile.ods\" is the name of an open document window. If this argument is not provided, the active window is considered."
msgstr ""
#. gfpHw
@@ -3715,13 +3724,13 @@ msgctxt ""
msgid "Either a string designating a set of contiguous cells located in a sheet of the current instance or an <literal>object</literal> produced by the <literal>.Range</literal> property."
msgstr ""
-#. YTCe8
+#. 6CySa
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id691591020711395\n"
"help.text"
-msgid "The shortcut \"~\" (tilde) represents the current selection or the first range if multiple ranges are selected."
+msgid "The shortcut \"~\" (tilde) represents the current selection or the first selected range if multiple ranges are selected."
msgstr ""
#. 7JEat
@@ -4327,13 +4336,13 @@ msgctxt ""
msgid "If the argument <literal>SheetName</literal> is provided, the given sheet is activated and it becomes the currently selected sheet. If the argument is absent, then the document window is activated."
msgstr ""
-#. GwCLE
+#. EhMzz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id821591631203996\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be activated in the document."
+msgid "<emph>sheetname</emph>: The name of the sheet to be activated in the document. The default value is an empty string, meaning that the document window will be activated without changing the active sheet."
msgstr ""
#. 2cgiA
@@ -4363,13 +4372,13 @@ msgctxt ""
msgid "Clears all the contents and formats of the given range."
msgstr ""
-#. rAvDo
+#. M5PqA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441592919577809\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be cleared, as a string."
+msgid "<emph>range</emph>: The range to be cleared, as a string."
msgstr ""
#. Wz6CH
@@ -4381,13 +4390,13 @@ msgctxt ""
msgid "Clears the formats and styles in the given range."
msgstr ""
-#. uCqaF
+#. 6Qxnv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id611592919864268\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose formats and styles are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose formats and styles are to be cleared, as a string."
msgstr ""
#. sMwMp
@@ -4399,13 +4408,13 @@ msgctxt ""
msgid "Clears the values and formulas in the given range."
msgstr ""
-#. Cx3CM
+#. eEGn9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id771592919928320\n"
"help.text"
-msgid "<emph>Range</emph> : The range whose values and formulas are to be cleared, as a string."
+msgid "<emph>range</emph>: The range whose values and formulas are to be cleared, as a string."
msgstr ""
#. n6vJD
@@ -4417,31 +4426,31 @@ msgctxt ""
msgid "Copies a specified sheet before an existing sheet or at the end of the list of sheets. The sheet to be copied may be contained inside any <emph>open</emph> Calc document. Returns <literal>True</literal> if successful."
msgstr ""
-#. Di3Hd
+#. YqGL2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871591631693741\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string or its reference as an object."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string or its reference as an object."
msgstr ""
-#. azG6n
+#. 5cEGG
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591632126180\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the sheet to insert. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the sheet to insert. The name must not be in use in the document."
msgstr ""
-#. XDAoM
+#. 8sSno
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211591632192379\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. yuvEn
@@ -4498,40 +4507,40 @@ msgctxt ""
msgid "If the file does not exist, an error is raised. If the file is not a valid Calc file, a blank sheet is inserted. If the source sheet does not exist in the input file, an error message is inserted at the top of the newly pasted sheet."
msgstr ""
-#. BbR9B
+#. tCseT
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id471591714947181\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. The file must not be protected with a password."
msgstr ""
-#. FG6BQ
+#. gHjz6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9915917146142\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to be copied as a string."
+msgid "<emph>sheetname</emph>: The name of the sheet to be copied as a string."
msgstr ""
-#. vNK3G
+#. PeZ4F
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71591714614904\n"
"help.text"
-msgid "<emph>NewName</emph> : The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
+msgid "<emph>newname</emph>: The name of the copied sheet to be inserted in the document. The name must not be in use in the document."
msgstr ""
-#. 4UmRW
+#. 2niVz
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id601591714614407\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the copied sheet. This argument is optional and the default behavior is to add the copied sheet at the last position."
msgstr ""
#. iEHJy
@@ -4570,22 +4579,22 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. 6BKth
+#. RBQG9
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761592558768578\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. vsAZV
+#. 3MUwk
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711592558768466\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell where the copied range of cells will be pasted, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
#. FbkjF
@@ -4678,49 +4687,58 @@ msgctxt ""
msgid "The source range may belong to another <emph>open</emph> document."
msgstr ""
-#. Tv5So
+#. CEaED
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592903121145\n"
"help.text"
-msgid "<emph>SourceRange</emph> : The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
+msgid "<emph>sourcerange</emph>: The source range as a string when it belongs to the same document or as a reference when it belongs to another open Calc document."
msgstr ""
-#. K5ANF
+#. v3d3d
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id5515929031211000\n"
"help.text"
-msgid "<emph>DestinationRange</emph> : The destination of the copied range of cells, as a string."
+msgid "<emph>destinationrange</emph>: The destination of the copied range of cells, as a string."
msgstr ""
-#. SzA83
+#. LsHF6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592905128991\n"
"help.text"
-msgid "Copy within the same document :"
+msgid "Copy within the same document:"
msgstr ""
-#. GtG3C
+#. dNdmJ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"bas_id601592904507182\n"
"help.text"
-msgid "'Returned range: $SheetY.$C$5:$J$14"
+msgid "' Returns a range string: \"$SheetY.$C$5:$J$14\""
msgstr ""
-#. RXkyV
+#. FBbwi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001592905195364\n"
"help.text"
-msgid "Copy from one file to another :"
+msgid "Copy from one file to another:"
+msgstr ""
+
+#. 2fvZe
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"pyc_id761621538667290\n"
+"help.text"
+msgid "doc.CopyToRange(\"SheetX.A1:F10\", \"SheetY.C5:J5\")"
msgstr ""
#. so8uw
@@ -4732,13 +4750,13 @@ msgctxt ""
msgid "Apply the functions Average, Count, Max, Min and Sum, respectively, to all the cells containing numeric values on a given range."
msgstr ""
-#. fPXvC
+#. F2UTC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id741595777001537\n"
"help.text"
-msgid "<emph>Range</emph> : The range to which the function will be applied, as a string."
+msgid "<emph>range</emph>: The range to which the function will be applied, as a string."
msgstr ""
#. ZhAYY
@@ -4768,22 +4786,22 @@ msgctxt ""
msgid "Converts a column number ranging between 1 and 1024 into its corresponding letter (column 'A', 'B', ..., 'AMJ'). If the given column number is outside the allowed range, a zero-length string is returned."
msgstr ""
-#. gUDC3
+#. EfsXe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id83159163272628\n"
"help.text"
-msgid "<emph>ColumnNumber</emph> : The column number as an integer value in the interval 1 ... 1024."
+msgid "<emph>columnnumber</emph>: The column number as an integer value in the interval 1 ... 1024."
msgstr ""
-#. yDnhD
+#. 6yjtp
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
-"bas_id391611754462421\n"
+"par_id11621539831303\n"
"help.text"
-msgid "'Shows a message box with the string \"C\""
+msgid "Displays a message box with the name of the third column, which by default is \"C\"."
msgstr ""
#. XNAhU
@@ -4804,13 +4822,13 @@ msgctxt ""
msgid "Get the formula(s) stored in the given range of cells as a single string, a 1D or a 2D array of strings."
msgstr ""
-#. RG8Gg
+#. KDFkQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880142588\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the formulas from, as a string."
+msgid "<emph>range</emph>: The range where to get the formulas from, as a string."
msgstr ""
#. tBeSN
@@ -4831,22 +4849,22 @@ msgctxt ""
msgid "Get the value(s) stored in the given range of cells as a single value, a 1D array or a 2D array. All values are either doubles or strings."
msgstr ""
-#. gy45t
+#. XACNZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id91592231156434\n"
"help.text"
-msgid "<emph>Range</emph> : The range where to get the values from, as a string."
+msgid "<emph>range</emph>: The range where to get the values from, as a string."
msgstr ""
-#. t7Dxx
+#. ojRBo
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id991611756492772\n"
"help.text"
-msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate function\"><literal>CDate</literal> builtin function</link>."
+msgid "If a cell contains a date, the number corresponding to that date will be returned. To convert numeric values to dates in Basic scripts, use the Basic <link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Basic\"><literal>CDate</literal> builtin function</link>. In Python scripts, use the <link href=\"text/sbasic/shared/03/sf_basic.xhp#CDate\" name=\"CDate Python\"><literal>CDate</literal> function from the <literal>Basic</literal> service.</link>"
msgstr ""
#. YYMuH
@@ -4876,31 +4894,31 @@ msgctxt ""
msgid "The method returns a string representing the modified range of cells."
msgstr ""
-#. FYhhA
+#. GrquM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id851593685490824\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. aTojh
+#. VdTtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685490936\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination cell to insert the imported data, as a string. If instead a range is given, only its top-left cell is considered."
msgstr ""
-#. wrD7S
+#. BrTfu
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id641593685863838\n"
"help.text"
-msgid "<emph>FilterOptions</emph> : The arguments for the CSV input filter. The default filter makes following assumptions:"
+msgid "<emph>filteroptions</emph>: The arguments for the CSV input filter. The default filter makes following assumptions:"
msgstr ""
#. Mb4c6
@@ -5011,49 +5029,49 @@ msgctxt ""
msgid "The method returns <literal>True</literal> when the import was successful."
msgstr ""
-#. HfEiJ
+#. rgoAd
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id311599568986784\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation."
msgstr ""
-#. Makpm
+#. j2J5e
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. This argument is ignored if a <literal>FileName</literal> is provided."
+msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. This argument is ignored if a <literal>filename</literal> is provided."
msgstr ""
-#. iG9FB
+#. 2hSHw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211599568986329\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
+msgid "<emph>destinationcell</emph>: The destination of the imported data, as a string. If a range is given, only its top-left cell is considered."
msgstr ""
-#. T8KAC
+#. aMfVw
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id451599489278429\n"
"help.text"
-msgid "<emph>SQLCommand</emph> : A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
+msgid "<emph>sqlcommand</emph>: A table or query name (without surrounding quotes or square brackets) or a SELECT SQL statement in which table and field names may be surrounded by square brackets or quotes to improve its readability."
msgstr ""
-#. GiN95
+#. wFpLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271599489278141\n"
"help.text"
-msgid "<emph>DirectSQL</emph> : When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
+msgid "<emph>directsql</emph>: When <literal>True</literal>, the SQL command is sent to the database engine without pre-analysis. Default is <literal>False</literal>. The argument is ignored for tables. For queries, the applied option is the one set when the query was defined."
msgstr ""
#. toj8z
@@ -5065,22 +5083,22 @@ msgctxt ""
msgid "Inserts a new empty sheet before an existing sheet or at the end of the list of sheets."
msgstr ""
-#. iFgTP
+#. Xbm7k
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941591698472748\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the new sheet."
+msgid "<emph>sheetname</emph>: The name of the new sheet."
msgstr ""
-#. agryz
+#. XbXNM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id84159169847269\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which to insert the new sheet. This argument is optional and the default behavior is to insert the sheet at the last position."
msgstr ""
#. UCmit
@@ -5101,22 +5119,22 @@ msgctxt ""
msgid "Moves a specified source range to a destination range of cells. The method returns a string representing the modified range of cells. The dimension of the modified area is fully determined by the size of the source area."
msgstr ""
-#. Eh8ar
+#. UqxZv
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id571592569476332\n"
"help.text"
-msgid "<emph>Source</emph> : The source range of cells, as a string."
+msgid "<emph>source</emph>: The source range of cells, as a string."
msgstr ""
-#. MSSig
+#. G6BSW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891592569476362\n"
"help.text"
-msgid "<emph>Destination</emph> : The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
+msgid "<emph>destination</emph>: The destination cell, as a string. If a range is given, its top-left cell is considered as the destination."
msgstr ""
#. NorEd
@@ -5128,22 +5146,22 @@ msgctxt ""
msgid "Moves an existing sheet and places it before a specified sheet or at the end of the list of sheets."
msgstr ""
-#. s6bx7
+#. dgAxB
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id351591698903911\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to move. The sheet must exist or an exception is raised."
+msgid "<emph>sheetname</emph>: The name of the sheet to move. The sheet must exist or an exception is raised."
msgstr ""
-#. kp595
+#. fevuS
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id9159169890334\n"
"help.text"
-msgid "<emph>BeforeSheet</emph> : The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed."
+msgid "<emph>beforesheet</emph>: The name (string) or index (numeric, starting from 1) of the sheet before which the original sheet will be placed. This argument is optional and the default behavior is to move the sheet to the last position."
msgstr ""
#. pd5t4
@@ -5173,67 +5191,67 @@ msgctxt ""
msgid "This method has the same behavior as the homonymous Calc's <link href=\"text/scalc/01/04060109.xhp\" name=\"Offset function\">Offset function</link>."
msgstr ""
-#. uiv8D
+#. G2oD2
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id901592233506293\n"
"help.text"
-msgid "<emph>Reference</emph> : The range, as a string, that the method will use as reference to perform the offset operation."
+msgid "<emph>reference</emph>: The range, as a string, that the method will use as reference to perform the offset operation."
msgstr ""
-#. YmkNz
+#. Ra7aW
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id781592234124856\n"
"help.text"
-msgid "<emph>Rows</emph> : The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
+msgid "<emph>rows</emph>: The number of rows by which the initial range is offset upwards (negative value) or downwards (positive value). Use 0 (default) to stay in the same row."
msgstr ""
-#. fR6JC
+#. FvqjV
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id971592234138769\n"
"help.text"
-msgid "<emph>Columns</emph> : The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
+msgid "<emph>columns</emph>: The number of columns by which the initial range is offset to the left (negative value) or to the right (positive value). Use 0 (default) to stay in the same column."
msgstr ""
-#. TKX46
+#. VzgGM
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592234150061\n"
"help.text"
-msgid "<emph>Height</emph> : The vertical height for an area that starts at the new range position. Default = 0 (no vertical resizing)."
+msgid "<emph>height</emph>: The vertical height for an area that starts at the new range position. Omit this argument when no vertical resizing is needed."
msgstr ""
-#. 8uqoL
+#. JxENN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id271592234165247\n"
"help.text"
-msgid "<emph>Width</emph> : The horizontal width for an area that starts at the new range position. Default = 0 (no horizontal resizing)."
+msgid "<emph>width</emph>: The horizontal width for an area that starts at the new range position. Omit this argument when no horizontal resizing is needed."
msgstr ""
-#. hT42G
+#. t9QDN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id871592234172652\n"
"help.text"
-msgid "Arguments <literal>Rows</literal> and <literal>Columns</literal> must not lead to zero or negative start row or column."
+msgid "Arguments <literal>rows</literal> and <literal>columns</literal> must not lead to zero or negative start row or column."
msgstr ""
-#. QcACo
+#. JAxEm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id211592234180073\n"
"help.text"
-msgid "Arguments <literal>Height</literal> and <literal>Width</literal> must not lead to zero or negative count of rows or columns."
+msgid "Arguments <literal>height</literal> and <literal>width</literal> must not lead to zero or negative count of rows or columns."
msgstr ""
#. BkCDz
@@ -5263,13 +5281,22 @@ msgctxt ""
msgid "Removes an existing sheet from the document."
msgstr ""
-#. 9Mvbg
+#. H3eHf
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id991621620588147\n"
+"help.text"
+msgid "<input>doc.RemoveSheet(sheetname: str): bool</input>"
+msgstr ""
+
+#. dVxiA
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id331591699085330\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to remove."
+msgid "<emph>sheetname</emph>: The name of the sheet to remove."
msgstr ""
#. GwKHr
@@ -5281,22 +5308,22 @@ msgctxt ""
msgid "Renames the given sheet and returns <literal>True</literal> if successful."
msgstr ""
-#. mAigC
+#. ofAiN
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id161591704316337\n"
"help.text"
-msgid "<emph>SheetName</emph> : The name of the sheet to rename."
+msgid "<emph>sheetname</emph>: The name of the sheet to rename."
msgstr ""
-#. s8sbi
+#. JHEDe
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id931591704316998\n"
"help.text"
-msgid "<emph>NewName</emph> : the new name of the sheet. It must not exist yet."
+msgid "<emph>newname</emph>: the new name of the sheet. It must not exist yet."
msgstr ""
#. bwtAA
@@ -5308,13 +5335,13 @@ msgctxt ""
msgid "This example renames the active sheet to \"SheetY\":"
msgstr ""
-#. EfMAM
+#. qEM6N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191592745582983\n"
"help.text"
-msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>Value</literal> argument. Vectors are always expanded vertically."
+msgid "Stores the given value starting from a specified target cell. The updated area expands itself from the target cell or from the top-left corner of the given range to accommodate the size of the input <literal>value</literal> argument. Vectors are always expanded vertically."
msgstr ""
#. tm6AR
@@ -5326,22 +5353,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 6bCom
+#. FAuKq
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id801592745582116\n"
"help.text"
-msgid "<emph>TargetCell</emph> : The cell or a range as a string from where to start to store the given value."
+msgid "<emph>targetcell</emph>: The cell or a range as a string from where to start to store the given value."
msgstr ""
-#. SWWie
+#. aK7EZ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id321592745582192\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values to be stored from the target cell or from the top-left corner of the range if <literal>TargetCell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array (in Python, one or two-dimensional lists and tuples) with the new values to be stored from the target cell or from the top-left corner of the range if <literal>targetcell</literal> is a range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
#. 7BCXQ
@@ -5398,49 +5425,49 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. 9FVf6
+#. xYrHQ
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361592231799255\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range where to store the given value, as a string."
+msgid "<emph>targetrange</emph>: The range where to store the given value, as a string."
msgstr ""
-#. gSTGX
+#. dydXF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id461592232081985\n"
"help.text"
-msgid "<emph>Value</emph> : A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
+msgid "<emph>value</emph>: A scalar, a vector or an array with the new values for each cell of the range. The new values must be strings, numeric values or dates. Other types will cause the corresponding cells to be emptied."
msgstr ""
-#. J2xh8
+#. CgwVF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id841592745785192\n"
"help.text"
-msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>Value</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells will be emptied."
+msgid "The full range is updated and the remainder of the sheet is left unchanged. If the size of <literal>value</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells will be emptied."
msgstr ""
-#. 6eqih
+#. QFkLr
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id191611776838396\n"
"help.text"
-msgid "If the size of <literal>Value</literal> is larger than the size of <literal>TargetRange</literal>, then <literal>Value</literal> is only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>value</literal> is larger than the size of <literal>targetrange</literal>, then <literal>value</literal> is only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. nfsWb
+#. ykBk6
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id71611776941663\n"
"help.text"
-msgid "Vectors are expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. FJCPf
@@ -5461,6 +5488,15 @@ msgctxt ""
msgid "'Below the Value and TargetRange have the same size"
msgstr ""
+#. 4LFnH
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731621689592755\n"
+"help.text"
+msgid "If you want to fill a single row with values, you can use the <literal>Offset</literal> function. In the example below, consider that <literal>arrData</literal> is a one-dimensional array:"
+msgstr ""
+
#. g8mER
#: sf_calc.xhp
msgctxt ""
@@ -5479,22 +5515,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. L8GHj
+#. FtFpL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id22159576768782\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to which the style will be applied, as a string."
+msgid "<emph>targetrange</emph>: The range to which the style will be applied, as a string."
msgstr ""
-#. UxxXn
+#. aAGcy
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id181595767687247\n"
"help.text"
-msgid "<emph>Style</emph> : The name of the cell style to apply."
+msgid "<emph>style</emph>: The name of the cell style to apply."
msgstr ""
#. DCAWV
@@ -5515,22 +5551,22 @@ msgctxt ""
msgid "The method returns a string representing the modified area as a range of cells."
msgstr ""
-#. CWJbm
+#. F5XDi
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id891593880376776\n"
"help.text"
-msgid "<emph>TargetRange</emph> : The range to insert the formulas, as a string."
+msgid "<emph>targetrange</emph>: The range to insert the formulas, as a string."
msgstr ""
-#. rRECW
+#. A2UQF
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id941593880376500\n"
"help.text"
-msgid "<emph>Formula</emph> : A string, a vector or an array of strings with the new formulas for each cell in the target range."
+msgid "<emph>formula</emph>: A string, a vector or an array of strings with the new formulas for each cell in the target range."
msgstr ""
#. 746E8
@@ -5551,31 +5587,31 @@ msgctxt ""
msgid "If the given formula is a string, the unique formula is pasted along the whole range with adjustment of the relative references."
msgstr ""
-#. uqWBs
+#. zr47n
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id491593880857823\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is smaller than the size of <literal>TargetRange</literal>, then the remaining cells are emptied."
+msgid "If the size of <literal>formula</literal> is smaller than the size of <literal>targetrange</literal>, then the remaining cells are emptied."
msgstr ""
-#. oMpK4
+#. LwoGL
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id701611778103306\n"
"help.text"
-msgid "If the size of <literal>Formula</literal> is larger than the size of <literal>TargetRange</literal>, then the formulas are only partially copied until it fills the size of <literal>TargetRange</literal>."
+msgid "If the size of <literal>formula</literal> is larger than the size of <literal>targetrange</literal>, then the formulas are only partially copied until it fills the size of <literal>targetrange</literal>."
msgstr ""
-#. xGTCr
+#. GQC3N
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id761611777946581\n"
"help.text"
-msgid "Vectors are always expanded vertically, except if the range has a height of exactly 1 row."
+msgid "Vectors are always expanded vertically, except if <literal>targetrange</literal> has a height of exactly 1 row."
msgstr ""
#. rNEEY
@@ -5605,67 +5641,67 @@ msgctxt ""
msgid "Sorts the given range based on up to 3 columns/rows. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
-#. V6NVn
+#. MVGBC
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692394598\n"
"help.text"
-msgid "<emph>Range</emph> : The range to be sorted, as a string."
+msgid "<emph>range</emph>: The range to be sorted, as a string."
msgstr ""
-#. zppvu
+#. aenrK
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id171595692814163\n"
"help.text"
-msgid "<emph>SortKeys</emph> : A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
+msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1. The maximum number of keys is 3."
msgstr ""
-#. rmDya
+#. aQF93
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>SortOrder</emph> : A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>SortKeys</literal>. If the <literal>SortOrder</literal> array is shorter than <literal>SortKeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
-#. oPgRB
+#. GVpuf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id361595692394604\n"
"help.text"
-msgid "<emph>DestinationCell</emph> : The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
+msgid "<emph>destinationcell</emph>: The destination cell of the sorted range of cells, as a string. If a range is given, only its top-left cell is considered. By default the source Range is overwritten."
msgstr ""
-#. JogWo
+#. QyaTf
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id441595693011034\n"
"help.text"
-msgid "<emph>ContainsHeader</emph> : When <literal>True</literal>, the first row/column is not sorted."
+msgid "<emph>containsheader</emph>: When <literal>True</literal>, the first row/column is not sorted."
msgstr ""
-#. Q7Bi2
+#. AbVtY
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id241595693169032\n"
"help.text"
-msgid "<emph>CaseSensitive</emph> : Only for string comparisons. Default = <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Only for string comparisons. Default = <literal>False</literal>"
msgstr ""
-#. g2ggy
+#. CL5Gm
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id1001595693326226\n"
"help.text"
-msgid "<emph>SortColumns</emph> : When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
+msgid "<emph>sortcolumns</emph>: When <literal>True</literal>, the columns are sorted from left to right. Default = <literal>False</literal> : rows are sorted from top to bottom."
msgstr ""
#. LvjpD
@@ -7306,13 +7342,22 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. jKixF
+#. EnxDs
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>DialogControl</literal><literal/> service is invoked from an existing <literal>Dialog</literal> service instance thru its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgid "The <literal>DialogControl</literal> service is invoked from an existing <literal>Dialog</literal> service instance through its <literal>Controls()</literal> method. The dialog must be initiated with the <literal>SFDialogs.Dialog</literal> service."
+msgstr ""
+
+#. RCFrE
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id581598453210170\n"
+"help.text"
+msgid "myControl.Value = \"Dialog started at \" & Now()"
msgstr ""
#. WVG8J
@@ -7324,22 +7369,31 @@ msgctxt ""
msgid "' ... process the controls actual values"
msgstr ""
-#. 2PPv4
+#. gxhUu
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id951598174966322\n"
+"pyc_id861620225235002\n"
"help.text"
-msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
+msgid "text.Value = \"Dialog started at \" + strftime(\"%a, %d %b %Y %H:%M:%S\", localtime())"
msgstr ""
-#. WKCuT
+#. nu3f3
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id801598175242937\n"
+"pyc_id841620225235377\n"
+"help.text"
+msgid "# ... process the controls actual values"
+msgstr ""
+
+#. 2PPv4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id951598174966322\n"
"help.text"
-msgid "' oControl represents now the instance of the Control class having triggered the current event"
+msgid "Alternatively a control instance can be retrieved via the <literal>SFDialogs.DialogEvent</literal> service, providing the dialog was initiated with the <literal>Dialog</literal> service. <literal>DialogEvent</literal> returns the <literal>SFDialogs.DialogControl</literal> class instance that triggered the event."
msgstr ""
#. 75WJy
@@ -8593,40 +8647,40 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event - using the <literal>OnNodeExpanded</literal> event - to complete the tree dynamically."
msgstr ""
-#. cK7HA
+#. T8xdA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id761612711823834\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. g2Ubo
+#. qJ9ej
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id791612711823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. GV6Gp
+#. Pzz72
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id911612711823382\n"
"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
+msgid "<emph>datavalue</emph>: Any value associated with the new node. <literal>datavalue</literal> may be a string, a number or a date. Omit the argument when not applicable."
msgstr ""
-#. qbb2x
+#. 2pLPL
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"bas_id401612711823779\n"
+"par_id901620317110685\n"
"help.text"
-msgid "'Dialog stored in current document's standard library"
+msgid "%PRODUCTNAME Basic and Python examples pick up current document's <literal>myDialog</literal> dialog from <literal>Standard</literal> library."
msgstr ""
#. 8B3qP
@@ -8638,22 +8692,22 @@ msgctxt ""
msgid "Return <literal>True</literal> when a subtree, subordinate to a parent node, could be inserted successfully in a tree control. If the parent node had already child nodes before calling this method, the child nodes are erased."
msgstr ""
-#. UkE9k
+#. beond
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id781612713087722\n"
"help.text"
-msgid "<emph>ParentNode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
+msgid "<emph>parentnode</emph>: A node UNO object, of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>."
msgstr ""
-#. 2FTD4
+#. QJ73V
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id36161271308759\n"
"help.text"
-msgid "<emph>FlatTree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
+msgid "<emph>flattree</emph>: a two dimension array sorted on the columns containing the display values. Such an array can be issued by the <literal>GetRows</literal> method applied on the <literal>SFDatabases.Database</literal> service. When an array item containing the text to be displayed is <literal>Empty</literal> or <literal>Null</literal>, no new subnode is created and the remainder of the row is skipped."
msgstr ""
#. r5QNj
@@ -8665,13 +8719,13 @@ msgctxt ""
msgid "Flat tree >>>> Resulting subtree"
msgstr ""
-#. SQH7v
+#. MUi8U
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id51612713087915\n"
"help.text"
-msgid "<emph>WithDataValue</emph>: When <literal>False</literal> default value is used, every column of <literal>FlatTree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>DisplayValue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>DataValue</literal>) are in columns 1, 3, 5, ..."
+msgid "<emph>withdatavalue</emph>: When <literal>False</literal> default value is used, every column of <literal>flattree</literal> contains the text to be displayed in the tree control. When <literal>True</literal>, the texts to be displayed (<literal>displayvalue</literal>) are in columns 0, 2, 4, ... while the data values (<literal>datavalue</literal>) are in columns 1, 3, 5, ..."
msgstr ""
#. fWnhZ
@@ -8692,31 +8746,22 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event to complete the tree dynamically."
msgstr ""
-#. QiXVA
+#. JXyjD
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id671612780723837\n"
+"par_id791612117823819\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The text appearing in the tree control box."
+msgid "<emph>displayvalue</emph>: The text appearing in the tree control box."
msgstr ""
-#. Cw3b9
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id31612780723267\n"
-"help.text"
-msgid "<emph>DataValue</emph>: Any value associated with the new node. Default value is <literal>Empty</literal>."
-msgstr ""
-
-#. Ynpwt
+#. XxGFd
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id171612781589503\n"
"help.text"
-msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>DisplayValue</literal> pattern or having its data value equal to <literal>DataValue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
+msgid "Traverses the tree and finds recursively, starting from the root, a node meeting some criteria. Either - 1 match is enough - having its display value matching <literal>displayvalue</literal> pattern or having its data value equal to <literal>datavalue</literal>. The comparisons may be or not case-sensitive. The first matching occurrence is returned as a node UNO object of type <literal>com.sun.star.awt.tree.XMutableTreeNode</literal>. <embedvar href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#XMutableTreeNode\"/>"
msgstr ""
#. 5Jxkj
@@ -8737,40 +8782,31 @@ msgctxt ""
msgid "This method may be called before displaying the dialog box to build the initial tree. It may also be called from a dialog or control event."
msgstr ""
-#. BSnCr
+#. Dd4Ti
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id541613670199211\n"
"help.text"
-msgid "One argument out of <literal>DisplayValue</literal> or <literal>DataValue</literal> must be specified. If both present, one match is sufficient to select the node."
+msgid "One argument out of <literal>displayvalue</literal> or <literal>datavalue</literal> must be specified. If both present, one match is sufficient to select the node."
msgstr ""
-#. fYkEn
+#. MF7PA
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id591612781589560\n"
"help.text"
-msgid "<emph>DisplayValue</emph>: The pattern to be matched. See the <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method. When equal to the zero-length string (default), this display value is not searched for."
+msgid "<emph>displayvalue</emph>: The pattern to be matched. Refer to <link href=\"text/sbasic/shared/03/sf_string.xhp#IsLike\" name=\"String service IsLike() method\"><literal>SF_String.IsLike()</literal></link> method for the list of possible wildcards. When equal to the zero-length string (default), this display value is not searched for."
msgstr ""
-#. CF4o6
-#: sf_dialogcontrol.xhp
-msgctxt ""
-"sf_dialogcontrol.xhp\n"
-"par_id481612781589626\n"
-"help.text"
-msgid "<emph>DataValue</emph>: A string, a numeric value, a date. Use <literal>Empty</literal> default value when no value applies."
-msgstr ""
-
-#. g7uEG
+#. BE58W
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id141582384726168\n"
"help.text"
-msgid "<emph>CaseSensitive</emph>: Default value is <literal>False</literal>"
+msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
#. 3oU3L
@@ -10195,67 +10231,76 @@ msgctxt ""
msgid "<variable id=\"ExceptionService\"><link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"Exception service\"><literal>ScriptForge</literal>.<literal>Exception</literal> service</link></variable>"
msgstr ""
-#. m5HoF
+#. 4X7Xk
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id181587139648008\n"
"help.text"
-msgid "The <literal>Exception</literal> service is a collection of methods for Basic code debugging and error handling."
+msgid "The <literal>Exception</literal> service is a collection of methods to assist in code debugging in Basic and Python scripts and in error handling in Basic scripts."
msgstr ""
-#. KiitV
+#. XeYa4
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id141587140927573\n"
"help.text"
-msgid "In the advent of a run-time error, the <literal>Exception</literal> service properties and methods help identify the error context and permit to handle it."
+msgid "In <emph>Basic scripts</emph>, when a run-time error occurs, the methods and properties of the <literal>Exception</literal> service help identify the error context and allow to handle it."
msgstr ""
-#. Kn3iF
+#. ENY3v
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id461587140965192\n"
+"par_id401621450898070\n"
"help.text"
msgid "The <literal>SF_Exception</literal> service is similar to the <link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"VBA Err object\">VBA <literal>Err</literal> object</link>."
msgstr ""
-#. 6rquM
+#. vpB42
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id61587141015326\n"
+"par_id361621450908874\n"
"help.text"
msgid "The <literal>Number</literal> property identifies the error."
msgstr ""
-#. 9Gh4S
+#. TnWpD
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id251608212974671\n"
+"par_id861621450910254\n"
"help.text"
-msgid "Use <literal>Raise()</literal> method to interrupt processing, use <literal>RaiseWarning()</literal> method to trap an anomaly and continue processing."
+msgid "Use the <literal>Raise</literal> method to interrupt processing. The <literal>RaiseWarning</literal> method can be used to trap an anomaly without interrupting the macro execution."
msgstr ""
-#. PddYS
+#. CpxKC
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id621587225732733\n"
"help.text"
-msgid "Errors or warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using its <literal>Console()</literal> method."
+msgid "Errors and warnings raised with the <literal>Exception</literal> service are stored in memory and can be retrieved using the <literal>Console</literal> method."
msgstr ""
-#. i8z6N
+#. CpBSQ
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id411587141146677\n"
"help.text"
-msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when Basic IDE is not accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing. Use <literal>DebugPrint()</literal> method to aggregate additional user data. Console entries can be dumped to a text file or visualized in a dialogue."
+msgid "The <literal>Exception</literal> service console stores events, variable values and information about errors. Use the console when the Basic IDE is not easily accessible, for example in <link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Calc user-defined function\">Calc user defined functions (UDF)</link> or during events processing."
+msgstr ""
+
+#. NrY9C
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id251621034725811\n"
+"help.text"
+msgid "Use the <literal>DebugPrint</literal> method to add any relevant information to the console. Console entries can be dumped to a text file or visualized in a dialog window."
msgstr ""
#. 9AW2i
@@ -10276,13 +10321,13 @@ msgctxt ""
msgid "Report the error in the <literal>Exception</literal> console"
msgstr ""
-#. SGmPy
+#. N9X2f
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587141235313\n"
"help.text"
-msgid "Inform the user about the error using either a standard message either a customized message"
+msgid "Inform the user about the error using either a standard message or a custom message"
msgstr ""
#. C3NMD
@@ -10294,22 +10339,31 @@ msgctxt ""
msgid "Optionally stop its execution"
msgstr ""
-#. yQzKr
+#. vFJRL
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"hd_id201586594659135\n"
+"par_id771621035263403\n"
"help.text"
-msgid "Service invocation"
+msgid "In <emph>Python scripts</emph> the <literal>Exception</literal> service is mostly used for debugging purposes. Methods such as <literal>DebugPrint</literal>, <literal>Console</literal> and <literal>DebugDisplay</literal> are useful to quickly print messages, log data and open the console window from within a Python script."
msgstr ""
-#. 5YFk5
+#. VAaLU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
-"par_id571586594672714\n"
+"par_id211621035276160\n"
"help.text"
-msgid "To invoke the <literal>Exception</literal> service, first you need to load the <literal>ScriptForge</literal> library using:"
+msgid "Not all methods and properties are available for Python scripts since the Python language already has a comprehensive exception handling system."
+msgstr ""
+
+#. yQzKr
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"hd_id201586594659135\n"
+"help.text"
+msgid "Service invocation"
msgstr ""
#. T8o7G
@@ -10321,6 +10375,15 @@ msgctxt ""
msgid "The following examples show three different approaches to call the method <literal>Raise</literal>. All other methods can be executed in a similar fashion."
msgstr ""
+#. tGmaZ
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id901621036227048\n"
+"help.text"
+msgid "The code snippet below creates an instance of the <literal>Exception</literal> service, logs a message and displays the <literal>Console</literal> window."
+msgstr ""
+
#. HABsh
#: sf_exception.xhp
msgctxt ""
@@ -10330,6 +10393,15 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. JDNi6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id911621036526404\n"
+"help.text"
+msgid "The properties listed below are only available for <emph>Basic</emph> scripts."
+msgstr ""
+
#. s3E9G
#: sf_exception.xhp
msgctxt ""
@@ -10339,13 +10411,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. qEhnn
+#. b96rE
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id241584978211550\n"
"help.text"
-msgid "ReadOnly"
+msgid "Readonly"
msgstr ""
#. TkMLa
@@ -10519,13 +10591,13 @@ msgctxt ""
msgid "A modal console can only be closed by the user. A non-modal console can either be closed by the user or upon macro termination."
msgstr ""
-#. 2DWxi
+#. HUgnb
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id511598718179819\n"
"help.text"
-msgid "<emph>Modal</emph>: Determine if the console window is Modal (<literal>True</literal>) or Non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
+msgid "<emph>modal</emph>: Determine if the console window is modal (<literal>True</literal>) or non-modal (<literal>False</literal>). Default value is <literal>True</literal>."
msgstr ""
#. xu6FA
@@ -10537,13 +10609,13 @@ msgctxt ""
msgid "Clears the console keeping an optional number of recent messages. If the console is activated in non-modal mode, it is refreshed."
msgstr ""
-#. jbkCo
+#. SE7ei
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id351587215098527\n"
"help.text"
-msgid "<emph>Keep</emph>: The number of recent messages to be kept. Default value is 0."
+msgid "<emph>keep</emph>: The number of recent messages to be kept. Default value is 0."
msgstr ""
#. GLEVv
@@ -10564,13 +10636,40 @@ msgctxt ""
msgid "Exports the contents of the console to a text file. If the file already exists and the console is not empty, it will be overwritten without warning. Returns <literal>True</literal> if successful."
msgstr ""
-#. QMb9C
+#. HEXvU
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id851587218077862\n"
"help.text"
-msgid "<emph>FileName</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgid "<emph>filename</emph>: The name of the text file the console should be dumped into. The name is expressed according to the current <literal>FileNaming</literal> property of the <literal>SF_FileSystem</literal> service. By default, <link href=\"text/sbasic/shared/00000002.xhp\" name=\"Url notation\">URL notation</link> and the native operating system's format are both admitted."
+msgstr ""
+
+#. F3tVM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id701621043185177\n"
+"help.text"
+msgid "Concatenates all the arguments into a single human-readable string and displays it in a <literal>MsgBox</literal> with an Information icon and an OK button."
+msgstr ""
+
+#. KaGM6
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id791621097689492\n"
+"help.text"
+msgid "The final string is also added to the Console."
+msgstr ""
+
+#. QhRgF
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id481587218636884\n"
+"help.text"
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
msgstr ""
#. 2qser
@@ -10582,13 +10681,67 @@ msgctxt ""
msgid "Assembles all the given arguments into a single human-readable string and adds it as a new entry in the console."
msgstr ""
-#. BmmDA
+#. mUSEP
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id481587218637988\n"
"help.text"
-msgid "<emph>Arg0[, Arg1, ...]</emph>: Any number of arguments of any type."
+msgid "<emph>arg0[, arg1, ...]</emph>: Any number of arguments of any type."
+msgstr ""
+
+#. CUoch
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id111621426672183\n"
+"help.text"
+msgid "Opens an APSO Python shell as a non-modal window. The Python script keeps running after the shell is opened. The output from <literal>print</literal> statements inside the script are shown in the shell."
+msgstr ""
+
+#. f9ZzM
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id841621426922467\n"
+"help.text"
+msgid "Only a single instance of the APSO Python shell can be opened at any time. Hence, if a Python shell is already open, then calling this method will have no effect."
+msgstr ""
+
+#. KGi8B
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id391621449167833\n"
+"help.text"
+msgid "<emph>variables</emph>: a Python dictionary with variable names and values that will be passed on to the APSO Python shell. By default all local variables are passed using Python's builtin <literal>locals()</literal> function."
+msgstr ""
+
+#. zT7Gq
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id991621449657850\n"
+"help.text"
+msgid "The example below opens the APSO Python shell passing all global and local variables considering the context where the script is running."
+msgstr ""
+
+#. yUoFK
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"par_id521621449800348\n"
+"help.text"
+msgid "When the APSO Python shell is open, any subsequent output printed by the script will be shown in the shell. Hence, the string printed in the example below will be displayed in the Python shell."
+msgstr ""
+
+#. 5xNCX
+#: sf_exception.xhp
+msgctxt ""
+"sf_exception.xhp\n"
+"pyc_id731621449899901\n"
+"help.text"
+msgid "print(\"Hello world!\")"
msgstr ""
#. aXDEK
@@ -10654,13 +10807,13 @@ msgctxt ""
msgid "To raise an exception with the standard values:"
msgstr ""
-#. ZneYd
+#. SABN3
#: sf_exception.xhp
msgctxt ""
"sf_exception.xhp\n"
"par_id751587222598238\n"
"help.text"
-msgid "To raise an exception with an specific code:"
+msgid "To raise an exception with a specific code:"
msgstr ""
#. QXgCy
@@ -20428,13 +20581,13 @@ msgctxt ""
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
msgstr ""
-#. ABBCn
+#. cAtxQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id31587913266153\n"
"help.text"
-msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole LibreOffice application:"
+msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
msgstr ""
#. nTqj5
@@ -20491,11 +20644,11 @@ msgctxt ""
msgid "Access to the underlying \"documents\""
msgstr ""
-#. 3pR9U
+#. W5BL2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id421587913266819\n"
+"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
msgstr ""
@@ -20698,6 +20851,177 @@ msgctxt ""
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
msgstr ""
+#. BH9YJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"hd_id511620762163390\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#. ziD2D
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856238\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. eBD6E
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id591620761856238\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. 2DU4R
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id711620761856238\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. TGMq5
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id511620761856238\n"
+"help.text"
+msgid "MACROEXECALWAYS"
+msgstr ""
+
+#. VFEvz
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id761620761856107\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#. adCUF
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id341620761856238\n"
+"help.text"
+msgid "Macros are always executed"
+msgstr ""
+
+#. o7zQn
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761881513\n"
+"help.text"
+msgid "MACROEXECNEVER"
+msgstr ""
+
+#. kfQCf
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id661620761891082\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#. 7hEDg
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id101620761893011\n"
+"help.text"
+msgid "Macros are never executed"
+msgstr ""
+
+#. EABYh
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620761888379\n"
+"help.text"
+msgid "MACROEXECNORMAL"
+msgstr ""
+
+#. LpGCQ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id951620761899067\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#. 6Jgt7
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id11620761899780\n"
+"help.text"
+msgid "Macro execution depends on user settings"
+msgstr ""
+
+#. BTUQ4
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id311620312548992\n"
+"help.text"
+msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
+msgstr ""
+
+#. DCM9L
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id21620312350189\n"
+"help.text"
+msgid "svcUI = CreateScriptService(\"UI\")"
+msgstr ""
+
+#. EBquG
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620312351013\n"
+"help.text"
+msgid "sBasic = CreateScriptService(\"Basic\")"
+msgstr ""
+
+#. 3XXYB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id141620312351286\n"
+"help.text"
+msgid "openDocs = svcUI.Documents()"
+msgstr ""
+
+#. jZeEa
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id661620312351500\n"
+"help.text"
+msgid "strDocs = \"\\n\".join(openDocs)"
+msgstr ""
+
+#. 7hHpR
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620312351676\n"
+"help.text"
+msgid "sBasic.MsgBox(strDocs)"
+msgstr ""
+
#. DfpBz
#: sf_ui.xhp
msgctxt ""
@@ -20707,11 +21031,11 @@ msgctxt ""
msgid "List of Methods in the UI Service"
msgstr ""
-#. dfsmh
+#. 4fc2p
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"par_id811596553490262\n"
+"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
msgstr ""
@@ -20725,85 +21049,103 @@ msgctxt ""
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
msgstr ""
-#. fcE3q
+#. w9DR4
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381587913266946\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
msgstr ""
-#. df2C7
+#. 5kwSb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id13159655484952\n"
"help.text"
-msgid "Create and store a new LibreOffice Base document embedding an empty database of the given type. The method returns a document object."
+msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
msgstr ""
-#. BtPaW
+#. gqGpB
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441596554849949\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to create. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. nePdj
+#. ncJxE
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id381596554849698\n"
"help.text"
-msgid "<emph>EmbeddedDatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
+msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default) or \"FIREBIRD\"."
msgstr ""
-#. iyE5E
+#. BWgpN
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id521596554849185\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
+msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
msgstr ""
-#. A9gBj
+#. XkY2F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id361620323808010\n"
+"help.text"
+msgid "myBase = svcUI.CreateBaseDocument(r\"C:\\Databases\\MyBaseFile.odb\", \"FIREBIRD\")"
+msgstr ""
+
+#. GtB5n
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id651588521753997\n"
"help.text"
-msgid "Create a new LibreOffice document of a given type or based on a given template. The method returns a document object."
+msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
msgstr ""
-#. CC8kd
+#. 2rUeD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id51588521753302\n"
"help.text"
-msgid "<emph>DocumentType</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
+msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>TemplateFile</literal> argument must be present."
msgstr ""
-#. 2DPGC
+#. BQ6UD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id401588522663325\n"
"help.text"
-msgid "<emph>TemplateFile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The \"FileSystem\" service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
+msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
msgstr ""
-#. JFB9W
+#. VeNQg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id131588522824366\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
+msgstr ""
+
+#. gWFt9
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id701620762417802\n"
+"help.text"
+msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
#. W3qxn
@@ -20815,13 +21157,22 @@ msgctxt ""
msgid "Returns a document object referring to either the active window or the given window."
msgstr ""
-#. hD23E
+#. hZmVw
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id851588520551368\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used."
+msgstr ""
+
+#. AAjDB
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id521620330287071\n"
+"help.text"
+msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
msgstr ""
#. CYsyC
@@ -20833,13 +21184,13 @@ msgctxt ""
msgid "Maximizes the active window or the given window."
msgstr ""
-#. G2hSo
+#. hD4TC
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id951587986441954\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is maximized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
msgstr ""
#. vzDdG
@@ -20851,121 +21202,130 @@ msgctxt ""
msgid "Minimizes the active window or the given window."
msgstr ""
-#. snQ6b
+#. Enys5
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id751587986592626\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above. If the argument is absent, the active window is minimized."
+msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
msgstr ""
-#. tmxLS
+#. WHDDQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id691596555746539\n"
"help.text"
-msgid "Open an existing LibreOffice Base document. The method returns a document object."
+msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
msgstr ""
-#. RERE5
+#. yGPbD
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id231596555746385\n"
"help.text"
-msgid "<emph>FileName</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
+msgid "<emph>filename</emph> : Identifies the file to open. It must follow the SF_FileSystem.FileNaming notation. If the file already exists, it is overwritten without warning"
msgstr ""
-#. xE2FY
+#. DBB9u
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id711596555746281\n"
"help.text"
-msgid "<emph>RegistrationName</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
+msgid "<emph>registrationname</emph> : The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
msgstr ""
-#. u4Erc
+#. TqAd2
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"id721596556313545\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. szffG
+#. Dok5e
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id941620762989833\n"
+"help.text"
+msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
+msgstr ""
+
+#. LBgGQ
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id541588523635283\n"
"help.text"
-msgid "Open an existing LibreOffice document with the given options. Returns a document object or one of its subclasses or <literal>Null</literal> if the opening failed, including when due to a user decision."
+msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
msgstr ""
-#. dZF95
+#. 8tjbg
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id481588523635890\n"
"help.text"
-msgid "<emph>FileName</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
+msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
msgstr ""
-#. NRyuH
+#. PWvQz
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id451588523635507\n"
"help.text"
-msgid "<emph>Password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
+msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
msgstr ""
-#. hZkGG
+#. 2jjFK
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524329781\n"
"help.text"
-msgid "<emph>ReadOnly</emph>: Default = <literal>False</literal>."
+msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
msgstr ""
-#. Hhywx
+#. BcyEp
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id641588523635497\n"
"help.text"
-msgid "<emph>Hidden</emph>: if <literal>True</literal>, open the new document in the background (default = False). To use with caution: activation or closure afterwards can only happen programmatically."
+msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
msgstr ""
-#. VPmyv
+#. sbgeH
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id981588524474719\n"
"help.text"
-msgid "<emph>MacroExecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
+msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
msgstr ""
-#. KBCtV
+#. AF7iF
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id611588524584693\n"
"help.text"
-msgid "<emph>FilterName</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
+msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
msgstr ""
-#. 6rbcm
+#. MKueU
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191588524634348\n"
"help.text"
-msgid "<emph>FilterOptions</emph>: An optional string of options associated with the filter."
+msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
msgstr ""
#. qMTrj
@@ -20977,31 +21337,49 @@ msgctxt ""
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
msgstr ""
-#. SxjEP
+#. 6NUcv
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441587986945696\n"
"help.text"
-msgid "<emph>Left, Top</emph>: Distances of the top-left corner from top and left edges of the screen."
+msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
msgstr ""
-#. ne7hx
+#. AdcjG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id601587987453825\n"
"help.text"
-msgid "<emph>Width, Height</emph>: New dimensions of the window."
+msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
+msgstr ""
+
+#. vDNVH
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"par_id801587987507028\n"
+"help.text"
+msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
+msgstr ""
+
+#. 7HuAE
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id971620331945744\n"
+"help.text"
+msgid "svcUI.Resize(width = 500, height = 500)"
msgstr ""
-#. 4UBqz
+#. HP2Jb
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
-"bas_id801587987507028\n"
+"par_id21620332301809\n"
"help.text"
-msgid "' Top and Height are left unchanged"
+msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
msgstr ""
#. NnBWM
@@ -21013,58 +21391,130 @@ msgctxt ""
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
msgstr ""
-#. dKTqd
+#. rDr2L
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id71587996421829\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed in front of the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
msgstr ""
-#. WuBNx
+#. hbCpG
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881587996421777\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
msgstr ""
-#. DBbfU
+#. qbGdy
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620332601083\n"
+"help.text"
+msgid "' Resets the statusbar"
+msgstr ""
+
+#. venZk
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id631620332653004\n"
+"help.text"
+msgid "from time import sleep"
+msgstr ""
+
+#. AQ57P
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id351620332422330\n"
+"help.text"
+msgid "for i in range(101):"
+msgstr ""
+
+#. uUDVJ
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id261620332627647\n"
+"help.text"
+msgid "svcUI.SetStatusbar(\"Test:\", i)"
+msgstr ""
+
+#. qWafN
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id181620332715974\n"
+"help.text"
+msgid "sleep(0.05)"
+msgstr ""
+
+#. PgCrS
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id381620332733373\n"
+"help.text"
+msgid "svcUI.SetStatusbar()"
+msgstr ""
+
+#. oQfWc
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id571598864255776\n"
"help.text"
-msgid "Display a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress represented on a progressbar. The box will remain visible until a call to the method without argument, or until the end of the currently running macro."
+msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
msgstr ""
-#. B27Bg
+#. drhV6
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id441598864535695\n"
"help.text"
-msgid "<emph>Title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
+msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
msgstr ""
-#. 6pZKs
+#. jvrZV
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id311598864255297\n"
"help.text"
-msgid "<emph>Text</emph>: An optional text to be displayed above the progress bar."
+msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
msgstr ""
-#. FV2pm
+#. Qj3N3
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id881598864255424\n"
"help.text"
-msgid "<emph>Percentage</emph>: an optional degree of progress between 0 and 100."
+msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
+msgstr ""
+
+#. rVBX3
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"bas_id651620333289753\n"
+"help.text"
+msgid "' Closes the Progress Bar window"
+msgstr ""
+
+#. u3gZ8
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id761620333269236\n"
+"help.text"
+msgid "# Closes the Progress Bar window"
msgstr ""
#. ZEG6t
@@ -21076,11 +21526,29 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the given window could be identified."
msgstr ""
-#. aAKnF
+#. rkJbT
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id45158858711917\n"
"help.text"
-msgid "<emph>WindowName</emph>: see the definitions above."
+msgid "<emph>windowname</emph>: see the definitions above."
+msgstr ""
+
+#. F7ntw
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id441620333481074\n"
+"help.text"
+msgid "if svcUI.WindowExists(r\"C:\\Document\\My file.odt\"):"
+msgstr ""
+
+#. nLT8F
+#: sf_ui.xhp
+msgctxt ""
+"sf_ui.xhp\n"
+"pyc_id801620333495532\n"
+"help.text"
+msgid "# ..."
msgstr ""
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index 608dd4febe0..2791cd3f881 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20545,6 +20545,15 @@ msgctxt ""
msgid "<emph>Text</emph> refers to the text from which to remove all non-printable characters."
msgstr "<emph>text</emph>ནི་ནང་ནས་ཡིག་རྟགས་གཏག་པར་མི་ཐུབ་པའི་ཡི་གེ་དོར་དགོས།"
+#. h3UXC
+#: 04060110.xhp
+msgctxt ""
+"04060110.xhp\n"
+"par_id581621538151600\n"
+"help.text"
+msgid "<input>=LEN(CLEAN(CHAR(7) & \"LibreOffice Calc\" & CHAR(8)))</input> returns 16, showing that the CLEAN function removes the non-printable Unicode U+0007 (\"BEL\") and U+0008 (\"BS\") characters at the beginning and end of the string argument. CLEAN does not remove spaces."
+msgstr ""
+
#. zdGBJ
#: 04060110.xhp
msgctxt ""
@@ -20815,14 +20824,14 @@ msgctxt ""
msgid "<emph>Decimals</emph> is the optional number of decimal places."
msgstr "<emph>decimals</emph> ནི་སིལ་གྲངས་ཀྱི་འདེམས་རུང་གནས་གྲངས་ཡིན།"
-#. JFmwv
+#. ezXhx
#: 04060110.xhp
msgctxt ""
"04060110.xhp\n"
"par_id3153546\n"
"help.text"
-msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00."
-msgstr "RMB(255)ཟློག་སྐྱེལ་¥255.00"
+msgid "<item type=\"input\">=DOLLAR(255)</item> returns $255.00 for the English (USA) locale and USD (dollar) currency; ¥255.00 for the Japanese locale and JPY (yen) currency; or 255,00 € for the German (Germany) locale and EUR (euro) currency."
+msgstr ""
#. 2beTG
#: 04060110.xhp
@@ -27151,805 +27160,13 @@ msgctxt ""
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
msgstr "=OCT2HEX(144;4) ཕྱིར་ལོག་ 0064"
-#. JBzHD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr ""
-
-#. NNzM9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"help.text"
-msgid "CONVERT"
-msgstr ""
-
-#. AZ8gE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
-msgstr "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">གྲངས་ཀ་ཞིག་ཚད་འཇལ་སྡེ་ཚན་ཞིག་ནས་ཚད་འཇལ་སྡེ་ཚན་གཞན་ཞིག་ལ་བརྗེ་སྒྱུར་བྱེད། </ahelp>འཇལ་ཚད་ཀྱིས་ཐད་ཀར་འདྲེན་རྟགས་སྣོན་པའི་ཡིག་དེབ་ནང་འཇུག་བྱས་ཆོག་ལ་འདྲེན་རྟགས་སྤྱད་ནས་ནང་འཇུག་བྱས་ཆོག། གལ་སྲིད་དྲ་མིག་ནང་འཇལ་ཚད་ནང་འཇུག་བྱེད་ན་ངེསངེསཔར་དུ་གཤམ་གྱི་རེའུ་འགོད་དང་གཅིག་མཐུན་ཡོང་བ་བྱེད་དགོས་པ་མ་ཟད་ཡིག་ཆེན་ཡིག་ཆུར་དབྱེ་བ་འབྱེད་:དཔེར་ན་ དྲ་མིག་ནང་ཡིག་ཆུང་ཡིག་འབྲུ་ lནང་འཇུག་བྱེད་ན་(\"ཧྲེང་\"མཚོན་)འདྲེན་རྟགས་རྐྱང་པ་ནང་འཇུག་བྱེད་དགོས་རྗེས་ལམ་སེང་ lནང་འཇུག་བྱེད་དེ་ 'lནང་འཇུག་བྱེད།"
-
-#. BWERF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"help.text"
-msgid "Property"
-msgstr "<emph>གཏོགས་གཤིས་</emph>"
-
-#. XTUci
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"help.text"
-msgid "Units"
-msgstr "<emph>འཇལ་བྱེད་</emph>"
-
-#. cMJxt
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Weight"
-msgstr "ཐིག་སྐུད་སྦོམ་ཕྲ།"
-
-#. iBfK5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
-msgstr ""
-
-#. GaiAA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"help.text"
-msgid "Length"
-msgstr "རིང་ཚད།"
-
-#. AYaEj
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
-msgstr ""
-
-#. CSY6D
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"help.text"
-msgid "Time"
-msgstr "དུས་ཚོད།"
-
-#. CRKWs
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
-msgstr ""
-
-#. jRyCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"help.text"
-msgid "Pressure"
-msgstr "གནོན་ཤུགས།"
-
-#. 2Bw2Y
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
-msgstr ""
-
-#. eDDQG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"help.text"
-msgid "Force"
-msgstr "ར་བའི་དྲག་ཚད།"
-
-#. UfKga
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
-msgstr ""
-
-#. nDfkL
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"help.text"
-msgid "Energy"
-msgstr "ནུས་ཚད།"
-
-#. T8CAw
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
-msgstr ""
-
-#. RkeAo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"help.text"
-msgid "Power"
-msgstr "རྩོལ་ཕྱོད།"
-
-#. RAPGk
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
-msgstr ""
-
-#. FRDaq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"help.text"
-msgid "Field strength"
-msgstr "ར་བའི་དྲག་ཚད།"
-
-#. YKEEF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
-
-#. rxAYG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "Temperature"
-msgstr "དྲོད་ཚད།"
-
-#. V3XFM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr ""
-
-#. AF455
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "Volume"
-msgstr "བོང་ཚད།"
-
-#. zv7qN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
-msgstr ""
-
-#. YpiAY
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"help.text"
-msgid "Area"
-msgstr "ས་ཁོངས།"
-
-#. 6EDBv
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr ""
-
-#. MdUET
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"help.text"
-msgid "Speed"
-msgstr "མྱུར་ཚད།"
-
-#. oUP4X
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
-
-#. fSWsq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"help.text"
-msgid "Information"
-msgstr "ཆ་འཕྲིན་"
-
-#. UTUhA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
-
-#. 8WZyq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
-msgstr ""
-
-#. YBQYC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"help.text"
-msgid "Prefix"
-msgstr ""
-
-#. vzHyG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
-"help.text"
-msgid "Multiplier"
-msgstr ""
-
-#. y8Bch
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "Y (yotta)"
-msgstr ""
-
-#. YE3Bo
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
-"help.text"
-msgid "10^24"
-msgstr ""
-
-#. Vst48
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
-"help.text"
-msgid "Z (zetta)"
-msgstr ""
-
-#. cBpwF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
-"help.text"
-msgid "10^21"
-msgstr ""
-
-#. sVmhZ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
-"help.text"
-msgid "E (exa)"
-msgstr ""
-
-#. DCgjD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
-"help.text"
-msgid "10^18"
-msgstr ""
-
-#. odrAJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
-"help.text"
-msgid "P (peta)"
-msgstr ""
-
-#. HnJBh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
-"help.text"
-msgid "10^15"
-msgstr ""
-
-#. 6SoPA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
-"help.text"
-msgid "T (tera)"
-msgstr ""
-
-#. cgqVx
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
-"help.text"
-msgid "10^12"
-msgstr ""
-
-#. Ki9Ca
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "G (giga)"
-msgstr ""
-
-#. jMqL9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
-"help.text"
-msgid "10^9"
-msgstr ""
-
-#. YD6i5
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
-"help.text"
-msgid "M (mega)"
-msgstr ""
-
-#. 4vqCG
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
-"help.text"
-msgid "10^6"
-msgstr ""
-
-#. 6WGVB
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
-"help.text"
-msgid "k (kilo)"
-msgstr ""
-
-#. wBWRS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
-"help.text"
-msgid "10^3"
-msgstr ""
-
-#. G2FDE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
-"help.text"
-msgid "h (hecto)"
-msgstr ""
-
-#. 9UYSz
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
-"help.text"
-msgid "10^2"
-msgstr ""
-
-#. woVg4
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
-"help.text"
-msgid "e (deca)"
-msgstr ""
-
-#. iiAPq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
-"help.text"
-msgid "10^1"
-msgstr ""
-
-#. C7sNq
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "d (deci)"
-msgstr ""
-
-#. eQehn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
-"help.text"
-msgid "10^-1"
-msgstr ""
-
-#. EUm9F
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
-"help.text"
-msgid "c (centi)"
-msgstr ""
-
-#. FDbBr
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
-"help.text"
-msgid "10^-2"
-msgstr ""
-
-#. G48jP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
-"help.text"
-msgid "m (milli)"
-msgstr ""
-
-#. uUT75
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
-"help.text"
-msgid "10^-3"
-msgstr ""
-
-#. LTWEh
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
-"help.text"
-msgid "u (micro)"
-msgstr ""
-
-#. cvaeu
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
-"help.text"
-msgid "10^-6"
-msgstr ""
-
-#. GD6Gw
+#. AXDcg
#: 04060116.xhp
msgctxt ""
"04060116.xhp\n"
-"par_id3149504\n"
-"help.text"
-msgid "n (nano)"
-msgstr ""
-
-#. 38rEb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
-"help.text"
-msgid "10^-9"
-msgstr ""
-
-#. FiDAM
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
-"help.text"
-msgid "p (pico)"
-msgstr ""
-
-#. 9sGcA
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
-"help.text"
-msgid "10^-12"
-msgstr ""
-
-#. SMnpF
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
-"help.text"
-msgid "f (femto)"
-msgstr ""
-
-#. cqsCH
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
-"help.text"
-msgid "10^-15"
-msgstr ""
-
-#. Fj46E
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "a (atto)"
-msgstr ""
-
-#. qtV59
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
-"help.text"
-msgid "10^-18"
-msgstr ""
-
-#. ZxxnU
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
-"help.text"
-msgid "z (zepto)"
-msgstr ""
-
-#. GWC7A
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
-"help.text"
-msgid "10^-21"
-msgstr ""
-
-#. cTLp9
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
-"help.text"
-msgid "y (yocto)"
-msgstr ""
-
-#. KAARJ
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
-"help.text"
-msgid "10^-24"
-msgstr ""
-
-#. UVavE
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
-"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr ""
-
-#. DZhKD
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
-"help.text"
-msgid "ki kibi 1024"
-msgstr ""
-
-#. K3qEd
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
-"help.text"
-msgid "Mi mebi 1048576"
-msgstr ""
-
-#. dBFMg
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
-"help.text"
-msgid "Gi gibi 1073741824"
-msgstr ""
-
-#. 9RnhS
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
-"help.text"
-msgid "Ti tebi 1099511627776"
-msgstr ""
-
-#. 39Jpn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
-"help.text"
-msgid "Pi pebi 1125899906842620"
-msgstr ""
-
-#. GkAoP
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
-"help.text"
-msgid "Ei exbi 1152921504606850000"
-msgstr ""
-
-#. GTGuN
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
-"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr ""
-
-#. QbEGb
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
+"hd_id14741462320147\n"
"help.text"
-msgid "Yi yobi 1208925819614630000000000"
-msgstr ""
-
-#. RpFzc
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"help.text"
-msgid "CONVERT(Number; \"FromUnit\"; \"ToUnit\")"
-msgstr ""
-
-#. f822K
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "number:ཕབ་རྩིས་བྱ་རྒྱུའི་གྲངས་ཀ།"
-
-#. m8taC
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
-msgstr "From unit:ཕབ་རྩིས་སྔོན་གྱི་ཚད་འཇལ་འཇལ་བྱེད།"
-
-#. TAaks
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
-msgstr ""
-
-#. pbZjW
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
-msgstr ""
-
-#. R3Ucn
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"help.text"
-msgid "<item type=\"input\">=CONVERT(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgid "<embedvar href=\"text/scalc/01/func_convert.xhp#convert_head\"/>"
msgstr ""
#. G7UNe
@@ -49543,14 +48760,14 @@ msgctxt ""
msgid "AutoFilter"
msgstr "རང་འགུལ་འཚགས་འདེམས།"
-#. ZGJfP
+#. pGfbC
#: 12040100.xhp
msgctxt ""
"12040100.xhp\n"
"hd_id3153541\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"རང་འགུལ་འཚགས་འདེམས།\">རང་འགུལ་འཚགས་འདེམས།</link>"
+msgid "<variable id=\"autofilterh1\"><link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link></variable>"
+msgstr ""
#. cTu3x
#: 12040100.xhp
@@ -49561,6 +48778,240 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
msgstr "<ahelp hid=\".uno:DataFilterAutoFilter\">རང་འགུལ་གྱིས་བདམས་པའི་དྲ་མིག་ས་ཁོངས་འཚགས་འདེམས་བྱེད་ མ་ཟད་ཕྲེང་རྐྱང་རེའུ་འགོད་སྒྲོམ་གསར་འཛུགས་བྱེད་ དེ་ཁྲོད་ནས་མངོན་དགོས་པའི་རྣམ་གྲངས་འདེམས་ཆོག </ahelp>"
+#. c9BGE
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id101621534096986\n"
+"help.text"
+msgid "Sort Ascending"
+msgstr ""
+
+#. u7XHt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id31621544435954\n"
+"help.text"
+msgid "Displays the rows of the cell range in ascending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. 6Q8nn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id561621534101425\n"
+"help.text"
+msgid "Sort Descending"
+msgstr ""
+
+#. CbVJm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id861621544431393\n"
+"help.text"
+msgid "Displays the rows of the cell range in descending order, based on the values in the cells of the current column."
+msgstr ""
+
+#. sHhH3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id401621534105620\n"
+"help.text"
+msgid "Top 10"
+msgstr ""
+
+#. onMjn
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id341621544426925\n"
+"help.text"
+msgid "Displays the 10 rows of the cell range that contain the largest values in the cells of the current column. If these values are unique then no more than 10 rows will be visible, but if the values are not unique then it is possible for more than 10 rows to be shown."
+msgstr ""
+
+#. 4oiCy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id541621534109912\n"
+"help.text"
+msgid "Empty"
+msgstr ""
+
+#. i3DFZ
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id941621544422352\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have an empty cell in the current column."
+msgstr ""
+
+#. s26iT
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id821621534116893\n"
+"help.text"
+msgid "Not Empty"
+msgstr ""
+
+#. GCBF5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544418559\n"
+"help.text"
+msgid "Displays only the rows of the cell range that have a non-empty cell in the current column."
+msgstr ""
+
+#. s5KFC
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id271621534120995\n"
+"help.text"
+msgid "Text color"
+msgstr ""
+
+#. CCGqV
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id691621544414646\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the text color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. pdme8
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id151621534125831\n"
+"help.text"
+msgid "Background color"
+msgstr ""
+
+#. dzEhB
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544410605\n"
+"help.text"
+msgid "Displays only the rows of the cell range for which the background color of the cell in the current column matches the color selected."
+msgstr ""
+
+#. wCDB5
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id851621534131430\n"
+"help.text"
+msgid "Standard Filter"
+msgstr ""
+
+#. kqqrX
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id171621544405886\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/02/12090000.xhp\" name=\"standard filter\">Standard Filter</link> dialog."
+msgstr ""
+
+#. bbVTh
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id551621534136181\n"
+"help.text"
+msgid "Search text box"
+msgstr ""
+
+#. XeGD3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id421621544399700\n"
+"help.text"
+msgid "Search for a specific entry in the list of values found in the current column. As characters are typed in the text box, this list is updated to show only matching entries."
+msgstr ""
+
+#. igezW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id581621534140892\n"
+"help.text"
+msgid "All"
+msgstr ""
+
+#. F52s3
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id641621544394836\n"
+"help.text"
+msgid "Click once to select to show all rows and click again to select to hide all rows."
+msgstr ""
+
+#. EADGt
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id731621534146408\n"
+"help.text"
+msgid "Show only current"
+msgstr ""
+
+#. FURWe
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id71621544390147\n"
+"help.text"
+msgid "Display only rows containing the value highlighted in the <emph>Value</emph> box."
+msgstr ""
+
+#. ovQAm
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id11621534151081\n"
+"help.text"
+msgid "Hide only current"
+msgstr ""
+
+#. EJgvW
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id491621544384770\n"
+"help.text"
+msgid "Hide all rows containing the value highlighted in the <emph>Value</emph> box and display all other rows."
+msgstr ""
+
+#. kVCCi
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"hd_id621621534155662\n"
+"help.text"
+msgid "Values"
+msgstr ""
+
+#. AzWUy
+#: 12040100.xhp
+msgctxt ""
+"12040100.xhp\n"
+"par_id331621544378745\n"
+"help.text"
+msgid "List of unique values found in the current column."
+msgstr ""
+
#. 4DAJx
#: 12040100.xhp
msgctxt ""
@@ -55591,6 +55042,33 @@ msgctxt ""
msgid "Examples"
msgstr "དཔེ་གཞི།"
+#. jug32
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"hd_id980889808897165\n"
+"help.text"
+msgid "Returns"
+msgstr ""
+
+#. 5MoDd
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228511025\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. qKsBn
+#: ful_func.xhp
+msgctxt ""
+"ful_func.xhp\n"
+"par_id631556228544875\n"
+"help.text"
+msgid "No"
+msgstr ""
+
#. RGGDw
#: ful_func.xhp
msgctxt ""
@@ -57526,6 +57004,1752 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
msgstr ""
+#. A2RFP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"tit\n"
+"help.text"
+msgid "CONVERT function"
+msgstr ""
+
+#. wHx2Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr ""
+
+#. XE5M9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id9522389625800\n"
+"help.text"
+msgid "<variable id=\"convert_head\"> <link href=\"text/scalc/01/func_convert.xhp\">CONVERT</link> </variable> function"
+msgstr ""
+
+#. fmXAR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154902\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\"><variable id=\"convert_desc\">Converts a value from one unit of measurement to the corresponding value in another unit of measurement.</variable></ahelp> Enter the units of measurement directly as text in quotation marks or as a reference. The units of measurement specified through the arguments must match the supported unit symbols, which are case-sensitive. For example, the symbol for the unit \"newton\" is the uppercase \"N\"."
+msgstr ""
+
+#. fUwa3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620414839890\n"
+"help.text"
+msgid "The measurement units recognized by <literal>CONVERT</literal> fall into 13 groups, which are listed <link href=\"text/scalc/01/func_convert.xhp#Unit_Groups\" name=\"Unit_Groups_Section\">below</link>. CONVERT will perform conversions between any two units within one group but reject any request to convert between units in different groups."
+msgstr ""
+
+#. x6USE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id861620428840333\n"
+"help.text"
+msgid "You can also add binary and decimal prefixes to units of measurement that support them. The list of all prefixes and their corresponding multipliers are shown <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">below</link>."
+msgstr ""
+
+#. GvB7m
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id601621101375988\n"
+"help.text"
+msgid "This function may not be compatible with other spreadsheet software."
+msgstr ""
+
+#. wfq9t
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id23219159944266\n"
+"help.text"
+msgid "<input>CONVERT(Number; FromUnit; ToUnit)</input>"
+msgstr ""
+
+#. RiLFj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3147522\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr ""
+
+#. GErYL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154472\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#. d2Hrk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3153790\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#. 7D2db
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id541620414925560\n"
+"help.text"
+msgid "If <literal>FromUnit</literal> and <literal>ToUnit</literal> are not valid units from the same group, then <literal>CONVERT</literal> reports an invalid argument error (Err:502)."
+msgstr ""
+
+#. gq5EJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3156336\n"
+"help.text"
+msgid "<input>=CONVERT(-10; \"C\"; \"F\")</input>"
+msgstr ""
+
+#. NacDF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id951620413562988\n"
+"help.text"
+msgid "Here the function converts -10 degrees Celsius to degrees Fahrenheit, returning the value 14. There is not a simple multiplicative relationship between temperature units, as different reference points are used. Hence, as in this case, an input negative number may be converted to a positive value."
+msgstr ""
+
+#. CQPne
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id3154834\n"
+"help.text"
+msgid "<input>=CONVERT(3.5; \"mi\"; \"yd\")</input>"
+msgstr ""
+
+#. xaEX2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id971620413678102\n"
+"help.text"
+msgid "Here the function converts 3.5 international miles to yards, returning the value 6160. Both units are in the Length and distance group."
+msgstr ""
+
+#. 3GMEy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id741620413834726\n"
+"help.text"
+msgid "<input>=CONVERT(256; \"Gibit\"; \"Mibyte\")</input>"
+msgstr ""
+
+#. pdEtf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id261620413900652\n"
+"help.text"
+msgid "Here the function converts 256 gigibits to mebibytes, returning the value 32768. Both units (bit and byte) are in the Information group and support binary prefixes."
+msgstr ""
+
+#. cdqCp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id761620413966496\n"
+"help.text"
+msgid "<input>=CONVERT(1; \"dyn\"; \"e\")</input>"
+msgstr ""
+
+#. vDR5q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id531620414005955\n"
+"help.text"
+msgid "Here the function returns an invalid argument error (Err:502) because the two units (dyne and erg) are in different groups (Force and Energy respectively)."
+msgstr ""
+
+#. DGVq5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id261620415240175\n"
+"help.text"
+msgid "Units of measurement"
+msgstr ""
+
+#. oxx8A
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id481620428685029\n"
+"help.text"
+msgid "Below are the unit measurement groups supported by the <literal>CONVERT</literal> function. Beware that conversions can only happen between units that belong to the same group."
+msgstr ""
+
+#. Rd9Fp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id461620429183259\n"
+"help.text"
+msgid "The column Prefix indicates whether or not a given unit of measurement supports <link href=\"text/scalc/01/func_convert.xhp#Prefixes\" name=\"Prefixes_Section\">prefixes</link>."
+msgstr ""
+
+#. ELyFm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id301620415514760\n"
+"help.text"
+msgid "Area"
+msgstr ""
+
+#. JFG6V
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id121620479750266\n"
+"help.text"
+msgid "Some measurement units have more than one accepted symbol. The accepted unit symbols are separated by semicolons in the <emph>Unit symbol</emph> column."
+msgstr ""
+
+#. ngLDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id831620415562967\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HMAmG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id251620415562967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. tpUMy
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id151620415562967\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GfiJV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id61620415562967\n"
+"help.text"
+msgid "Square angstrom"
+msgstr ""
+
+#. GoABk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620415903987\n"
+"help.text"
+msgid "Are"
+msgstr ""
+
+#. kahhN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id631620415904448\n"
+"help.text"
+msgid "Square foot"
+msgstr ""
+
+#. MFjkC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id651620415904891\n"
+"help.text"
+msgid "Hectare"
+msgstr ""
+
+#. EohjY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905331\n"
+"help.text"
+msgid "Square inch"
+msgstr ""
+
+#. XZ9X3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id561620415905004\n"
+"help.text"
+msgid "Square light-year"
+msgstr ""
+
+#. kwEMV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id781620416024343\n"
+"help.text"
+msgid "Square meter"
+msgstr ""
+
+#. T9BaY
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731620416024782\n"
+"help.text"
+msgid "Square international mile"
+msgstr ""
+
+#. 4i4iC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416250948\n"
+"help.text"
+msgid "Morgen"
+msgstr ""
+
+#. HF5iU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id661620416251507\n"
+"help.text"
+msgid "Square nautical mile"
+msgstr ""
+
+#. hCiCS
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id791620416251948\n"
+"help.text"
+msgid "Square pica point"
+msgstr ""
+
+#. ZfeRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id771620416417874\n"
+"help.text"
+msgid "Square pica"
+msgstr ""
+
+#. cHh2s
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id621620416418311\n"
+"help.text"
+msgid "International acre"
+msgstr ""
+
+#. AsFDV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418768\n"
+"help.text"
+msgid "US survey acre"
+msgstr ""
+
+#. vFpVJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id71620416418025\n"
+"help.text"
+msgid "Square yard"
+msgstr ""
+
+#. Y8KWb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id661620418842010\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#. MVxwP
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id133389281727763\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 2YCm2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id215779983443756\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. wERLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id986783687128923\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. GLvVT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id797688281572156\n"
+"help.text"
+msgid "British thermal unit"
+msgstr ""
+
+#. nu34E
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id844417659281393\n"
+"help.text"
+msgid "Thermochemical calorie"
+msgstr ""
+
+#. DBTz9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id672765982649722\n"
+"help.text"
+msgid "International Steam Table calorie"
+msgstr ""
+
+#. uw6BK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id798492531882282\n"
+"help.text"
+msgid "erg"
+msgstr ""
+
+#. i9qGV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id547247548598782\n"
+"help.text"
+msgid "Electron volt"
+msgstr ""
+
+#. sLtDD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id587393171297892\n"
+"help.text"
+msgid "Foot-pound"
+msgstr ""
+
+#. 2GjCu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id695171299238861\n"
+"help.text"
+msgid "Horsepower-hour"
+msgstr ""
+
+#. ZPZRc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id498448587944728\n"
+"help.text"
+msgid "Joule"
+msgstr ""
+
+#. PUrZh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id324829753758823\n"
+"help.text"
+msgid "Watt-hour"
+msgstr ""
+
+#. kPnGq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id281620418969165\n"
+"help.text"
+msgid "Flux density"
+msgstr ""
+
+#. 4o3NF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id474271648545953\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DCC5e
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id747764511138273\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. dvVVc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id689379352231556\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. nHMaJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id114822916257326\n"
+"help.text"
+msgid "Gauss"
+msgstr ""
+
+#. 2he9q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id626213287964265\n"
+"help.text"
+msgid "Tesla"
+msgstr ""
+
+#. GFyeu
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id511620419033332\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#. CcWkm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id786326578562174\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. MAju2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613697367784781\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 3ZxxK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id338735929142246\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uaZZL
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id332679599387353\n"
+"help.text"
+msgid "Dyne"
+msgstr ""
+
+#. qkEeo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id297688664469184\n"
+"help.text"
+msgid "Newton"
+msgstr ""
+
+#. EEy3q
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id413835658896999\n"
+"help.text"
+msgid "Pound-force"
+msgstr ""
+
+#. UmY6Y
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id472715992174398\n"
+"help.text"
+msgid "Pond"
+msgstr ""
+
+#. Z8snf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620419155285\n"
+"help.text"
+msgid "Information"
+msgstr ""
+
+#. A3brF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id426724696915849\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. ABpR9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id612374956817974\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. kNxR2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538681812985912\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. uXtLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id287396172896473\n"
+"help.text"
+msgid "Bit"
+msgstr ""
+
+#. CQcQ9
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id288619461492324\n"
+"help.text"
+msgid "Byte"
+msgstr ""
+
+#. B3c96
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620419214852\n"
+"help.text"
+msgid "Length and distance"
+msgstr ""
+
+#. rfDue
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id939442657661828\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. t8B7a
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385965635167839\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. qBet6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id783715738435884\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. ED5CD
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871414798381246\n"
+"help.text"
+msgid "Angstrom"
+msgstr ""
+
+#. pZ2tZ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id667871614381886\n"
+"help.text"
+msgid "Ell"
+msgstr ""
+
+#. FxCjJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id116286449743311\n"
+"help.text"
+msgid "Foot"
+msgstr ""
+
+#. VswTE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id174995614358222\n"
+"help.text"
+msgid "Inch"
+msgstr ""
+
+#. YFTAf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id597477613742668\n"
+"help.text"
+msgid "Light-year"
+msgstr ""
+
+#. aqqG6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id414782652978666\n"
+"help.text"
+msgid "Meter"
+msgstr ""
+
+#. kREck
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246972715165395\n"
+"help.text"
+msgid "International mile"
+msgstr ""
+
+#. 6TCBR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664674443288268\n"
+"help.text"
+msgid "Nautical mile"
+msgstr ""
+
+#. rUVPA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id139127915416429\n"
+"help.text"
+msgid "Parsec"
+msgstr ""
+
+#. E8DiA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id343241931577938\n"
+"help.text"
+msgid "Pica point"
+msgstr ""
+
+#. J45F6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314567699952918\n"
+"help.text"
+msgid "Pica"
+msgstr ""
+
+#. jo6cR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id579641593251685\n"
+"help.text"
+msgid "US survey mile"
+msgstr ""
+
+#. bHo6X
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id247251727323315\n"
+"help.text"
+msgid "Yard"
+msgstr ""
+
+#. EVKqC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id101620426269258\n"
+"help.text"
+msgid "Mass and weight"
+msgstr ""
+
+#. sshNo
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id662733781297324\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. 23Fz6
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id314237495552874\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. YXvAc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id543131496247122\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yS2GB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id163896825569756\n"
+"help.text"
+msgid "Short hundredweight"
+msgstr ""
+
+#. AymnT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id219736221925573\n"
+"help.text"
+msgid "Gram"
+msgstr ""
+
+#. Pcwzj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613363919875679\n"
+"help.text"
+msgid "Grain"
+msgstr ""
+
+#. HfoFq
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id961199633533431\n"
+"help.text"
+msgid "Pound"
+msgstr ""
+
+#. TtiGk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id655456352143671\n"
+"help.text"
+msgid "Ounce"
+msgstr ""
+
+#. pmsEB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id613492674545171\n"
+"help.text"
+msgid "Pennyweight"
+msgstr ""
+
+#. BE88d
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id566783887997575\n"
+"help.text"
+msgid "Slug"
+msgstr ""
+
+#. VmfEH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id731498557457276\n"
+"help.text"
+msgid "Stone"
+msgstr ""
+
+#. ZLyGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id618416327957968\n"
+"help.text"
+msgid "Short ton"
+msgstr ""
+
+#. 4nGTC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id556166667325333\n"
+"help.text"
+msgid "Unified atomic mass unit"
+msgstr ""
+
+#. nA8vE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id161338688697922\n"
+"help.text"
+msgid "Long hundredweight"
+msgstr ""
+
+#. 23HRX
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id616379569614142\n"
+"help.text"
+msgid "Long ton"
+msgstr ""
+
+#. BPqQG
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id1001620426284123\n"
+"help.text"
+msgid "Power"
+msgstr ""
+
+#. HvGBm
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id765457372987543\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. DGPtJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id222988613874967\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 6DsPs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954629589584711\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. 7PLLh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id578436173796358\n"
+"help.text"
+msgid "Mechanical horsepower"
+msgstr ""
+
+#. M6req
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id418898833841613\n"
+"help.text"
+msgid "Pferdestärke or metric horsepower"
+msgstr ""
+
+#. qyteT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id239893771814786\n"
+"help.text"
+msgid "Watt"
+msgstr ""
+
+#. PGKCa
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id541620426359069\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#. tnByU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id843387541961981\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. Gsj88
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385992865555923\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. geMDd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id513642579177244\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. tZH3f
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id888153229712212\n"
+"help.text"
+msgid "Standard atmosphere"
+msgstr ""
+
+#. EBaTw
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id849582553771429\n"
+"help.text"
+msgid "Millimeter of mercury"
+msgstr ""
+
+#. AsDNh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id477235647442515\n"
+"help.text"
+msgid "Pascal"
+msgstr ""
+
+#. yyvEQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id453587511744492\n"
+"help.text"
+msgid "Pound per square inch"
+msgstr ""
+
+#. a9ogt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id385442861685423\n"
+"help.text"
+msgid "Torr"
+msgstr ""
+
+#. vWzBh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id61620426438099\n"
+"help.text"
+msgid "Speed"
+msgstr ""
+
+#. AXQxd
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id589222947765948\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. HvMee
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id886677898259849\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. PWNGi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id439227432319741\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. QLETi
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id391572877557741\n"
+"help.text"
+msgid "Admiralty knot"
+msgstr ""
+
+#. X3yym
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id152721538362456\n"
+"help.text"
+msgid "International knot"
+msgstr ""
+
+#. KAWp4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id117898736774311\n"
+"help.text"
+msgid "Meters per hour"
+msgstr ""
+
+#. pctXg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id145334267535329\n"
+"help.text"
+msgid "Meters per second"
+msgstr ""
+
+#. 6yYRz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id233825548718154\n"
+"help.text"
+msgid "Miles per hour"
+msgstr ""
+
+#. FyEd2
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id351620426496272\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#. C5MHQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id916682468647914\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. kqAGM
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id828222863857386\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. sGE7h
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id131675777393493\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. do3zs
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id611894272236225\n"
+"help.text"
+msgid "Degree Celsius"
+msgstr ""
+
+#. 3Ng23
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id446899599712639\n"
+"help.text"
+msgid "Degree Fahrenheit"
+msgstr ""
+
+#. JQDwV
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id452842161272274\n"
+"help.text"
+msgid "Kelvin"
+msgstr ""
+
+#. kDHfB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id946395673872875\n"
+"help.text"
+msgid "Degree Rankine"
+msgstr ""
+
+#. mUNBn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id718454351326149\n"
+"help.text"
+msgid "Degree Réaumur"
+msgstr ""
+
+#. BfAJv
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id291620426558219\n"
+"help.text"
+msgid "Time"
+msgstr ""
+
+#. kFeSN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id935221689591996\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. U8RGh
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id664526138752768\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. 8X7qR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id889226439751962\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. iXcGB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id246817386878489\n"
+"help.text"
+msgid "Day"
+msgstr ""
+
+#. KCEUt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id464925665919665\n"
+"help.text"
+msgid "Hour"
+msgstr ""
+
+#. Bf2jf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id134873473826283\n"
+"help.text"
+msgid "Minute"
+msgstr ""
+
+#. RB2UJ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id424852859961766\n"
+"help.text"
+msgid "Second"
+msgstr ""
+
+#. CKQZz
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id546198897664738\n"
+"help.text"
+msgid "Year"
+msgstr ""
+
+#. CCupk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id151620426617693\n"
+"help.text"
+msgid "Volume"
+msgstr ""
+
+#. YGVzt
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id245659124219512\n"
+"help.text"
+msgid "Unit symbol"
+msgstr ""
+
+#. jvV7i
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id954441838321316\n"
+"help.text"
+msgid "Description"
+msgstr ""
+
+#. QnLHF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id487448753979859\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. oFBFc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id254311578719497\n"
+"help.text"
+msgid "Cubic angstrom"
+msgstr ""
+
+#. Ccm2G
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id545825775819166\n"
+"help.text"
+msgid "Oil barrel"
+msgstr ""
+
+#. a3nDk
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id976829653577442\n"
+"help.text"
+msgid "US bushel"
+msgstr ""
+
+#. Fb3dj
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id184258429676826\n"
+"help.text"
+msgid "US cup"
+msgstr ""
+
+#. z98AU
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id278184952564879\n"
+"help.text"
+msgid "Cubic foot"
+msgstr ""
+
+#. Be5Nc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id466397614396366\n"
+"help.text"
+msgid "US gallon"
+msgstr ""
+
+#. 6dJSb
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id938562498562468\n"
+"help.text"
+msgid "Australian glass (200 milliliters)"
+msgstr ""
+
+#. vFvu4
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id471177863127144\n"
+"help.text"
+msgid "Gross register tonnage"
+msgstr ""
+
+#. tM2GH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id347175644673122\n"
+"help.text"
+msgid "Humpen (500 milliliters)"
+msgstr ""
+
+#. 3jCKA
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995576717914988\n"
+"help.text"
+msgid "Cubic inch"
+msgstr ""
+
+#. t8skx
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id842329689485738\n"
+"help.text"
+msgid "Liter"
+msgstr ""
+
+#. ZgERp
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id236636296681258\n"
+"help.text"
+msgid "Cubic light-year"
+msgstr ""
+
+#. xbjLF
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id538319527687728\n"
+"help.text"
+msgid "Cubic meter"
+msgstr ""
+
+#. GG8ep
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id463843338576911\n"
+"help.text"
+msgid "Cubic international mile"
+msgstr ""
+
+#. apJka
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id995778363641811\n"
+"help.text"
+msgid "Australian middy (285 milliliters)"
+msgstr ""
+
+#. 5vKXB
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id894695318848125\n"
+"help.text"
+msgid "Measurement ton"
+msgstr ""
+
+#. gAxRC
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id392284181269245\n"
+"help.text"
+msgid "Cubic nautical mile"
+msgstr ""
+
+#. GLMFQ
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id371262895179554\n"
+"help.text"
+msgid "US fluid ounce"
+msgstr ""
+
+#. KdjB5
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id956867693183654\n"
+"help.text"
+msgid "Cubic pica"
+msgstr ""
+
+#. wPWak
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id698697624265559\n"
+"help.text"
+msgid "US pint"
+msgstr ""
+
+#. oaVnc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id615917164511264\n"
+"help.text"
+msgid "US quart"
+msgstr ""
+
+#. nFgfR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id653481929342877\n"
+"help.text"
+msgid "Australian schooner (425 milliliters)"
+msgstr ""
+
+#. yumuN
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id912821548196546\n"
+"help.text"
+msgid "Six pack (2 liters)"
+msgstr ""
+
+#. GNQxR
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id248216629889251\n"
+"help.text"
+msgid "US tablespoon"
+msgstr ""
+
+#. Bs5pc
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id745625921159327\n"
+"help.text"
+msgid "US teaspoon"
+msgstr ""
+
+#. oFoZf
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id864223151994899\n"
+"help.text"
+msgid "Metric teaspoon"
+msgstr ""
+
+#. 6eLBT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id311759289592485\n"
+"help.text"
+msgid "Imperial gallon"
+msgstr ""
+
+#. zJyLT
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id673293916128784\n"
+"help.text"
+msgid "Imperial pint"
+msgstr ""
+
+#. f9zhg
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id213353742979736\n"
+"help.text"
+msgid "Imperial quart"
+msgstr ""
+
+#. TGDmn
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id817884513513347\n"
+"help.text"
+msgid "Cubic yard"
+msgstr ""
+
+#. ej2DE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id21620415408286\n"
+"help.text"
+msgid "Prefixes"
+msgstr ""
+
+#. TSaMK
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id731620426688645\n"
+"help.text"
+msgid "Decimal prefixes"
+msgstr ""
+
+#. cjDA7
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id772395422122114\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. yHdoH
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id448471762246791\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. zByEE
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"hd_id91620427193950\n"
+"help.text"
+msgid "Binary prefixes"
+msgstr ""
+
+#. X7TD3
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id422991712375461\n"
+"help.text"
+msgid "Prefix"
+msgstr ""
+
+#. mAcRr
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id553637738674151\n"
+"help.text"
+msgid "Multiplier"
+msgstr ""
+
+#. gc56z
+#: func_convert.xhp
+msgctxt ""
+"func_convert.xhp\n"
+"par_id871621424421294\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/CONVERT\">CONVERT Wiki page</link>"
+msgstr ""
+
#. JEUej
#: func_countifs.xhp
msgctxt ""
@@ -58624,13 +59848,22 @@ msgctxt ""
msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr ""
-#. naTtB
+#. 7eUrP
#: func_eomonth.xhp
msgctxt ""
"func_eomonth.xhp\n"
"par_id3156144\n"
"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If you specify the date directly, we recommend using the standard ISO 8601 format because this should be independent of your selected locale settings."
+msgstr ""
+
+#. Lu8Ng
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"par_id681621540307527\n"
+"help.text"
+msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/EOMONTH\">EOMONTH wiki page</link>"
msgstr ""
#. BNTm6
@@ -63862,13 +65095,13 @@ msgctxt ""
msgid "<emph>delimiter</emph> is a text string and can be a range."
msgstr ""
-#. CsnD3
+#. 6vMaP
#: func_textjoin.xhp
msgctxt ""
"func_textjoin.xhp\n"
"par_id621556228397269\n"
"help.text"
-msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
+msgid "<emph>skip_empty</emph> is a logical argument. When set to FALSE or 0, empty strings will be taken into account and this may lead to adjacent delimiters in the returned string. When set to any other value (e.g. TRUE or 1), empty strings will be ignored."
msgstr ""
#. JoYks
diff --git a/source/bo/helpcontent2/source/text/scalc/guide.po b/source/bo/helpcontent2/source/text/scalc/guide.po
index df942db359e..e4a0c2788bc 100644
--- a/source/bo/helpcontent2/source/text/scalc/guide.po
+++ b/source/bo/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-04-27 17:02+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3022,13 +3022,13 @@ msgctxt ""
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr "དྲ་མིག་སྟོང་པ་ཞིག་(དཔེར་ན་ J14)ནང་འོད་རྟགས་གནས་ངེས་བྱ་ དེ་རྗེས་<emph>བསྒར་འཛུད་ - རྟེན་གྲངས་</emph>འདེམས་དགོས།"
-#. JF5VP
+#. DGtFG
#: cellstyle_conditional.xhp
msgctxt ""
"cellstyle_conditional.xhp\n"
"par_id3156016\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#shrink_maximize\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink</item></link> icon."
msgstr ""
#. YEqsh
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index 2b84f114582..ecc76213484 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -20320,6 +20320,42 @@ msgctxt ""
msgid "Spell out as a date in format \"First of May, Nineteen Ninety-nine\""
msgstr ""
+#. 6hJmz
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455819\n"
+"help.text"
+msgid "[NatNum12 MMM=upper]MMM-DD"
+msgstr ""
+
+#. MH8w7
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121120\n"
+"help.text"
+msgid "Display upper case abbreviated month name in format \"JAN-01\""
+msgstr ""
+
+#. dro72
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id1308201617965331455820\n"
+"help.text"
+msgid "[NatNum12 MMMM=lower]MMMM"
+msgstr ""
+
+#. PCQE6
+#: 05020301.xhp
+msgctxt ""
+"05020301.xhp\n"
+"par_id13082016075331121121\n"
+"help.text"
+msgid "Display lower case month name in format \"january\""
+msgstr ""
+
#. i25EX
#: 05020301.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/06.po b/source/bo/helpcontent2/source/text/shared/06.po
index 02d90a74b46..4e471af5841 100644
--- a/source/bo/helpcontent2/source/text/shared/06.po
+++ b/source/bo/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2018-09-03 12:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -304,13 +304,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
msgstr ""
-#. agtWk
+#. Xpwka
#: simpress_screenshots.xhp
msgctxt ""
"simpress_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "SIMPRESS Screenshots"
+msgid "Impress Screenshots"
msgstr ""
#. c6FJr
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 427e561ce00..fe0810d5e5e 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4633,14 +4633,14 @@ msgctxt ""
msgid "~Number"
msgstr "number"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4653,14 +4653,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index 1b26b9e5422..5a2fde0af43 100644
--- a/source/bo/sc/messages.po
+++ b/source/bo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -17091,38 +17091,44 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "ཚད་གཞི་འཚག་འདེམས།..."
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "མདུན་གྱི་10པོ།"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr ""
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr ""
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
#, fuzzy
msgctxt "SCSTR_NONAME"
msgid "unnamed"
@@ -17130,7 +17136,7 @@ msgstr "མིང་མི་འདོགས་པ།"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
#, fuzzy
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
@@ -17138,205 +17144,205 @@ msgstr "སྟར་པ། "
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr ""
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "ལས་ཀའི་རེའུ་མིག"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "མིང་།"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "ཟུར་སྣོན་ལས་ཀའི་རེའུ་མིག"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "ལས་ཁྲ་བསྐྱར་དུ་མིང་འདོགས་པ།"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr ""
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "ཚད་ལྡན།"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "བཀའ་བརྡའི་ཁ་གཏད།"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
#, fuzzy
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "ཤོག་ངོས་གསར་པ་བར་འཇུག"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
msgstr[0] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "གསང་རྟགས་ནང་འཇུག"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "གསང་རྟགས་ནང་འཇུག"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "གསང་ཨང་:"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "གསང་ཨང་(སྣང་མེད་བྱེད་ཆོག་པ)"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "གསང་ཨང་ནོར་བ།"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "མཇུག་སྒྲིལ།(~E)"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "མིང་བཏགས་མེད་པ།"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "གྲངས་ཐང་ཆུང་ཤོས།(~M)"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "གྲངས་ཐང་ཆེ་ཤོས་(~M)"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "གྲངས་ཐང་།(~V)"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "གཞི་གྲངས་མ་ཁུངས།(~S)"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "དཀར་ཆག(~E)"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "རྒྱུད་ཁོངས།"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "ཚད་གཞི། ཡི་གེ ཟླ་ཚེས་(DMY) ཟླ་ཚེས་(DMY) ཟླ་ཚེས་(DMY) ཨ་རིའི་དབྱིན་སྐད། སྦས་འཇུག"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
#, fuzzy
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "རེའུ་འགོད་རྟགས།"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
#, fuzzy
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "སྟོང་རྟགས།"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17348,413 +17354,413 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr ""
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "old_text"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "ལས་ཀའི་རེའུ་མིག་འདེམས་པ།"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "ལས་ཀའི་རེའུ་མིག་འདེམས་པ།(~S)"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "ཚད་ཁྲེ།"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "ཁྲེ་ཚད་འདི་བརྒྱུད་ནས་གཏན་འཇགསགནས་སའི་དམིགས་བྱ་ཚོད་འཛིན་བྱེད།"
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "ལས་ཀའི་རེའུ་མིག་དེས་ཡིག་ཚགས་ནང་གི་གཞི་གྲངས་གོ་རིམ་སྒྲིག་སྟངས་ཡིན།"
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "ཡིག་ཚགས་མཐོང་རིས།"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "ལས་ཀའི་རེའུ་མིག་%1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "%1གི་སྡེ་ཚན་ཁྲ་མིག"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "གཡོན་ཕྱོགས་ཁུལ་ཁོངས།"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "སྔོན་ལྟ་པར་འདེབས།"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "བར་དཀྱིལ་ཁུལ་ཁོངས།"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "གཡས་ཕྱོགས་ཀྱི་ཁུལ་ཁོངས།"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "ཤོག་མགོ་། ཤོག་གྲངས་%1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "ཤོག་ཞབས། ཤོག་ལེ%1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "ཕྲེང་ནང་འཇུག"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "དེར་ཁྱེད་ཀྱིས་ཡི་གེ་དང་ཨང་གི་སྤྱི་འགྲོས་བཅས་རྩོམ་སྒྲིག་དང་འཇུག་ཐུབ།"
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "མཚམས་སྦྱོར་སྟོན་པ།"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "བྱི་མཐེབ་མནན་པ།"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
#, fuzzy
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "རྩོམ་སྒྲིག་ཚང་།(~M)"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME གློག་རྡུལ་རེའུ་མིག"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
#, fuzzy
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr " (ལྟ་ཀློག་ཁོ་ན་)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
#, fuzzy
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "སྔོན་ལྟའི་ཕན་འབྲས།(~V)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr ""
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr ""
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr ""
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr ""
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr ""
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr ""
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr ""
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "ཁུལ་ཁོངས་ལ་གཞུང་གི་གདོང་འཛར་ཡོད་པ།(~B)"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "ཁུལ་ཁོངས་ནང་ཕྲེང་རྟགས་ཡོད་པ།(~B)"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
#, fuzzy
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "ནང་འཇུག་གི་གྲངས་ཐང་འདི་ནུས་མེད།"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr ""
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr ""
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr ""
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr ""
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr ""
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr ""
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "གསར་སྣོན་རང་འགུལ་རྣམ་གཞག"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "མིང་བསྐྱར་འདོགས་ཀྱི་རང་འགུལ་རྣམ་གཞག"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "མིང་།"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "རང་འགུལ་རྣམ་གཞག་སུབ་རྒྱུ།"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
#, fuzzy
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "ཁྱེད་རང་གིས་དངོས་གནས་བཤར་བྱང་#འདི་སུབ་བམ།"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "ཁ་བརྒྱབ།(~C)"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "ཟླ་བ་གཅིག"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "ཟླ་གཉིས་པ།"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "ཟླ་བ་གསུམ་པ།"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "བྱང་།"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr ""
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "ལྷོ།"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "ཁྱོན་བསྡོམས།"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
#, fuzzy
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "འཆིང་རྒྱབ་བརྗེ་བ།"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr ""
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17762,1227 +17768,1227 @@ msgstr "ཆ་རྐྱེན།"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "ནང་དོན།"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "ལས་ཀའི་རེའུ་མིག"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "ཁུལ་ཁོངས་ཀྱི་མིང་།"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
#, fuzzy
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "གཞི་གྲངས་མཛོད་ཀྱི་ཁུལ་ཁོངས།"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "བཪྙན་རིས།"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "OLE-དམིགས་བྱ།"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "མཆན་མགྲེལ།"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "འབྲེལ་མཐུད་བྱེད་ཁུལ།"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "རི་མོ་འབྲི་བ།"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
#, fuzzy
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "སྤྱོད་བཞིན་པའི་"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
#, fuzzy
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "མི་སྤྱོད་པ།"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
#, fuzzy
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "གབ་བཅུག"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
#, fuzzy
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "མིག་སྔའི་མཐོང་སྒྲོམ།"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "འཆར་གཞིའི་མིང་།"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "དཔྱད་གཏམ།"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "རིམ་འཕར་རིམ་སྒྲིག"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "རིམ་ཆག་རིམ་སྒྲིག"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr ""
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "མིང་སྒྲོམ།"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "ཕྲེང་ནང་འཇུག"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "ཚབ་རྩིས་ཁྲིད་སྟོན།"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "བེད་སྤྱོད།"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
#, fuzzy
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "འདོར་བ།"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "སྤྱི་འགྲོས།"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr ""
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr ""
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "བཅོས་འབེབས་མཁན།"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "དུས་ཚོད།"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "ཧ་མི་གོ་བའི་སྤྱོད་དུད།"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
#, fuzzy
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "སྟར་པ་བསྒར་འཛུད་བྱས་པ།"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
#, fuzzy
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "ཕྲེང་བར་འཇུག"
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
#, fuzzy
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "ལས་ཀའི་རེའུ་མིག་བར་འཇུག་བྱས་འདུག"
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
#, fuzzy
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "སྟར་པ་དེ་སུབ་པ།"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
#, fuzzy
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "ཕྲེང་སུབ།"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
#, fuzzy
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "ལས་ཀའི་རེའུ་མིག་སུབ་འདུག"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
#, fuzzy
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "ཁུལ་ཁོངས་སྤོ་བ།"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
#, fuzzy
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "ནང་དོན་བཟོ་བཅོས་བྱས་འདུག"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
#, fuzzy
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "ནང་དོན་བཟོ་བཅོས་བྱས་འདུག"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
#, fuzzy
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "བཟོ་བཅོས་ཐུབ། "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
#, fuzzy
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "མ་ཡིག།"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
#, fuzzy
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "བཟོ་བཅོས་འདོར་བ།"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
#, fuzzy
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "དང་ལེན་གྱི།"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
#, fuzzy
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "ཁས་མི་ལེན་པའི།"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
#, fuzzy
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "གཤར་བྱང་མེད་པ།"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<སྟོང་ཆད།>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr ""
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr ""
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr ""
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr ""
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr ""
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr ""
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr ""
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr ""
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr ""
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr ""
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
#, fuzzy
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "ཚོ་སྒྲིག"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr ""
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr ""
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr ""
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr ""
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr ""
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr ""
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr ""
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr ""
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "ཁྱོན་བསྡོམས།"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr ""
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
msgstr ""
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr ""
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
msgstr ""
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr ""
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "mean"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr ""
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "mode"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "མཚམས་སྦྱོར།"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
#, fuzzy
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "འགྱུར་རུང་བ་།"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr ""
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr ""
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "ས་ཁོངས།"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
#, fuzzy
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "གྲངས་ཐང་ཆུང་ཤོས།(~M)"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
#, fuzzy
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "གྲངས་ཐང་ཆེ་ཤོས་(~M)"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
#, fuzzy
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "ཁྱོན་སྡོམ།"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
#, fuzzy
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "གྲངས་ཀ"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
msgstr ""
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr ""
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr ""
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr ""
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "སྤྱིར་བཏང་།"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr ""
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr ""
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr ""
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr ""
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr ""
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
#, fuzzy
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "དབྱིབས་རྩེ།"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "གྲངས་ཐང་ཆུང་ཤོས།(~M)"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
#, fuzzy
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "གྲངས་ཐང་ཆེ་ཤོས་(~M)"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "mean"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr ""
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "མཚམས་སྦྱོར།"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "sigma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr ""
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr ""
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
msgstr ""
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr ""
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
msgctxt "STR_FTEST"
msgid "F-test"
msgstr ""
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr ""
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr ""
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr ""
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr ""
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr ""
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr ""
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr ""
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr ""
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "alpha"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "འགྱུར་རུང་བ་།"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "འགྱུར་རུང་བ་།"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr ""
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "མངག་ཉོ།"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr ""
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr ""
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr ""
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr ""
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr ""
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr ""
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr ""
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
#, fuzzy
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "གཏད་གྲངས།"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "རང་བསྒྱུར་བ།"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr ""
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr ""
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr ""
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr ""
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr ""
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr ""
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr ""
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
msgstr ""
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr ""
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr ""
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr ""
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr ""
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr ""
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr ""
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
msgstr ""
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr ""
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr ""
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr ""
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr ""
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
msgstr ""
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr ""
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index 5547a97f6c2..1cf32144207 100644
--- a/source/bo/sd/messages.po
+++ b/source/bo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3683,9 +3683,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr ""
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3695,9 +3695,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index d69b4710fff..6c91089dd65 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3031,148 +3031,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3184,55 +3184,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr ""
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3727,19 +3727,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4627,62 +4627,62 @@ msgid "Wrap _around"
msgstr ""
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr ""
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
#, fuzzy
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "ཟིན་ཐོ་བཟོ་བཅོས་ཟིན་པ།"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr ""
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr ""
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr ""
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/bo/starmath/messages.po b/source/bo/starmath/messages.po
index beb3627809f..2f7cb49b5d9 100644
--- a/source/bo/starmath/messages.po
+++ b/source/bo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3339,134 +3339,147 @@ msgid "These changes will apply for all new formulas."
msgstr ""
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr ""
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
#, fuzzy
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "སྤྱི་འགྲོས་གསལ་བཤད་ཡི་གེ(~F)"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
#, fuzzy
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "མཐའ་སྒྲོམ།"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
#, fuzzy
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "གདམ་ཚན་པར་འདེབས།"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
#, fuzzy
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "མ་དེབ་ཆེ་ཆུང་།(~R)"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
#, fuzzy
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "ཤོག་ངོས་ཆེ་ཆུང་ལ་ལེགས་སྒྲིག་གིས་བསྒྱུར་བ།(~F)"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
#, fuzzy
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "སྡུར་ཚད་མངོན་པ།(~S)"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr ""
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr ""
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
#, fuzzy
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "མཚོན་རྟགས་སྣ་ཚོགས།"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index 0d3b62f0a81..f6ec6569b27 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -14237,6 +14237,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
#, fuzzy
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index 789df887e2e..72df6fb3e60 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8434,1261 +8434,1267 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr ""
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr ""
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr ""
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr ""
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "དྲང་འཕྱང་དཀྱིལ་སྒྲིག"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
#, fuzzy
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "མཐིལ་ལ་སླེབས།"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "ཕྲེང་གི་སྟེང་་ལ།"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "གཡོན་མཐའི་དཀྱིལ་བསྡུ།"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "ཕྲེང་གི་འོག་ཕྱོགས།"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr ""
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "ཆུ་སྙོམས་ཀྱི་དཀྱིལ་གནས།"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr ""
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
#, fuzzy
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "ནང་ངོས།"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
#, fuzzy
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "ཕྱི་ངོས།"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
#, fuzzy
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "ཧྲིལ་ཟུར།(~B)"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
#, fuzzy
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "སྟར་པ།"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr ""
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr ""
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr ""
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
#, fuzzy
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "ཟླ་སྒྲིལ་རྩིས་མེད།"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr ""
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
#, fuzzy
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "བསྡོམས་འབོར།"
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr ""
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr ""
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr ""
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
#, fuzzy
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "གསལ་ཚད།"
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
#, fuzzy
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "གླར་གསོ། "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
#, fuzzy
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "བསྡུར་ཚད།"
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr ""
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
#, fuzzy
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "དྭངས་གསལ།"
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
#, fuzzy
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "ཚོན་མདོག་ཕན་ཚུན་སྒྱུར་བ།"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr ""
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
#, fuzzy
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "རིས་དབྱིབས་རྣམ་དཔེ།"
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "ཚད་གཞི།"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
#, fuzzy
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "སྐྱ་ཚད།"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
#, fuzzy
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "དཀར་ནག"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "ཆུ་རིས།"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
#, fuzzy
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "འདྲེན་སྤྱོད་ཡི་གེ"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr ""
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr ""
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr ""
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr ""
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr ""
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr ""
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr ""
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "རེའུ་མིག"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
#, fuzzy
msgctxt "ST_PGE"
msgid "Page"
msgstr "ཤོག་ལྷེ།"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "རི་མོ་འབྲི་བ།"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "ཚོད་འཛིན།"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "ཁུལ་ཁོངས།"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "ཤོག་འཛར།"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "པར་རིས།"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "OLE བྱ་ཡུལ།"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "ཁ་བྱང་།"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
#, fuzzy
msgctxt "ST_SEL"
msgid "Selection"
msgstr "བྲིས་རྟགས།"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "ཞབས་མཆན།"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr ""
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "མཆན་འགྲེལ།"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "བསྐྱར་ཟློས་འཚོལ་ཞིབ།"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr ""
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr ""
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr ""
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr ""
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "གཤམ་གྱི་ཤོག་ལྷེ།"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
#, fuzzy
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "ཁ་བྱང་མེད།(~N)"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr ""
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr ""
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
#, fuzzy
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "འོག་གི་ཤོག་མཆན་ལ་སྒྱུར།"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr ""
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr ""
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
#, fuzzy
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "ཁ་བྱང་མེད།(~N)"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr ""
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
#, fuzzy
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "འོག་གི་ཞབས་མཆན་ལ་སྒྱུར།"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr ""
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr ""
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr ""
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "འཚོལ་འདྲེན་ཚན་ཐོ་བར་འཇུག"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
#, fuzzy
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "ཤོག་ལྷེ་གོང་མ།"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "ཤོག་ལྷེ་གོང་མ།"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr ""
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr ""
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
#, fuzzy
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "གོང་གི་ས་ཁོངས་ལ་སྒྱུར།"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
#, fuzzy
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "གོང་གི་ཤོག་མཆན་ལ་སྒྱུར།"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr ""
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr ""
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr ""
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr ""
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
#, fuzzy
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "གོང་གི་ཞབས་མཆན་ལ་སྒྱུར།"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr ""
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr ""
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr ""
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr ""
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "གོང་གི་ལས་ཁྲའི་སྤྱི་འགྲོས་ལ་སྒྱུར།"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr ""
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "གོང་གི་ནོར་འཁྲུལ་གྱི་ལས་ཁྲའི་སྤྱི་འགྲོས་ལ་སྒྱུར།"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
#, fuzzy
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "འོག་གི་ནོར་འཁྲུལ་གྱི་ལས་ཁྲའི་སྤྱི་འགྲོས་ལ་སྒྱུར།"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "བསྒར་འཛུད།"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "སུབ་པ།"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr ""
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "རེའུ་མིག་བཟོ་བཅོས་བྱེད།"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "ཉེར་སྤྱོད་ཀྱི་དུམ་ཚན་བཟོ་དབྱིབས།"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr ""
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr ""
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
#, fuzzy
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "མཇུག་མཆན།"
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
#, fuzzy
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "ཞབས་མཆན།"
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr ""
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr ""
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr ""
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr ""
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr ""
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr ""
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr ""
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr ""
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr ""
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr ""
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "ཤོག་ངོས་བཀོད་སྒྲིག(~L)..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr ""
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr ""
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
#, fuzzy
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "ཡིག་ཆ་འདི་ཁ་ཕྱེ་ཐབས་བྲལ།"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr ""
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr ""
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr ""
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr ""
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr ""
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
#, fuzzy
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "སྒྲོམ་གྱི་དམིགས་བྱ་བར་འཇུག"
#. GWzLN
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1270
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "གསལ་འགྲེལ།: "
#. CoJc8
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1271
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "བར་འཇུག"
#. dfMEF
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1272
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "སུབ་རྒྱུ།"
#. NytQQ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1273
#, fuzzy
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "རང་འགུལ་དག་བཅོས།"
#. YRAQL
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1274
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr ""
#. ELCVU
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1275
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "རེའུ་མིག་བཟོ་བཅོས་བྱེད།"
#. PzfQF
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1276
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "ཉེར་སྤྱོད་ཀྱི་དུམ་ཚན་བཟོ་དབྱིབས།"
#. sgEbW
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1277
msgctxt "STR_PAGE"
msgid "Page "
msgstr "ཤོག་ངོས། "
#. 3DpEx
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1278
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1279
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1280
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr ""
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1282
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "དུམ་མཚམས།"
#. aAtmp
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1283
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "བཪྙན་རིས།"
#. UBDMK
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1284
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE བྱ་ཡུལ།"
#. xEWbo
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1285
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "སྒྲོམ།"
#. hfJns
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1286
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "རེའུ་མིག"
#. GRqNY
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1287
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "རེའུ་མིག་ཕྲེང་།"
#. CDQY4
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1288
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "ལས་ཀའི་རེའུ་མིག་གི་སྡེ་ཚན་ཁྲ་མིག"
#. 2Db9T
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1289
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "ཤོག་ངོས་ཀྱི་སྒྲིག་བཀོད།"
#. 63FuG
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ཤོག་མགོ་"
#. aDuAY
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ཤོག་ཞབས།"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1294
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTMLཡིག་ཚགས།"
#. y2GBv
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1296
#, fuzzy
msgctxt "STR_TITLE"
msgid "Title"
msgstr "ཁ་བྱང་།"
#. AipGR
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1297
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "མཚམས་གཅོད་རྟགས།"
#. CoSEf
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1298
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "རིམ་པ། "
#. JdTF4
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1299
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "བརྒྱུད་ལམ་\"%2\"ནང་ཡིག་ཆ་\"%1\"དེ་འཚོལ་ཐབས་མེད་པ།"
#. zRWDZ
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1300
#, fuzzy
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "རང་མཚན་འགོད་དཀར་ཆག་གསར་བཟོ།"
#. t5uWs
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1301
#, fuzzy
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<མེད།>"
#. vSSnJ
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1302
#, fuzzy
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<མེད།>"
#. NSx98
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1303
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1305
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1306
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1307
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1308
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "ལེའུ་ཨང་རྟགས།"
#. FH365
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1313
#, fuzzy
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "སྡེ་ཚན།"
#. xZjtZ
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1314
#, fuzzy
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "རེའུ་མིག་བཟོ་རྟགས།"
#. aXW8y
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "ཡི་གེ"
#. MCUd2
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "ཤོག་ཨང་།"
#. pXqw3
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1320
#, fuzzy
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "ཚད་ལྡན་ཡིག་ཆའི་དཀར་ཆག་ཚན་བྱང་།"
#. ZKG5v
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1321
#, fuzzy
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "ཡིག་རྟགས་བཟོ་ལྟ།(~C)"
#. d9BES
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1322
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1323
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1324
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1325
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1326
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9697,266 +9703,266 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1331
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "རྨང་ཐིག་སྟེང་ཕྱོགས།(~T)"
#. 5GiEA
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1332
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "རྨང་ཐིག་གཤམ་འོག(~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1333
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "རྨང་ཐིག་དཀྱིལ་བསྡུ།(~C)"
#. NAXyZ
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1334
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "བྱ་ཡུལ་བསྒར་འཛུད།"
#. 5C6Rc
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1335
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "བྱ་ཡུལ་གྱི་རྩོམ་སྒྲིག"
#. 3QFYB
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr "(བཟོ་ལྟ། "
#. oUhnK
-#: sw/inc/strings.hrc:1336
+#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. T2SH2
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "རྒྱབ་ལྗོངས།"
#. K6Yvs
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(དུམ་མཚམས་བཟོ་ལྟ་): "
#. Fsanh
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1341
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr ""
#. VZnJf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1343
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTNAMEཡིས་གཙོ་འཛིན་ཡིག་ཚགས།"
#. kWe9j
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1345
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1346
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1347
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1349
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1350
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "མེད་པ(སྦྱོར་འབྲི་ཞིབ་བཤེར་མི་བྱེད་པ)"
#. Z8EjG
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1351
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
#. YEXdS
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1352
#, fuzzy
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "གཞན་པ།..."
#. QecQ3
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1353
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "སྣང་མེད། (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1354
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1356
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1357
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1358
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1359
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1360
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1361
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTMLཡིག་ཚགས།"
#. qVZBx
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1362
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "ཡིག་ཚགས་རེ་རེར།"
#. qmmPU
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1363
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1364
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "རིམ་པ། "
#. AcAD8
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1365
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ཡིག་གཟུགས་ཀྱི་སྤྱི་ཁོག"
#. DE9FZ
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1366
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "ཞབས་མཆན།/མཇུག་མཆན་རྩོམ་སྒྲིག"
#. EzBCZ
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1367
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "འཚོལ་བའི་སྡེ་ཚན་བརྗེ་བ།"
#. fgywB
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1368
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "ཕྲེང་།"
#. GUc4a
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "སྟར།(~M)"
#. yMyuo
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1370
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "མུ་མཐུད།"
#. ZR9aw
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1374
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1375
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1376
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1380
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1382
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9965,7 +9971,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1388
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9974,142 +9980,130 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1392
+#: sw/inc/strings.hrc:1393
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1394
#, fuzzy
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "ནུས་མེད།"
#. pDAHz
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1395
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1396
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1397
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1399
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "མིང་ཤོག(~U)..."
#. ECFij
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1401
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1403
#, fuzzy
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "བསྒར་འཛུད།"
#. NL48o
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1404
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "སུབ་པ།"
#. PW4Bz
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1405
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "གཏོགས་གཤིས།"
#. yfgiq
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1407
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1408
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1409
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "འགག་གནད་ཚིག་དང་པོ།"
#. BFszo
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1410
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "འགག་གནད་ཚིག་གཉིས་པ།"
#. EoAB8
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1411
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "ནང་དོན།"
#. Shstx
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1412
#, fuzzy
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ཡིག་ཆེན་ཡིག་ཆུང་ཟླ་སྒྲིག(~M)"
#. 8Cjvb
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1413
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1414
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "རེད།"
#. 4tTop
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "མིན།"
#. KhKwa
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1417
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "རང་བཟོས།"
-#. KCExN
-#: sw/inc/strings.hrc:1417
-msgctxt "STR_DATASOURCE_NOT_AVAILABLE"
-msgid "Data source is not available. Mail merge wizard will not work properly."
-msgstr ""
-
-#. u57fa
-#: sw/inc/strings.hrc:1418
-msgctxt "STR_EXCHANGE_DATABASE"
-msgid "Exchange Database"
-msgstr ""
-
#. YiRsr
#: sw/inc/utlui.hrc:27
#, fuzzy
@@ -11443,7 +11437,7 @@ msgid "Entry"
msgstr ""
#. 3trf6
-#: sw/uiconfig/swriter/ui/bibliographyentry.ui:347
+#: sw/uiconfig/swriter/ui/bibliographyentry.ui:344
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
msgstr "འདྲེན་སྤྱོད་ཡིག་ཚང་དཀར་ཆག་བསྒརའཛུད།"
@@ -18059,113 +18053,113 @@ msgid "Previous footnote/endnote"
msgstr ""
#. LdyGB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:48
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:47
msgctxt "insertfootnote|extended_tip|prev"
msgid "Moves to the previous footnote or endnote anchor in the document."
msgstr "ཡིག་ཚགས་ནང་གི་ཞབས་མཆན་གོང་མ་འམ་ཡང་ན་མཇུག་མཆན་འཆིང་རྒྱབ་བྲིས་རྟགས་སུ་བརྗེ་དགོས།"
#. LhiEr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:61
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:60
msgctxt "insertfootnote|next"
msgid "Next footnote/endnote"
msgstr ""
#. 5uMgu
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:65
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:64
msgctxt "insertfootnote|extended_tip|next"
msgid "Moves to the next footnote or endnote anchor in the document."
msgstr "ཡིག་ཚགས་ནང་གི་ཞབས་མཆན་བྲིས་རྟགས་རྗེས་མ་འམ་ཞིག་མཇུག་མཆན་གནས་ངེས་བྲིས་རྟགས་སུ་བརྗེ་བ།"
#. HjJZd
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:158
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:157
msgctxt "insertfootnote|automatic"
msgid "Automatic"
msgstr "རང་འགུལ།"
#. 5B8vB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:168
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:167
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
msgstr ""
#. sCxPm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:180
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:179
msgctxt "insertfootnote|character"
msgid "Character:"
msgstr ""
#. KuhfJ
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:193
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:192
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. BrqCB
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:216
#, fuzzy
msgctxt "insertfootnote|characterentry-atkobject"
msgid "Character"
msgstr "ཡིག་རྟགས།"
#. BPv7S
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:217
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
msgstr ""
#. yx2tm
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:229
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:228
#, fuzzy
msgctxt "insertfootnote|choosecharacter"
msgid "Choose…"
msgstr "འདེམས་པ།"
#. XDgLr
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:237
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:236
#, fuzzy
msgctxt "insertfootnote|extended_tip|choosecharacter"
msgid "Inserts a special character as a footnote or endnote anchor."
msgstr "རྟགས་ཤིག་བསྒར་འཛུད་བྱེད་པ་དེ་ ཞབས་མཆན་ཡང་ན་མཇུག་མཆན་བྲིས་རྟགས་སུ་བརྩིས་དགོས།"
#. g3wcX
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:252
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:251
#, fuzzy
msgctxt "insertfootnote|label1"
msgid "Numbering"
msgstr "ཨང་སྒྲིག"
#. dFGBy
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:281
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:280
msgctxt "insertfootnote|footnote"
msgid "Footnote"
msgstr "ཞབས་མཆན།"
#. Kn3DE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:291
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:290
msgctxt "insertfootnote|extended_tip|footnote"
msgid "Inserts a footnote anchor at the current cursor position in the document, and adds a footnote to the bottom of the page."
msgstr "ཡིག་ཚགས་ནང་གི་མིག་སྔའི་འོད་རྟགས་གནས་སར་ཞབས་མཆན་གནས་ངེས་བྲིས་རྟགས་བསྒར་འཛུད་བྱེད་ ཤོག་ངོས་ཀྱི་མཐིལ་སྣེལ་ཞབས་མཆན་ཁ་སྣོན་རྒྱབ་དགོས།"
#. bQVDE
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:303
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:302
msgctxt "insertfootnote|endnote"
msgid "Endnote"
msgstr "མཇུག་མཆན།"
#. smdRn
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:313
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:312
msgctxt "insertfootnote|extended_tip|endnote"
msgid "Inserts an endnote anchor at the current cursor position in the document, and adds an endnote at the end of the document."
msgstr "ཡིག་ཚགས་ནང་གི་མིག་སྔའི་འོད་རྟགས་གནས་སར་མཇུག་མཆན་འཆིང་རྒྱབ་བྲིས་རྟགས་བསྒར་འཛུད་ ཡིག་ཚགས་མཇུག་རྫོགས་སུ་མཇུག་མཆན་ཁ་སྣོན་རྒྱབ་དགོས།"
#. F9Ef8
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:329
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:328
msgctxt "insertfootnote|label2"
msgid "Type"
msgstr "རིགས།"
#. 4uq24
-#: sw/uiconfig/swriter/ui/insertfootnote.ui:361
+#: sw/uiconfig/swriter/ui/insertfootnote.ui:360
msgctxt "insertfootnote|extended_tip|InsertFootnoteDialog"
msgid "Inserts a footnote or an endnote in the document. The anchor for the note is inserted at the current cursor position."
msgstr ""
@@ -30825,209 +30819,209 @@ msgctxt "wrapdialog|extended_tip|WrapDialog"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
-#. kvc2L
-#: sw/uiconfig/swriter/ui/wrappage.ui:54
-msgctxt "wrappage|none"
-msgid "_Wrap Off"
-msgstr ""
-
-#. KSWRg
-#: sw/uiconfig/swriter/ui/wrappage.ui:69
-msgctxt "wrappage|extended_tip|none"
-msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
-msgstr ""
-
#. VCQDF
-#: sw/uiconfig/swriter/ui/wrappage.ui:80
+#: sw/uiconfig/swriter/ui/wrappage.ui:73
msgctxt "wrappage|before"
msgid "Be_fore"
msgstr ""
#. tE9SC
-#: sw/uiconfig/swriter/ui/wrappage.ui:95
+#: sw/uiconfig/swriter/ui/wrappage.ui:86
msgctxt "wrappage|extended_tip|before"
msgid "Wraps text on the left side of the object if there is enough space."
msgstr ""
#. g5Tik
-#: sw/uiconfig/swriter/ui/wrappage.ui:106
+#: sw/uiconfig/swriter/ui/wrappage.ui:122
msgctxt "wrappage|after"
msgid "Aft_er"
msgstr ""
#. vpZfS
-#: sw/uiconfig/swriter/ui/wrappage.ui:121
+#: sw/uiconfig/swriter/ui/wrappage.ui:135
msgctxt "wrappage|extended_tip|after"
msgid "Wraps text on the right side of the object if there is enough space."
msgstr ""
#. NZJkB
-#: sw/uiconfig/swriter/ui/wrappage.ui:132
+#: sw/uiconfig/swriter/ui/wrappage.ui:171
#, fuzzy
msgctxt "wrappage|parallel"
msgid "_Parallel"
msgstr "མཉམ་འགྲོ།"
#. t9xTQ
-#: sw/uiconfig/swriter/ui/wrappage.ui:147
+#: sw/uiconfig/swriter/ui/wrappage.ui:184
msgctxt "wrappage|extended_tip|parallel"
msgid "Wraps text on all four sides of the border frame of the object."
msgstr ""
#. cES6o
-#: sw/uiconfig/swriter/ui/wrappage.ui:158
+#: sw/uiconfig/swriter/ui/wrappage.ui:220
msgctxt "wrappage|through"
msgid "Thro_ugh"
msgstr ""
#. CCnhG
-#: sw/uiconfig/swriter/ui/wrappage.ui:173
+#: sw/uiconfig/swriter/ui/wrappage.ui:233
msgctxt "wrappage|extended_tip|through"
msgid "Places the object in front of the text."
msgstr ""
+#. kvc2L
+#: sw/uiconfig/swriter/ui/wrappage.ui:269
+msgctxt "wrappage|none"
+msgid "_Wrap Off"
+msgstr ""
+
+#. KSWRg
+#: sw/uiconfig/swriter/ui/wrappage.ui:282
+msgctxt "wrappage|extended_tip|none"
+msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object."
+msgstr ""
+
#. ZjSbB
-#: sw/uiconfig/swriter/ui/wrappage.ui:184
+#: sw/uiconfig/swriter/ui/wrappage.ui:318
#, fuzzy
msgctxt "wrappage|optimal"
msgid "_Optimal"
msgstr "ལེགས་ཤོས།"
#. 4pAFL
-#: sw/uiconfig/swriter/ui/wrappage.ui:199
+#: sw/uiconfig/swriter/ui/wrappage.ui:331
msgctxt "wrappage|extended_tip|optimal"
msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped."
msgstr ""
#. FezRV
-#: sw/uiconfig/swriter/ui/wrappage.ui:214
+#: sw/uiconfig/swriter/ui/wrappage.ui:352
#, fuzzy
msgctxt "wrappage|label1"
msgid "Settings"
msgstr "བཀོད་སྒྲིག"
#. QBuPZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:257
+#: sw/uiconfig/swriter/ui/wrappage.ui:395
msgctxt "wrappage|label4"
msgid "L_eft:"
msgstr ""
#. wDFKF
-#: sw/uiconfig/swriter/ui/wrappage.ui:271
+#: sw/uiconfig/swriter/ui/wrappage.ui:409
#, fuzzy
msgctxt "wrappage|label5"
msgid "_Right:"
msgstr "གཡས།"
#. xsX5s
-#: sw/uiconfig/swriter/ui/wrappage.ui:285
+#: sw/uiconfig/swriter/ui/wrappage.ui:423
msgctxt "wrappage|label6"
msgid "_Top:"
msgstr ""
#. NQ77D
-#: sw/uiconfig/swriter/ui/wrappage.ui:299
+#: sw/uiconfig/swriter/ui/wrappage.ui:437
#, fuzzy
msgctxt "wrappage|label7"
msgid "_Bottom:"
msgstr "འོག་ཕྱོགས།"
#. AXBwG
-#: sw/uiconfig/swriter/ui/wrappage.ui:319
+#: sw/uiconfig/swriter/ui/wrappage.ui:457
msgctxt "wrappage|extended_tip|left"
msgid "Enter the amount of space that you want between the left edge of the object and the text."
msgstr "བྱ་ཡུལ་གཡོན་གྲང་ཡི་གེའི་དབར་གྱི་བར་རྒྱང་ནང་འཇུག་"
#. xChMU
-#: sw/uiconfig/swriter/ui/wrappage.ui:338
+#: sw/uiconfig/swriter/ui/wrappage.ui:476
msgctxt "wrappage|extended_tip|right"
msgid "Enter the amount of space that you want between the right edge of the object and the text."
msgstr "བྱ་ཡུལ་གཡས་འགྲམ་དང་ཡི་གེའི་དབར་མཁོ་བའི་བར་རྒྱང་ནང་འཇུག་"
#. p4GHR
-#: sw/uiconfig/swriter/ui/wrappage.ui:357
+#: sw/uiconfig/swriter/ui/wrappage.ui:495
msgctxt "wrappage|extended_tip|top"
msgid "Enter the amount of space that you want between the top edge of the object and the text."
msgstr "བྱ་ཡུལ་གྱི་ཐོག་མཐའ་འགྲམ་དང་ཡི་གེའི་དབར་འཇོག་དགོས་པའི་བར་རྒྱང་ནང་འཇུག་"
#. GpgCP
-#: sw/uiconfig/swriter/ui/wrappage.ui:376
+#: sw/uiconfig/swriter/ui/wrappage.ui:514
msgctxt "wrappage|extended_tip|bottom"
msgid "Enter the amount of space that you want between the bottom edge of the object and the text."
msgstr "བྱ་ཡུལ་འོག་གི་མཐའ་མཐའ་འགྲམ་དང་ཡི་གེའི་དབར་གྱི་བར་རྒྱང་ནང་འཇུག་"
#. g7ssN
-#: sw/uiconfig/swriter/ui/wrappage.ui:391
+#: sw/uiconfig/swriter/ui/wrappage.ui:529
msgctxt "wrappage|label2"
msgid "Spacing"
msgstr "བར་ཆོད།"
#. LGNvR
-#: sw/uiconfig/swriter/ui/wrappage.ui:423
+#: sw/uiconfig/swriter/ui/wrappage.ui:561
#, fuzzy
msgctxt "wrappage|anchoronly"
msgid "_First paragraph"
msgstr "དུམ་མཚམས་དང་པོ།(~F)"
#. RjfUh
-#: sw/uiconfig/swriter/ui/wrappage.ui:431
+#: sw/uiconfig/swriter/ui/wrappage.ui:569
msgctxt "wrappage|extended_tip|anchoronly"
msgid "Starts a new paragraph below the object after you press Enter."
msgstr ""
#. XDTDj
-#: sw/uiconfig/swriter/ui/wrappage.ui:442
+#: sw/uiconfig/swriter/ui/wrappage.ui:580
#, fuzzy
msgctxt "wrappage|transparent"
msgid "In bac_kground"
msgstr "གསལ་དྭངས་སྟར་བརྒྱུས།"
#. 3fHAC
-#: sw/uiconfig/swriter/ui/wrappage.ui:450
+#: sw/uiconfig/swriter/ui/wrappage.ui:588
msgctxt "wrappage|extended_tip|transparent"
msgid "Moves the selected object to the background. This option is only available if you selected the Through wrap type."
msgstr ""
#. GYAAU
-#: sw/uiconfig/swriter/ui/wrappage.ui:461
+#: sw/uiconfig/swriter/ui/wrappage.ui:599
#, fuzzy
msgctxt "wrappage|outline"
msgid "_Contour"
msgstr "སྤྱི་ཁོག"
#. rF7PT
-#: sw/uiconfig/swriter/ui/wrappage.ui:469
+#: sw/uiconfig/swriter/ui/wrappage.ui:607
msgctxt "wrappage|extended_tip|outline"
msgid "Wraps text around the shape of the object. This option is not available for the Through wrap type, or for frames."
msgstr ""
#. dcKxZ
-#: sw/uiconfig/swriter/ui/wrappage.ui:480
+#: sw/uiconfig/swriter/ui/wrappage.ui:618
msgctxt "wrappage|outside"
msgid "Outside only"
msgstr ""
#. DNsU2
-#: sw/uiconfig/swriter/ui/wrappage.ui:488
+#: sw/uiconfig/swriter/ui/wrappage.ui:626
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
msgstr "བྱ་ཡུལ་གྱི་སྤྱི་ཁོག་ཁོ་ནར་གཞིགས་ཏེ་ཡི་གེ་ཟླུམ་སྐོར་ཡིན་ནའང་ཡི་གེ་བྱ་ཡུལ་གི་བཟོ་ལྟའི་ནང་གི་སྟོང་ཆའི་ཁོངས་་ན་མི་ཐོན།"
#. Ts8tC
-#: sw/uiconfig/swriter/ui/wrappage.ui:499
+#: sw/uiconfig/swriter/ui/wrappage.ui:637
msgctxt "wrappage|outside"
msgid "Allow overlap"
msgstr ""
#. FDUUk
-#: sw/uiconfig/swriter/ui/wrappage.ui:517
+#: sw/uiconfig/swriter/ui/wrappage.ui:655
#, fuzzy
msgctxt "wrappage|label3"
msgid "Options"
msgstr "གདམ་ཚན།"
#. dsA5z
-#: sw/uiconfig/swriter/ui/wrappage.ui:537
+#: sw/uiconfig/swriter/ui/wrappage.ui:675
msgctxt "wrappage|extended_tip|WrapPage"
msgid "Specify the way you want text to wrap around an object."
msgstr ""
diff --git a/source/bo/uui/messages.po b/source/bo/uui/messages.po
index 18d4838b152..56cd8074d1e 100644
--- a/source/bo/uui/messages.po
+++ b/source/bo/uui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-03-23 11:46+0100\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-03-28 15:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -619,13 +619,14 @@ msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
msgstr "ཡིག་ཚགས་བེད་སྤྱོད་བྱེད་མུས།"
-#. YCVzp
+#. QU4jD
#: uui/inc/strings.hrc:33
msgctxt "STR_ALREADYOPEN_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
"\n"
-"Open document read-only, or ignore own file locking and open the document for editing."
+"Open document read-only, or ignore own file locking and open the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. 8mKMg
@@ -634,14 +635,20 @@ msgctxt "STR_ALREADYOPEN_READONLY_BTN"
msgid "Open ~Read-Only"
msgstr "ཀློག་ཙམ་བྱེད་ཡས་ཁ་འབྱེད། (~R)"
-#. ThAZk
+#. FqhkL
#: uui/inc/strings.hrc:35
+msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. ThAZk
+#: uui/inc/strings.hrc:36
msgctxt "STR_ALREADYOPEN_OPEN_BTN"
msgid "~Open"
msgstr "ཁ་འབྱེད།(~O)"
#. uFhJT
-#: uui/inc/strings.hrc:36
+#: uui/inc/strings.hrc:37
msgctxt "STR_ALREADYOPEN_SAVE_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by yourself on a different system since $(ARG2)\n"
@@ -650,73 +657,82 @@ msgid ""
msgstr ""
#. ZCJGW
-#: uui/inc/strings.hrc:37
+#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
msgid "~Retry Saving"
msgstr "ཡང་བསྐྱར་ཉར་ཚགས་ཚོད་ལྟ་བྱེད་རྒྱུ་(~R)"
#. EVEQx
-#: uui/inc/strings.hrc:38
+#: uui/inc/strings.hrc:39
msgctxt "STR_ALREADYOPEN_SAVE_BTN"
msgid "~Save"
msgstr "ཉར་ཚགས།(~S)"
#. SZb7E
-#: uui/inc/strings.hrc:40
+#: uui/inc/strings.hrc:41
msgctxt "RID_KEEP_PASSWORD"
msgid "~Remember password until end of session"
msgstr "བགྲོ་གླེང་མཇུག་མ་སྒྲིལ་བར་གསང་ཨང་ངེས་དགོས།"
#. 7HtCZ
-#: uui/inc/strings.hrc:41
+#: uui/inc/strings.hrc:42
msgctxt "RID_SAVE_PASSWORD"
msgid "~Remember password"
msgstr "གསང་ཨང་ཉར་ཚགས།"
#. CV6Ci
-#: uui/inc/strings.hrc:42
+#: uui/inc/strings.hrc:43
msgctxt "STR_WARNING_INCOMPLETE_ENCRYPTION_TITLE"
msgid "Non-Encrypted Streams"
msgstr ""
#. P7Bd8
-#: uui/inc/strings.hrc:44
+#: uui/inc/strings.hrc:45
msgctxt "STR_LOCKFAILED_TITLE"
msgid "Document Could Not Be Locked"
msgstr ""
-#. XBEF9
-#: uui/inc/strings.hrc:45
-#, fuzzy
+#. hJ55V
+#: uui/inc/strings.hrc:46
msgctxt "STR_LOCKFAILED_MSG"
-msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "%PRODUCTNAMEཡིག་ཆ་བཀག་འཛིན་བྱས་ནས་བཙན་བཟུང་བཅར་འདྲིར་སྤྱོད་ཐབས་བྲལ་བ་དེ་ནི་ཡིག་ཆའི་གནས་སར་བཀག་འཛིན་ཡིག་ཆ་ཞིག་གསར་བཟོའི་དབང་ཚད་མེད་པའི་རྐྱེན་གྱིས་རེད།"
+msgid ""
+"The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
#. CaBXF
-#: uui/inc/strings.hrc:46
+#: uui/inc/strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "ཀློག་ཙམ་བྱེད་ཡས་ཁ་འབྱེད། (~R)"
-#. u5nuY
+#. Wuw4K
#: uui/inc/strings.hrc:48
+msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. u5nuY
+#: uui/inc/strings.hrc:50
msgctxt "STR_OPENLOCKED_TITLE"
msgid "Document in Use"
msgstr "ཡིག་ཚགས་བེད་སྤྱོད་བྱེད་མུས།"
-#. hFQZP
-#: uui/inc/strings.hrc:49
+#. qcayz
+#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
"\n"
"$(ARG2)\n"
"\n"
-"Open document read-only or open a copy of the document for editing.$(ARG3)"
+"Open document read-only or open a copy of the document for editing.\n"
+"Select Notify to open read-only and get notified when the document becomes editable.$(ARG3)"
msgstr ""
#. VF7vT
-#: uui/inc/strings.hrc:50
+#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid ""
"\n"
@@ -724,31 +740,37 @@ msgid ""
msgstr ""
#. tc7YZ
-#: uui/inc/strings.hrc:51
+#: uui/inc/strings.hrc:53
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "ཀློག་ཙམ་བྱེད་ཡས་ཁ་འབྱེད། (~R)"
+#. anQNW
+#: uui/inc/strings.hrc:54
+msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. TsA54
-#: uui/inc/strings.hrc:52
+#: uui/inc/strings.hrc:55
msgctxt "STR_OPENLOCKED_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "ཟུར་དེབ་ཁ་འབྱེད(~C)"
#. EXAAf
-#: uui/inc/strings.hrc:53
+#: uui/inc/strings.hrc:56
msgctxt "STR_UNKNOWNUSER"
msgid "Unknown User"
msgstr "ཧ་མི་གོ་བའི་སྤྱོད་དུད།"
#. PFEwD
-#: uui/inc/strings.hrc:55
+#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_TITLE"
msgid "Document Has Been Changed by Others"
msgstr ""
#. umCKE
-#: uui/inc/strings.hrc:56
+#: uui/inc/strings.hrc:59
msgctxt "STR_FILECHANGED_MSG"
msgid ""
"The file has been changed since it was opened for editing in %PRODUCTNAME. Saving your version of the document will overwrite changes made by others.\n"
@@ -757,19 +779,19 @@ msgid ""
msgstr ""
#. DGYmK
-#: uui/inc/strings.hrc:57
+#: uui/inc/strings.hrc:60
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
msgid "~Save Anyway"
msgstr "མུ་མཐུད་ཉར་ཚགས།"
#. YBz5F
-#: uui/inc/strings.hrc:59
+#: uui/inc/strings.hrc:62
msgctxt "STR_TRYLATER_TITLE"
msgid "Document in Use"
msgstr "ཡིག་ཚགས་བེད་སྤྱོད་བྱེད་མུས།"
#. 4Fimj
-#: uui/inc/strings.hrc:60
+#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -780,7 +802,7 @@ msgid ""
msgstr ""
#. b3UBG
-#: uui/inc/strings.hrc:61
+#: uui/inc/strings.hrc:64
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
msgid ""
"Document file '$(ARG1)' is locked for editing by:\n"
@@ -791,19 +813,19 @@ msgid ""
msgstr ""
#. 8JFLZ
-#: uui/inc/strings.hrc:62
+#: uui/inc/strings.hrc:65
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
msgid "~Retry Saving"
msgstr "ཡང་བསྐྱར་ཉར་ཚགས་ཚོད་ལྟ་བྱེད་རྒྱུ་(~R)"
#. 6iCzM
-#: uui/inc/strings.hrc:63
+#: uui/inc/strings.hrc:66
msgctxt "STR_TRYLATER_SAVEAS_BTN"
msgid "~Save As..."
msgstr "གཞན་ཉར།(~S)..."
#. nqrvC
-#: uui/inc/strings.hrc:65
+#: uui/inc/strings.hrc:68
msgctxt "STR_RENAME_OR_REPLACE"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -811,7 +833,7 @@ msgid ""
msgstr ""
#. 3bJvA
-#: uui/inc/strings.hrc:66
+#: uui/inc/strings.hrc:69
msgctxt "STR_NAME_CLASH_RENAME_ONLY"
msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
@@ -819,61 +841,118 @@ msgid ""
msgstr ""
#. Bapqc
-#: uui/inc/strings.hrc:67
+#: uui/inc/strings.hrc:70
msgctxt "STR_SAME_NAME_USED"
msgid "Please provide a different file name!"
msgstr ""
#. BsaWY
-#: uui/inc/strings.hrc:69
+#: uui/inc/strings.hrc:72
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
msgstr "གསང་ཨང་ནོར་བ། ཡིག་ཚགས་ཁ་ཕྱེ་ཐབས་མེད་པ།"
#. WQbYF
-#: uui/inc/strings.hrc:70
+#: uui/inc/strings.hrc:73
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
msgid "The password is incorrect. The file cannot be modified."
msgstr "གསང་ཨང་ནོར་བ། ཡིག་ཚགས་ཁ་ཕྱེ་ཐབས་མེད་པ།"
#. Gq9FJ
-#: uui/inc/strings.hrc:71
+#: uui/inc/strings.hrc:74
#, fuzzy
msgctxt "STR_ERROR_MASTERPASSWORD_WRONG"
msgid "The master password is incorrect."
msgstr "ད་དུང་གསང་ཨང་བཟོ་འགོད་བྱས་མིན་འདུག"
#. pRwHM
-#: uui/inc/strings.hrc:72
+#: uui/inc/strings.hrc:75
#, fuzzy
msgctxt "STR_ERROR_SIMPLE_PASSWORD_WRONG"
msgid "The password is incorrect."
msgstr "ད་དུང་གསང་ཨང་བཟོ་འགོད་བྱས་མིན་འདུག"
#. DwdJn
-#: uui/inc/strings.hrc:73
+#: uui/inc/strings.hrc:76
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The password confirmation does not match."
msgstr "གསང་རྟགས་ཟླ་མི་སྒྲིག་པ་ངོས་འཛིན། །"
#. dwGow
-#: uui/inc/strings.hrc:75
+#: uui/inc/strings.hrc:78
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
msgstr ""
-#. QxsDe
-#: uui/inc/strings.hrc:76
+#. nkUGA
+#: uui/inc/strings.hrc:79
msgctxt "STR_LOCKCORRUPT_MSG"
-msgid "The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file."
+msgid ""
+"The lock file is corrupted and probably empty. Opening the document read-only and closing it again removes the corrupted lock file.\n"
+"\n"
+"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
#. fKEYB
-#: uui/inc/strings.hrc:77
+#: uui/inc/strings.hrc:80
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_BTN"
msgid "Open ~Read-Only"
msgstr "ཀློག་ཙམ་བྱེད་ཡས་ཁ་འབྱེད། (~R)"
+#. qRAcY
+#: uui/inc/strings.hrc:81
+msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
+#. rBAR3
+#: uui/inc/strings.hrc:83
+msgctxt "STR_RELOADEDITABLE_TITLE"
+msgid "Document is now editable"
+msgstr ""
+
+#. cVZuC
+#: uui/inc/strings.hrc:84
+msgctxt "STR_RELOADEDITABLE_MSG"
+msgid ""
+"Document file '$(ARG1)' is now editable \n"
+"\n"
+"Reload this document for editing?"
+msgstr ""
+
+#. vynDE
+#: uui/inc/strings.hrc:85
+msgctxt "STR_RELOADEDITABLE_BTN"
+msgid "~Reload"
+msgstr ""
+
+#. waDLe
+#: uui/inc/strings.hrc:87
+msgctxt "STR_READONLYOPEN_TITLE"
+msgid "Document is read-only"
+msgstr ""
+
+#. DbVND
+#: uui/inc/strings.hrc:88
+msgctxt "STR_READONLYOPEN_MSG"
+msgid ""
+"Document file '$(ARG1)' is read-only.\n"
+"\n"
+"Open read-only or select Notify to open read-only and get notified when the document becomes editable."
+msgstr ""
+
+#. KLAtB
+#: uui/inc/strings.hrc:89
+msgctxt "STR_READONLYOPEN_BTN"
+msgid "Open ~Read-Only"
+msgstr ""
+
+#. 9L3b3
+#: uui/inc/strings.hrc:90
+msgctxt "STR_READONLYOPEN_NOTIFY_BTN"
+msgid "~Notify"
+msgstr ""
+
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
msgctxt "authfallback|AuthFallbackDlg"
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index 720bd5f4da7..4be5a5f0551 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-05-14 14:15+0200\n"
+"POT-Creation-Date: 2021-05-31 15:14+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"
@@ -4515,79 +4515,79 @@ msgid "_Replace"
msgstr "_Amsaviñ"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:139
+#: cui/uiconfig/ui/acorexceptpage.ui:138
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Dilemel ar berradurioù"
#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:190
+#: cui/uiconfig/ui/acorexceptpage.ui:189
msgctxt "acorexceptpage|extended_tip|abbrevlist"
msgid "Lists the abbreviations that are not automatically corrected."
msgstr ""
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:207
+#: cui/uiconfig/ui/acorexceptpage.ui:206
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Berradurioù (ne vo ket dav lakaat ur bennlizherenn war o lerc'h)"
#. N9SbP
-#: cui/uiconfig/ui/acorexceptpage.ui:248
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|extended_tip|double"
msgid "Type the word or abbreviation that starts with two capital letters or a small initial that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc, or enter eBook to prevent a change to Ebook."
msgstr ""
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:259
+#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "Degemer ent-emge_freek"
#. Cqrp5
-#: cui/uiconfig/ui/acorexceptpage.ui:265
+#: cui/uiconfig/ui/acorexceptpage.ui:264
msgctxt "acorexceptpage|autodouble"
msgid "Automatically add to the exception list if autocorrection is immediately undone."
msgstr ""
#. 7u9Af
-#: cui/uiconfig/ui/acorexceptpage.ui:268
+#: cui/uiconfig/ui/acorexceptpage.ui:267
msgctxt "acorexceptpage|extended_tip|autodouble"
msgid "Adds autocorrected words that start with two capital letters to the list of exceptions, if the autocorrection is immediately undone. This feature is only effective if the Correct TWo INitial CApitals option is selected in the [T] column on the Options tab of this dialog."
msgstr ""
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:295
+#: cui/uiconfig/ui/acorexceptpage.ui:294
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr ""
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:307
+#: cui/uiconfig/ui/acorexceptpage.ui:306
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "_Amsaviñ"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:331
+#: cui/uiconfig/ui/acorexceptpage.ui:329
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr ""
#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:382
+#: cui/uiconfig/ui/acorexceptpage.ui:380
msgctxt "acorexceptpage|extended_tip|doublelist"
msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
msgstr ""
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:399
+#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr ""
#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:414
+#: cui/uiconfig/ui/acorexceptpage.ui:412
msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
msgstr ""
@@ -9886,194 +9886,194 @@ msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Mentrezh"
+#. ZG2Bm
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+msgctxt "hangulhanjaconversiondialog|simpleconversion"
+msgid "_Hangul/Hanja"
+msgstr "_Hangul/Hanja"
+
+#. tSGmu
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
+msgid "The original characters are replaced by the suggested characters."
+msgstr ""
+
+#. xwknP
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
+msgctxt "hangulhanjaconversiondialog|hangulbracket"
+msgid "Hanja (Han_gul)"
+msgstr "Hanjaeg (Han_guleg)"
+
+#. cGuoW
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
+msgid "The Hangul part will be displayed in brackets after the Hanja part."
+msgstr ""
+
+#. 6guxd
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
+msgctxt "hangulhanjaconversiondialog|hanjabracket"
+msgid "Hang_ul (Hanja)"
+msgstr "Hang_uleg (Hanjaeg)"
+
+#. Sefus
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
+msgid "The Hanja part will be displayed in brackets after the Hangul part."
+msgstr ""
+
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:309
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:393
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr ""
#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:315
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
msgid "The Hangul part will be displayed as ruby text above the Hanja part."
msgstr ""
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:329
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:439
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr ""
#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:335
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:448
msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
msgid "The Hangul part will be displayed as ruby text below the Hanja part."
msgstr ""
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr ""
#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
msgid "The Hanja part will be displayed as ruby text above the Hangul part."
msgstr ""
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:531
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr ""
#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:540
msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
msgid "The Hanja part will be displayed as ruby text below the Hangul part."
msgstr ""
-#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:386
-msgctxt "hangulhanjaconversiondialog|simpleconversion"
-msgid "_Hangul/Hanja"
-msgstr "_Hangul/Hanja"
-
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:396
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr ""
-
-#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:407
-msgctxt "hangulhanjaconversiondialog|hangulbracket"
-msgid "Hanja (Han_gul)"
-msgstr "Hanjaeg (Han_guleg)"
-
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:416
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr ""
-
-#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:427
-msgctxt "hangulhanjaconversiondialog|hanjabracket"
-msgid "Hang_ul (Hanja)"
-msgstr "Hang_uleg (Hanjaeg)"
-
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:436
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr ""
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:461
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:572
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Amdroadur"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:589
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "Hanguleg _hepken"
#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:486
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:597
msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
msgid "Check to convert only Hangul. Do not convert Hanja."
msgstr ""
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:498
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:609
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Hanjaeg he_pken"
#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
msgid "Check to convert only Hanja. Do not convert Hangul."
msgstr ""
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:539
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "_Leuskel a-gostez"
#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:659
msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
msgstr ""
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:560
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:671
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "Leuskel a-_gostez bewech"
#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:567
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:678
msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
msgstr ""
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:579
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:690
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "_Amsaviñ"
#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:586
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:697
msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
msgid "Replaces the selection with the suggested characters or word according to the format options."
msgstr ""
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:598
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:709
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "Amsaviñ b_epred"
#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:605
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:716
msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
msgstr ""
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:617
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:728
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Amsaviñ gant un aroue_zenn"
#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:625
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:736
msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
msgstr ""
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:637
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:748
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr ""
#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:643
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:754
msgctxt "hangulhanjaconversiondialog|extended_tip|options"
msgid "Opens the Hangul/Hanja Options dialog."
msgstr ""
#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:679
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:787
msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
msgstr ""
@@ -14464,122 +14464,110 @@ msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boestadoù emziviz Digeriñ/Enrollañ"
-#. JAW5C
-#: 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:177
-msgctxt "optgeneralpage|label3"
-msgid "Print Dialogs"
-msgstr "Boestadoù emziviz Moullañ"
-
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:197
+#: cui/uiconfig/ui/optgeneralpage.ui:163
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Stad \"Teul daskemmet\" evit an arventennoù _moullañ"
#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:207
+#: cui/uiconfig/ui/optgeneralpage.ui:173
msgctxt "extended_tip | docstatus"
msgid "Specifies whether the printing of the document counts as a modification."
msgstr ""
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:182
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stad an teul"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:246
+#: cui/uiconfig/ui/optgeneralpage.ui:212
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Jubenniñ da vloazioù etre "
#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:265
+#: cui/uiconfig/ui/optgeneralpage.ui:231
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:278
+#: cui/uiconfig/ui/optgeneralpage.ui:244
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:291
+#: cui/uiconfig/ui/optgeneralpage.ui:257
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bloaz (2 sifr)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:318
+#: cui/uiconfig/ui/optgeneralpage.ui:284
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:327
+#: cui/uiconfig/ui/optgeneralpage.ui:293
msgctxt "extended_tip | collectusageinfo"
msgid "Send usage data to help The Document Foundation improve the software usability."
msgstr ""
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:338
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr ""
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:358
+#: cui/uiconfig/ui/optgeneralpage.ui:324
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Roit skoazell da wellaat %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:386
+#: cui/uiconfig/ui/optgeneralpage.ui:352
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:400
+#: cui/uiconfig/ui/optgeneralpage.ui:366
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gweredekaat al loc'hañ herrek er maez rebuziñ"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:418
+#: cui/uiconfig/ui/optgeneralpage.ui:384
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Loc'hañ herrek %PRODUCTNAME"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:445
+#: cui/uiconfig/ui/optgeneralpage.ui:411
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr ""
#. 2EWmE
-#: cui/uiconfig/ui/optgeneralpage.ui:459
+#: cui/uiconfig/ui/optgeneralpage.ui:425
msgctxt "optgeneralpage|FileExtCheckCheckbox"
msgid "Perform check for default file associations on start-up"
msgstr ""
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:477
+#: cui/uiconfig/ui/optgeneralpage.ui:443
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr ""
#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:457
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for %PRODUCTNAME."
msgstr ""
@@ -15571,14 +15559,20 @@ msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr ""
+#. kEnsC
+#: cui/uiconfig/ui/optonlineupdatepage.ui:427
+msgctxt "optonlineupdatepage|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:431
+#: cui/uiconfig/ui/optonlineupdatepage.ui:445
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Dibarzhioù evit an hizivaat enlinenn"
#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:439
+#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
msgstr ""
@@ -20493,67 +20487,67 @@ msgid "Plays the animation effect continuously. To specify the number of times t
msgstr ""
#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:360
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
msgid "Enter the number of times that you want the animation effect to repeat."
msgstr ""
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:380
+#: cui/uiconfig/ui/textanimtabpage.ui:381
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Azvuiad :"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:397
+#: cui/uiconfig/ui/textanimtabpage.ui:398
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "_Pikselioù"
#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:409
+#: cui/uiconfig/ui/textanimtabpage.ui:410
msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
msgid "Measures increment value in pixels."
msgstr ""
#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:431
+#: cui/uiconfig/ui/textanimtabpage.ui:433
msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
msgid "Enter the number of increments by which to scroll the text."
msgstr ""
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:451
+#: cui/uiconfig/ui/textanimtabpage.ui:453
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Dale :"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:468
+#: cui/uiconfig/ui/textanimtabpage.ui:470
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_Emgefreek"
#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:480
+#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
msgstr ""
#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:502
+#: cui/uiconfig/ui/textanimtabpage.ui:505
msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
msgid "Enter the amount of time to wait before repeating the effect."
msgstr ""
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:524
+#: cui/uiconfig/ui/textanimtabpage.ui:527
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Perzhioù"
#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:540
+#: cui/uiconfig/ui/textanimtabpage.ui:543
msgctxt "textanimtabpage|extended_tip|TextAnimation"
msgid "Adds an animation effect to the text in the selected drawing object."
msgstr ""
@@ -21075,10 +21069,10 @@ msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#. VKaJE
+#. PLg5H
#: cui/uiconfig/ui/tipofthedaydialog.ui:29
msgctxt "TipOfTheDay|Checkbox_Tooltip"
-msgid "Enable the dialog again at Tools > Options > General"
+msgid "Enable the dialog again at Tools > Options > General, or Help > Show Tip of the Day"
msgstr ""
#. GALqP
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 ca9f66bd911..14a72af4c81 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -4583,14 +4583,14 @@ msgctxt ""
msgid "~Number"
msgstr "~Niver"
-#. t7h9x
+#. Cwopc
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteTransposed\n"
"Label\n"
"value.text"
-msgid "Paste Transposed "
+msgid "Paste Transposed"
msgstr ""
#. EbDtX
@@ -4603,14 +4603,14 @@ msgctxt ""
msgid "Trans~pose"
msgstr ""
-#. GEBAL
+#. JG27R
#: CalcCommands.xcu
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:PasteAsLink\n"
"Label\n"
"value.text"
-msgid "Paste As Link "
+msgid "Paste As Link"
msgstr ""
#. f7yoE
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index 7bac212339c..aa3141295b6 100644
--- a/source/br/sc/messages.po
+++ b/source/br/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -16872,112 +16872,118 @@ msgctxt "SCSTR_STDFILTER"
msgid "Standard Filter..."
msgstr "Sil skoueriek"
-#. 7QCjE
+#. AbDTU
#: sc/inc/strings.hrc:34
+msgctxt "SCSTR_CLEAR_FILTER"
+msgid "Clear Filter"
+msgstr ""
+
+#. 7QCjE
+#: sc/inc/strings.hrc:35
msgctxt "SCSTR_TOP10FILTER"
msgid "Top 10"
msgstr "Top 10"
#. FNDLK
-#: sc/inc/strings.hrc:35
+#: sc/inc/strings.hrc:36
msgctxt "SCSTR_FILTER_EMPTY"
msgid "Empty"
msgstr "Goullo"
#. EsQtb
-#: sc/inc/strings.hrc:36
+#: sc/inc/strings.hrc:37
msgctxt "SCSTR_FILTER_NOTEMPTY"
msgid "Not Empty"
msgstr "Ket goullo"
#. z7yDU
-#: sc/inc/strings.hrc:37
+#: sc/inc/strings.hrc:38
msgctxt "SCSTR_FILTER_TEXT_COLOR"
msgid "Text color"
msgstr ""
#. FYw53
-#: sc/inc/strings.hrc:38
+#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background color"
msgstr ""
#. Wgy7r
-#: sc/inc/strings.hrc:39
+#: sc/inc/strings.hrc:40
msgctxt "SCSTR_NONAME"
msgid "unnamed"
msgstr "dizanv"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
-#: sc/inc/strings.hrc:41
+#: sc/inc/strings.hrc:42
msgctxt "SCSTR_COLUMN"
msgid "Column %1"
msgstr "Bann %1"
#. NXxyc
#. "%1 is replaced to row number, such as 'Row 1'"
-#: sc/inc/strings.hrc:43
+#: sc/inc/strings.hrc:44
msgctxt "SCSTR_ROW"
msgid "Row %1"
msgstr "Renk %1"
#. 7p8BN
-#: sc/inc/strings.hrc:44
+#: sc/inc/strings.hrc:45
msgctxt "SCSTR_TABLE"
msgid "Sheet"
msgstr "Follenn"
#. ArnTD
-#: sc/inc/strings.hrc:45
+#: sc/inc/strings.hrc:46
msgctxt "SCSTR_NAME"
msgid "Name"
msgstr "Anv"
#. BxrBH
-#: sc/inc/strings.hrc:46
+#: sc/inc/strings.hrc:47
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
msgstr "Stagañ ar follenn"
#. sba4F
-#: sc/inc/strings.hrc:47
+#: sc/inc/strings.hrc:48
msgctxt "SCSTR_RENAMETAB"
msgid "Rename Sheet"
msgstr "Adenvel ar follenn"
#. EEcgV
-#: sc/inc/strings.hrc:48
+#: sc/inc/strings.hrc:49
msgctxt "SCSTR_SET_TAB_BG_COLOR"
msgid "Tab Color"
msgstr "Liv an ivinell"
#. sTank
-#: sc/inc/strings.hrc:49
+#: sc/inc/strings.hrc:50
msgctxt "SCSTR_NO_TAB_BG_COLOR"
msgid "Default"
msgstr "Dre ziouer"
#. yEEuF
-#: sc/inc/strings.hrc:50
+#: sc/inc/strings.hrc:51
msgctxt "SCSTR_RENAMEOBJECT"
msgid "Name Object"
msgstr "Envel an ergorenn"
#. 3FHKw
-#: sc/inc/strings.hrc:51
+#: sc/inc/strings.hrc:52
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Enlakaat ur skeudenn"
#. VhbD7
-#: sc/inc/strings.hrc:52
+#: sc/inc/strings.hrc:53
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
msgstr ""
#. bKv77
-#: sc/inc/strings.hrc:53
+#: sc/inc/strings.hrc:54
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
@@ -16985,135 +16991,135 @@ msgstr[0] ""
msgstr[1] ""
#. 7GkKi
-#: sc/inc/strings.hrc:54
+#: sc/inc/strings.hrc:55
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
msgstr ""
#. YxFpr
#. Attribute
-#: sc/inc/strings.hrc:56
+#: sc/inc/strings.hrc:57
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
msgstr ""
#. SQCpD
-#: sc/inc/strings.hrc:57
+#: sc/inc/strings.hrc:58
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
msgstr ""
#. rAV3G
-#: sc/inc/strings.hrc:58
+#: sc/inc/strings.hrc:59
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
msgstr ""
#. K7w3B
-#: sc/inc/strings.hrc:59
+#: sc/inc/strings.hrc:60
msgctxt "SCSTR_CHG_PROTECT"
msgid "Protect Records"
msgstr "Gwareziñ an istorek"
#. DLDBg
-#: sc/inc/strings.hrc:60
+#: sc/inc/strings.hrc:61
msgctxt "SCSTR_CHG_UNPROTECT"
msgid "Unprotect Records"
msgstr "Diweredekaat gwareziñ ar roll-istor"
#. rFdAS
-#: sc/inc/strings.hrc:61
+#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PASSWORD"
msgid "Password:"
msgstr "Ger-tremen :"
#. dd2wC
-#: sc/inc/strings.hrc:62
+#: sc/inc/strings.hrc:63
msgctxt "SCSTR_PASSWORDOPT"
msgid "Password (optional):"
msgstr "Ger-tremen (diret)"
#. dTBug
-#: sc/inc/strings.hrc:63
+#: sc/inc/strings.hrc:64
msgctxt "SCSTR_WRONGPASSWORD"
msgid "Incorrect Password"
msgstr "Ger-tremen direizh"
#. bkGuJ
-#: sc/inc/strings.hrc:64
+#: sc/inc/strings.hrc:65
msgctxt "SCSTR_END"
msgid "~End"
msgstr "~Dibenn"
#. XNnTf
-#: sc/inc/strings.hrc:65
+#: sc/inc/strings.hrc:66
msgctxt "SCSTR_UNKNOWN"
msgid "Unknown"
msgstr "Dianav"
#. NoEfk
-#: sc/inc/strings.hrc:66
+#: sc/inc/strings.hrc:67
msgctxt "SCSTR_VALID_MINIMUM"
msgid "~Minimum"
msgstr "~Izek"
#. gKahz
-#: sc/inc/strings.hrc:67
+#: sc/inc/strings.hrc:68
msgctxt "SCSTR_VALID_MAXIMUM"
msgid "~Maximum"
msgstr "~Uc'hek"
#. nmeHF
-#: sc/inc/strings.hrc:68
+#: sc/inc/strings.hrc:69
msgctxt "SCSTR_VALID_VALUE"
msgid "~Value"
msgstr "~Gwerzh"
#. g8Cow
-#: sc/inc/strings.hrc:69
+#: sc/inc/strings.hrc:70
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
msgstr ""
#. 6YEEk
-#: sc/inc/strings.hrc:70
+#: sc/inc/strings.hrc:71
msgctxt "SCSTR_VALID_RANGE"
msgid "~Source"
msgstr "~Tarzh"
#. FA84s
-#: sc/inc/strings.hrc:71
+#: sc/inc/strings.hrc:72
msgctxt "SCSTR_VALID_LIST"
msgid "~Entries"
msgstr "~Enankadoù"
#. vhcaA
#. for dialogues:
-#: sc/inc/strings.hrc:73
+#: sc/inc/strings.hrc:74
msgctxt "SCSTR_CHARSET_USER"
msgid "System"
msgstr "Reizhiad"
#. 2tobg
-#: sc/inc/strings.hrc:74
+#: sc/inc/strings.hrc:75
msgctxt "SCSTR_COLUMN_USER"
msgid "Standard;Text;Date (DMY);Date (MDY);Date (YMD);US English;Hide"
msgstr "Skoueriek;Testenn;Deiziad (DMB);Deiziad (MDB);Deiziad (BMD);Saozneg US;Masklañ"
#. px75F
-#: sc/inc/strings.hrc:75
+#: sc/inc/strings.hrc:76
msgctxt "SCSTR_FIELDSEP_TAB"
msgid "Tab"
msgstr "Taolennata"
#. ZGpGp
-#: sc/inc/strings.hrc:76
+#: sc/inc/strings.hrc:77
msgctxt "SCSTR_FIELDSEP_SPACE"
msgid "space"
msgstr "esaouenn"
#. xiSEb
-#: sc/inc/strings.hrc:77
+#: sc/inc/strings.hrc:78
msgctxt "SCSTR_FORMULA_AUTOCORRECTION"
msgid ""
"%PRODUCTNAME Calc found an error in the formula entered.\n"
@@ -17125,407 +17131,407 @@ msgstr ""
"\n"
#. C8dAj
-#: sc/inc/strings.hrc:78
+#: sc/inc/strings.hrc:79
msgctxt "SCSTR_UNDO_GRAFFILTER"
msgid "Image Filter"
msgstr "Sil skeudennoù"
#. CfBRk
-#: sc/inc/strings.hrc:79
+#: sc/inc/strings.hrc:80
msgctxt "STR_CAPTION_DEFAULT_TEXT"
msgid "Text"
msgstr "Testenn"
#. X6bVC
#. Select tables dialog title
-#: sc/inc/strings.hrc:81
+#: sc/inc/strings.hrc:82
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
msgstr "Diuz follennoù"
#. SEDS2
#. Select tables dialog listbox
-#: sc/inc/strings.hrc:83
+#: sc/inc/strings.hrc:84
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
msgstr "~Follennoù diuzet"
#. SfEhE
-#: sc/inc/strings.hrc:84
+#: sc/inc/strings.hrc:85
msgctxt "STR_ACC_CSVRULER_NAME"
msgid "Ruler"
msgstr "Reolenn"
#. 3VwsT
-#: sc/inc/strings.hrc:85
+#: sc/inc/strings.hrc:86
msgctxt "STR_ACC_CSVRULER_DESCR"
msgid "This ruler manages objects at fixed positions."
msgstr "Merañ a ra ar reolenn-mañ ergorennoù o lec'hiadurioù fest."
#. 7Ream
-#: sc/inc/strings.hrc:86
+#: sc/inc/strings.hrc:87
msgctxt "STR_ACC_CSVGRID_NAME"
msgid "Preview"
msgstr "Alberz"
#. uSKyF
-#: sc/inc/strings.hrc:87
+#: sc/inc/strings.hrc:88
msgctxt "STR_ACC_CSVGRID_DESCR"
msgid "This sheet shows how the data will be arranged in the document."
msgstr "Diskouez a ra ar follennad-mañ lec'hiadur ar roadennoù en teul."
#. MwTAm
-#: sc/inc/strings.hrc:88
+#: sc/inc/strings.hrc:89
msgctxt "STR_ACC_DOC_NAME"
msgid "Document view"
msgstr "Skrammañ an teul"
#. NFaas
-#: sc/inc/strings.hrc:89
+#: sc/inc/strings.hrc:90
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
msgstr "Follenn %1"
#. 2qRJG
-#: sc/inc/strings.hrc:90
+#: sc/inc/strings.hrc:91
msgctxt "STR_ACC_CELL_NAME"
msgid "Cell %1"
msgstr "Kellig %1"
#. KD4PA
-#: sc/inc/strings.hrc:91
+#: sc/inc/strings.hrc:92
msgctxt "STR_ACC_LEFTAREA_NAME"
msgid "Left area"
msgstr "Lijorenn gleiz"
#. 56AkM
-#: sc/inc/strings.hrc:92
+#: sc/inc/strings.hrc:93
msgctxt "STR_ACC_PREVIEWDOC_NAME"
msgid "Page preview"
msgstr "Alberz pajenn"
#. RA4AS
-#: sc/inc/strings.hrc:93
+#: sc/inc/strings.hrc:94
msgctxt "STR_ACC_CENTERAREA_NAME"
msgid "Center area"
msgstr "Lijorenn greiz"
#. 2hpwq
-#: sc/inc/strings.hrc:94
+#: sc/inc/strings.hrc:95
msgctxt "STR_ACC_RIGHTAREA_NAME"
msgid "Right area"
msgstr "Lijorenn dehou"
#. FrXgq
-#: sc/inc/strings.hrc:95
+#: sc/inc/strings.hrc:96
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
msgstr "Reollin ar bajenn %1"
#. BwF8D
-#: sc/inc/strings.hrc:96
+#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_FOOTER_NAME"
msgid "Footer of page %1"
msgstr "Troad pajenn ar bajenn %1"
#. 9T4c8
-#: sc/inc/strings.hrc:97
+#: sc/inc/strings.hrc:98
msgctxt "STR_ACC_EDITLINE_NAME"
msgid "Input line"
msgstr "Linenn enankañ"
#. ejFak
-#: sc/inc/strings.hrc:98
+#: sc/inc/strings.hrc:99
msgctxt "STR_ACC_EDITLINE_DESCR"
msgid "This is where you enter or edit text, numbers and formulas."
msgstr "Euvradur hag embannadur an testennoù, niveroù ha reollunioù"
#. XX585
-#: sc/inc/strings.hrc:99
+#: sc/inc/strings.hrc:100
msgctxt "SCSTR_MEDIASHELL"
msgid "Media Playback"
msgstr "Lennadur mediaoù"
#. SuAaA
-#: sc/inc/strings.hrc:100
+#: sc/inc/strings.hrc:101
msgctxt "RID_SCSTR_ONCLICK"
msgid "Mouse button pressed"
msgstr "Afell al logodenn pouezet"
#. 4prfv
-#: sc/inc/strings.hrc:101
+#: sc/inc/strings.hrc:102
msgctxt "STR_ACC_TOOLBAR_FORMULA"
msgid "Formula Tool Bar"
msgstr "Barrenn ostilhoù ar reollun"
#. nAcNZ
-#: sc/inc/strings.hrc:102
+#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_DOC_SPREADSHEET"
msgid "%PRODUCTNAME Spreadsheets"
msgstr "Renkelloù %PRODUCTNAME"
#. 8UMap
-#: sc/inc/strings.hrc:103
+#: sc/inc/strings.hrc:104
msgctxt "STR_ACC_DOC_SPREADSHEET_READONLY"
msgid "(read-only)"
msgstr "(E mod lenn nemetken)"
#. fDxgL
-#: sc/inc/strings.hrc:104
+#: sc/inc/strings.hrc:105
msgctxt "STR_ACC_DOC_PREVIEW_SUFFIX"
msgid "(Preview mode)"
msgstr "(Mod an alberz)"
#. ZwiH6
-#: sc/inc/strings.hrc:105
+#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
msgstr ""
#. FYjDY
-#: sc/inc/strings.hrc:106
+#: sc/inc/strings.hrc:107
#, fuzzy
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
msgstr "Leuskel a-gostez ar pajennoù goullo evit ar moulladur"
#. GQNVf
-#: sc/inc/strings.hrc:107
+#: sc/inc/strings.hrc:108
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
msgstr ""
#. xcKcm
-#: sc/inc/strings.hrc:108
+#: sc/inc/strings.hrc:109
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
msgstr ""
#. e7kTj
-#: sc/inc/strings.hrc:109
+#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
msgstr ""
#. z4DB6
-#: sc/inc/strings.hrc:110
+#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
msgstr ""
#. v5EK2
-#: sc/inc/strings.hrc:111
+#: sc/inc/strings.hrc:112
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
msgstr ""
#. cvNuW
-#: sc/inc/strings.hrc:112
+#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PRINTPAGES"
msgid "Pa~ges:"
msgstr ""
#. XKjab
-#: sc/inc/strings.hrc:113
+#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_PRINTEVENPAGES"
msgid "~Even pages"
msgstr ""
#. qGPgk
-#: sc/inc/strings.hrc:114
+#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_PRINTODDPAGES"
msgid "~Odd pages"
msgstr ""
#. Pw9Pu
-#: sc/inc/strings.hrc:115
+#: sc/inc/strings.hrc:116
#, fuzzy
msgctxt "SCSTR_PRINTOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
#. 4BEKq
-#: sc/inc/strings.hrc:116
+#: sc/inc/strings.hrc:117
msgctxt "SCSTR_DDEDOC_NOT_LOADED"
msgid "The following DDE source could not be updated possibly because the source document was not open. Please launch the source document and try again."
msgstr "Moarvat ne oa ket tro da hizivaat an tarzh mod DDE da heul rak ne oa ket digor tarzh an teul. Mar plij, lañsit tarzh an teul ha klaskit en-dro."
#. kGmko
-#: sc/inc/strings.hrc:117
+#: sc/inc/strings.hrc:118
msgctxt "SCSTR_EXTDOC_NOT_LOADED"
msgid "The following external file could not be loaded. Data linked from this file did not get updated."
msgstr "N'eo ket bet karget ar restr diavaez da heul. N'eo ket bet hizivaet ar roadennoù ereet ouzh ar restr-mañ."
#. BvtFc
-#: sc/inc/strings.hrc:118
+#: sc/inc/strings.hrc:119
msgctxt "SCSTR_UPDATE_EXTDOCS"
msgid "Updating external links."
msgstr "Hizivaat an ereoù diavaez."
#. MACSv
-#: sc/inc/strings.hrc:119
+#: sc/inc/strings.hrc:120
msgctxt "SCSTR_FORMULA_SYNTAX_CALC_A1"
msgid "Calc A1"
msgstr "Calc A1"
#. xEQCB
-#: sc/inc/strings.hrc:120
+#: sc/inc/strings.hrc:121
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
msgstr "Excel A1"
#. KLkBH
-#: sc/inc/strings.hrc:121
+#: sc/inc/strings.hrc:122
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
msgstr "Excel R1C1"
#. pr4wW
-#: sc/inc/strings.hrc:122
+#: sc/inc/strings.hrc:123
msgctxt "SCSTR_COL_LABEL"
msgid "Range contains column la~bels"
msgstr "Tikedennoù ~bann zo e-barzh al lijorenn"
#. mJyFP
-#: sc/inc/strings.hrc:123
+#: sc/inc/strings.hrc:124
msgctxt "SCSTR_ROW_LABEL"
msgid "Range contains ~row labels"
msgstr "Tikedennoù ~renk zo e-barzh al lijorenn"
#. ujjcx
-#: sc/inc/strings.hrc:124
+#: sc/inc/strings.hrc:125
msgctxt "SCSTR_VALERR"
msgid "Invalid value"
msgstr "Gwerzh didalvoudek"
#. SoLXN
-#: sc/inc/strings.hrc:125
+#: sc/inc/strings.hrc:126
msgctxt "STR_NOFORMULASPECIFIED"
msgid "No formula specified."
msgstr "Reollun spisaet ebet."
#. YFnCS
-#: sc/inc/strings.hrc:126
+#: sc/inc/strings.hrc:127
msgctxt "STR_NOCOLROW"
msgid "Neither row or column specified."
msgstr "N'eus ket bet spisaet na renk na bann."
#. 6YQh2
-#: sc/inc/strings.hrc:127
+#: sc/inc/strings.hrc:128
msgctxt "STR_WRONGFORMULA"
msgid "Undefined name or range."
msgstr "N'eo ket bet despizet nag anv na lijorenn"
#. 4aHCG
-#: sc/inc/strings.hrc:128
+#: sc/inc/strings.hrc:129
msgctxt "STR_WRONGROWCOL"
msgid "Undefined name or wrong cell reference."
msgstr "Anv dizespizet pe dave kellig direizh"
#. G8KPr
-#: sc/inc/strings.hrc:129
+#: sc/inc/strings.hrc:130
msgctxt "STR_NOCOLFORMULA"
msgid "Formulas don't form a column."
msgstr "Ar reollunioù ne 'z eont ket d'ober ur bann."
#. uSxCb
-#: sc/inc/strings.hrc:130
+#: sc/inc/strings.hrc:131
msgctxt "STR_NOROWFORMULA"
msgid "Formulas don't form a row."
msgstr "Ar reollunioù ne 'z eont ket d'ober ur renk."
#. PknB5
-#: sc/inc/strings.hrc:131
+#: sc/inc/strings.hrc:132
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Ouzhpennañ un EmVentrezhañ"
#. 7KuSQ
-#: sc/inc/strings.hrc:132
+#: sc/inc/strings.hrc:133
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Adenvel an EmVentrezhañ"
#. hqtgD
-#: sc/inc/strings.hrc:133
+#: sc/inc/strings.hrc:134
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Anv"
#. L9jQU
-#: sc/inc/strings.hrc:134
+#: sc/inc/strings.hrc:135
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Dilemel an EmVentrezhañ"
#. KCDoJ
-#: sc/inc/strings.hrc:135
+#: sc/inc/strings.hrc:136
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "Do you really want to delete the # AutoFormat?"
msgstr "Ha fellout a ra deoc'h dilemel an EmVentrezhañ # ?"
#. GDdL3
-#: sc/inc/strings.hrc:136
+#: sc/inc/strings.hrc:137
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Serriñ"
#. DAuNm
-#: sc/inc/strings.hrc:137
+#: sc/inc/strings.hrc:138
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Genv"
#. WWzNg
-#: sc/inc/strings.hrc:138
+#: sc/inc/strings.hrc:139
msgctxt "STR_FEB"
msgid "Feb"
msgstr "C'hwev"
#. CCC3U
-#: sc/inc/strings.hrc:139
+#: sc/inc/strings.hrc:140
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Meurzh"
#. cr7Jq
-#: sc/inc/strings.hrc:140
+#: sc/inc/strings.hrc:141
msgctxt "STR_NORTH"
msgid "North"
msgstr "Norzh"
#. wHYPw
-#: sc/inc/strings.hrc:141
+#: sc/inc/strings.hrc:142
msgctxt "STR_MID"
msgid "Mid"
msgstr "Kreiz"
#. sxDHC
-#: sc/inc/strings.hrc:142
+#: sc/inc/strings.hrc:143
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Su"
#. CWcdp
-#: sc/inc/strings.hrc:143
+#: sc/inc/strings.hrc:144
msgctxt "STR_SUM"
msgid "Total"
msgstr "Hollad"
#. MMCxb
-#: sc/inc/strings.hrc:144
+#: sc/inc/strings.hrc:145
msgctxt "SCSTR_UNDO_PAGE_ANCHOR"
msgid "Page Anchor"
msgstr "Eoriñ ouzh ar bajenn"
#. fFFQ8
-#: sc/inc/strings.hrc:145
+#: sc/inc/strings.hrc:146
msgctxt "SCSTR_UNDO_CELL_ANCHOR"
msgid "Cell Anchor"
msgstr "Eoriñ ouzh ar gellig"
#. rTGKc
-#: sc/inc/strings.hrc:146
+#: sc/inc/strings.hrc:147
#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
@@ -17533,446 +17539,446 @@ msgstr "Diferadenn"
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
-#: sc/inc/strings.hrc:149
+#: sc/inc/strings.hrc:150
msgctxt "SCSTR_CONTENT_ROOT"
msgid "Contents"
msgstr "Endalc'had"
#. wLN3J
-#: sc/inc/strings.hrc:150
+#: sc/inc/strings.hrc:151
msgctxt "SCSTR_CONTENT_TABLE"
msgid "Sheets"
msgstr "Follennoù"
#. 3ZhJn
-#: sc/inc/strings.hrc:151
+#: sc/inc/strings.hrc:152
msgctxt "SCSTR_CONTENT_RANGENAME"
msgid "Range names"
msgstr "Anvioù lijorenn"
#. jjQeD
-#: sc/inc/strings.hrc:152
+#: sc/inc/strings.hrc:153
msgctxt "SCSTR_CONTENT_DBAREA"
msgid "Database ranges"
msgstr "Lijorennoù ar stlennvon"
#. kbHfD
-#: sc/inc/strings.hrc:153
+#: sc/inc/strings.hrc:154
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
msgstr "Skeudennoù"
#. 3imVs
-#: sc/inc/strings.hrc:154
+#: sc/inc/strings.hrc:155
msgctxt "SCSTR_CONTENT_OLEOBJECT"
msgid "OLE objects"
msgstr "Ergorennoù mod OLE"
#. T28Cj
-#: sc/inc/strings.hrc:155
+#: sc/inc/strings.hrc:156
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
msgstr "Askelennoù"
#. 5UcFo
-#: sc/inc/strings.hrc:156
+#: sc/inc/strings.hrc:157
msgctxt "SCSTR_CONTENT_AREALINK"
msgid "Linked areas"
msgstr "Lijorennoù ereet"
#. HzVgF
-#: sc/inc/strings.hrc:157
+#: sc/inc/strings.hrc:158
msgctxt "SCSTR_CONTENT_DRAWING"
msgid "Drawing objects"
msgstr "Ergorennoù tresañ"
#. sCafb
-#: sc/inc/strings.hrc:158
+#: sc/inc/strings.hrc:159
msgctxt "SCSTR_ACTIVE"
msgid "active"
msgstr "oberiat"
#. q6EmB
-#: sc/inc/strings.hrc:159
+#: sc/inc/strings.hrc:160
msgctxt "SCSTR_NOTACTIVE"
msgid "inactive"
msgstr "dizoberiant"
#. Gr6xn
-#: sc/inc/strings.hrc:160
+#: sc/inc/strings.hrc:161
msgctxt "SCSTR_HIDDEN"
msgid "hidden"
msgstr "kuzh"
#. vnwQr
-#: sc/inc/strings.hrc:161
+#: sc/inc/strings.hrc:162
msgctxt "SCSTR_ACTIVEWIN"
msgid "Active Window"
msgstr "Prenestr oberiat"
#. yo3cD
-#: sc/inc/strings.hrc:162
+#: sc/inc/strings.hrc:163
#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_LISTBOX"
msgid "Scenario Name"
msgstr "Anv ar senario"
#. oWz3B
-#: sc/inc/strings.hrc:163
+#: sc/inc/strings.hrc:164
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
msgstr "Askelenn"
#. tNLKD
-#: sc/inc/strings.hrc:165
+#: sc/inc/strings.hrc:166
#, fuzzy
msgctxt "STR_MENU_SORT_ASC"
msgid "Sort Ascending"
msgstr "Rummañ war gresk"
#. S6kbN
-#: sc/inc/strings.hrc:166
+#: sc/inc/strings.hrc:167
#, fuzzy
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
msgstr "Rummañ war zigresk"
#. BDYHo
-#: sc/inc/strings.hrc:167
+#: sc/inc/strings.hrc:168
#, fuzzy
msgctxt "STR_MENU_SORT_CUSTOM"
msgid "Custom Sort"
msgstr "Rummañ personelaet"
#. bpBbA
-#: sc/inc/strings.hrc:169
+#: sc/inc/strings.hrc:170
msgctxt "SCSTR_QHELP_POSWND"
msgid "Name Box"
msgstr "Maez anv"
#. GeNTF
-#: sc/inc/strings.hrc:170
+#: sc/inc/strings.hrc:171
msgctxt "SCSTR_QHELP_INPUTWND"
msgid "Input line"
msgstr "Linenn enankañ"
#. E6mnF
-#: sc/inc/strings.hrc:171
+#: sc/inc/strings.hrc:172
msgctxt "SCSTR_QHELP_BTNCALC"
msgid "Function Wizard"
msgstr "Skoazeller ar c'hevreizhennoù"
#. rU6xA
-#: sc/inc/strings.hrc:172
+#: sc/inc/strings.hrc:173
msgctxt "SCSTR_QHELP_BTNOK"
msgid "Accept"
msgstr "Asantiñ"
#. NC6DB
-#: sc/inc/strings.hrc:173
+#: sc/inc/strings.hrc:174
msgctxt "SCSTR_QHELP_BTNCANCEL"
msgid "Cancel"
msgstr "Nullañ"
#. 9JUCF
-#: sc/inc/strings.hrc:174
+#: sc/inc/strings.hrc:175
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Select Function"
msgstr ""
#. kFqE4
-#: sc/inc/strings.hrc:175
+#: sc/inc/strings.hrc:176
msgctxt "SCSTR_QHELP_BTNEQUAL"
msgid "Formula"
msgstr "Reollun"
#. dPqKq
-#: sc/inc/strings.hrc:176
+#: sc/inc/strings.hrc:177
msgctxt "SCSTR_QHELP_EXPAND_FORMULA"
msgid "Expand Formula Bar"
msgstr "Astenn barrenn ar reollunioù"
#. ENx2Q
-#: sc/inc/strings.hrc:177
+#: sc/inc/strings.hrc:178
msgctxt "SCSTR_QHELP_COLLAPSE_FORMULA"
msgid "Collapse Formula Bar"
msgstr "Diskar barrenn ar reollunioù"
#. Bqfa8
-#: sc/inc/strings.hrc:179
+#: sc/inc/strings.hrc:180
msgctxt "STR_TITLE_AUTHOR"
msgid "Author"
msgstr "Oberour"
#. Brp6j
-#: sc/inc/strings.hrc:180
+#: sc/inc/strings.hrc:181
msgctxt "STR_TITLE_DATE"
msgid "Date"
msgstr "Deiziad"
#. nSD8r
-#: sc/inc/strings.hrc:181
+#: sc/inc/strings.hrc:182
msgctxt "STR_UNKNOWN_USER_CONFLICT"
msgid "Unknown User"
msgstr "Arveriad dianav"
#. HDiei
-#: sc/inc/strings.hrc:183
+#: sc/inc/strings.hrc:184
msgctxt "STR_CHG_INSERT_COLS"
msgid "Column inserted"
msgstr "Bann enlakaet"
#. brecA
-#: sc/inc/strings.hrc:184
+#: sc/inc/strings.hrc:185
msgctxt "STR_CHG_INSERT_ROWS"
msgid "Row inserted "
msgstr "Renk enlakaet "
#. nBf8B
-#: sc/inc/strings.hrc:185
+#: sc/inc/strings.hrc:186
msgctxt "STR_CHG_INSERT_TABS"
msgid "Sheet inserted "
msgstr "Follenn enlakaet"
#. Td8iF
-#: sc/inc/strings.hrc:186
+#: sc/inc/strings.hrc:187
msgctxt "STR_CHG_DELETE_COLS"
msgid "Column deleted"
msgstr "Bann dilamet"
#. 8Kopo
-#: sc/inc/strings.hrc:187
+#: sc/inc/strings.hrc:188
msgctxt "STR_CHG_DELETE_ROWS"
msgid "Row deleted"
msgstr "Renk dilamet"
#. DynWz
-#: sc/inc/strings.hrc:188
+#: sc/inc/strings.hrc:189
msgctxt "STR_CHG_DELETE_TABS"
msgid "Sheet deleted"
msgstr "Follenn dilamet"
#. 6f9S9
-#: sc/inc/strings.hrc:189
+#: sc/inc/strings.hrc:190
msgctxt "STR_CHG_MOVE"
msgid "Range moved"
msgstr "Lijorenn dilec'hiet"
#. UpHkf
-#: sc/inc/strings.hrc:190
+#: sc/inc/strings.hrc:191
msgctxt "STR_CHG_CONTENT"
msgid "Changed contents"
msgstr "Endalc'had kemmet"
#. cefNw
-#: sc/inc/strings.hrc:191
+#: sc/inc/strings.hrc:192
msgctxt "STR_CHG_CONTENT_WITH_CHILD"
msgid "Changed contents"
msgstr "Endalc'had kemmet"
#. DcsSq
-#: sc/inc/strings.hrc:192
+#: sc/inc/strings.hrc:193
msgctxt "STR_CHG_CHILD_CONTENT"
msgid "Changed to "
msgstr "Daskemmet e "
#. naPuN
-#: sc/inc/strings.hrc:193
+#: sc/inc/strings.hrc:194
msgctxt "STR_CHG_CHILD_ORGCONTENT"
msgid "Original"
msgstr "Orin"
#. cbtSw
-#: sc/inc/strings.hrc:194
+#: sc/inc/strings.hrc:195
msgctxt "STR_CHG_REJECT"
msgid "Changes rejected"
msgstr "Daskemmadur nac'het"
#. rGkvk
-#: sc/inc/strings.hrc:195
+#: sc/inc/strings.hrc:196
msgctxt "STR_CHG_ACCEPTED"
msgid "Accepted"
msgstr "Bet degemeret"
#. FRREF
-#: sc/inc/strings.hrc:196
+#: sc/inc/strings.hrc:197
msgctxt "STR_CHG_REJECTED"
msgid "Rejected"
msgstr "Bet nac'het"
#. bG7Pb
-#: sc/inc/strings.hrc:197
+#: sc/inc/strings.hrc:198
msgctxt "STR_CHG_NO_ENTRY"
msgid "No Entry"
msgstr "Enankad ebet"
#. i2doZ
-#: sc/inc/strings.hrc:198
+#: sc/inc/strings.hrc:199
msgctxt "STR_CHG_EMPTY"
msgid "<empty>"
msgstr "<goullo>"
#. dAt5Q
-#: sc/inc/strings.hrc:200
+#: sc/inc/strings.hrc:201
msgctxt "STR_NOT_PROTECTED"
msgid "Not protected"
msgstr "N'eo ket gwarezet"
#. 3TDDs
-#: sc/inc/strings.hrc:201
+#: sc/inc/strings.hrc:202
msgctxt "STR_NOT_PASS_PROTECTED"
msgid "Not password-protected"
msgstr "N'eo ket gwarezet gant ur ger-tremen"
#. qBe6G
-#: sc/inc/strings.hrc:202
+#: sc/inc/strings.hrc:203
msgctxt "STR_HASH_BAD"
msgid "Hash incompatible"
msgstr "N'eo ket keverlec'h gant an enrinegañ"
#. XoAEE
-#: sc/inc/strings.hrc:203
+#: sc/inc/strings.hrc:204
msgctxt "STR_HASH_GOOD"
msgid "Hash compatible"
msgstr "Keverlec'h gant an enrinegañ"
#. MHDYB
-#: sc/inc/strings.hrc:204
+#: sc/inc/strings.hrc:205
msgctxt "STR_RETYPE"
msgid "Re-type"
msgstr "Adviziata"
#. bFjd9
#. MovingAverageDialog
-#: sc/inc/strings.hrc:207
+#: sc/inc/strings.hrc:208
msgctxt "STR_MOVING_AVERAGE_UNDO_NAME"
msgid "Moving Average"
msgstr "Keitad hefiñv"
#. ZUkPQ
#. ExponentialSmoothingDialog
-#: sc/inc/strings.hrc:209
+#: sc/inc/strings.hrc:210
msgctxt "STR_EXPONENTIAL_SMOOTHING_UNDO_NAME"
msgid "Exponential Smoothing"
msgstr "Lenkraat argemmvac'hel"
#. LAfqT
#. AnalysisOfVarianceDialog
-#: sc/inc/strings.hrc:211
+#: sc/inc/strings.hrc:212
#, fuzzy
msgctxt "STR_ANALYSIS_OF_VARIANCE_UNDO_NAME"
msgid "Analysis of Variance"
msgstr "Dezrann an hebiant"
#. 8v4W5
-#: sc/inc/strings.hrc:212
+#: sc/inc/strings.hrc:213
msgctxt "STR_LABEL_ANOVA"
msgid "Analysis of Variance (ANOVA)"
msgstr ""
#. NY8WD
-#: sc/inc/strings.hrc:213
+#: sc/inc/strings.hrc:214
#, fuzzy
msgctxt "STR_ANOVA_SINGLE_FACTOR_LABEL"
msgid "ANOVA - Single Factor"
msgstr "ANOVA - Parenn eeun"
#. AFnEZ
-#: sc/inc/strings.hrc:214
+#: sc/inc/strings.hrc:215
#, fuzzy
msgctxt "STR_ANOVA_TWO_FACTOR_LABEL"
msgid "ANOVA - Two Factor"
msgstr "ANOVA - Div barenn"
#. hBPGD
-#: sc/inc/strings.hrc:215
+#: sc/inc/strings.hrc:216
msgctxt "STR_ANOVA_LABEL_GROUPS"
msgid "Groups"
msgstr "Strolladoù"
#. DiUWy
-#: sc/inc/strings.hrc:216
+#: sc/inc/strings.hrc:217
#, fuzzy
msgctxt "STR_ANOVA_LABEL_BETWEEN_GROUPS"
msgid "Between Groups"
msgstr "Etre ar strolladoù"
#. fBh3S
-#: sc/inc/strings.hrc:217
+#: sc/inc/strings.hrc:218
#, fuzzy
msgctxt "STR_ANOVA_LABEL_WITHIN_GROUPS"
msgid "Within Groups"
msgstr "E-kreiz ar strolladoù"
#. DFcw4
-#: sc/inc/strings.hrc:218
+#: sc/inc/strings.hrc:219
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SOURCE_OF_VARIATION"
msgid "Source of Variation"
msgstr "Tarzh ar argemm"
#. KYbb8
-#: sc/inc/strings.hrc:219
+#: sc/inc/strings.hrc:220
#, fuzzy
msgctxt "STR_ANOVA_LABEL_SS"
msgid "SS"
msgstr "SS"
#. j7j6E
-#: sc/inc/strings.hrc:220
+#: sc/inc/strings.hrc:221
#, fuzzy
msgctxt "STR_ANOVA_LABEL_DF"
msgid "df"
msgstr "df"
#. 6QJED
-#: sc/inc/strings.hrc:221
+#: sc/inc/strings.hrc:222
#, fuzzy
msgctxt "STR_ANOVA_LABEL_MS"
msgid "MS"
msgstr "MS"
#. JcWo9
-#: sc/inc/strings.hrc:222
+#: sc/inc/strings.hrc:223
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
msgstr ""
#. a43mP
-#: sc/inc/strings.hrc:223
+#: sc/inc/strings.hrc:224
msgctxt "STR_ANOVA_LABEL_SIGNIFICANCE_F"
msgid "Significance F"
msgstr ""
#. MMmsS
-#: sc/inc/strings.hrc:224
+#: sc/inc/strings.hrc:225
#, fuzzy
msgctxt "STR_ANOVA_LABEL_P_VALUE"
msgid "P-value"
msgstr "Gwerzh P"
#. UoaCS
-#: sc/inc/strings.hrc:225
+#: sc/inc/strings.hrc:226
#, fuzzy
msgctxt "STR_ANOVA_LABEL_F_CRITICAL"
msgid "F critical"
msgstr "Eizik F"
#. oJD9H
-#: sc/inc/strings.hrc:226
+#: sc/inc/strings.hrc:227
msgctxt "STR_ANOVA_LABEL_TOTAL"
msgid "Total"
msgstr "Hollad"
#. kvSFC
#. CorrelationDialog
-#: sc/inc/strings.hrc:228
+#: sc/inc/strings.hrc:229
msgctxt "STR_CORRELATION_UNDO_NAME"
msgid "Correlation"
msgstr "Keflen"
#. WC4SJ
-#: sc/inc/strings.hrc:229
+#: sc/inc/strings.hrc:230
#, fuzzy
msgctxt "STR_CORRELATION_LABEL"
msgid "Correlations"
@@ -17980,13 +17986,13 @@ msgstr "Keflen"
#. AAb7T
#. CovarianceDialog
-#: sc/inc/strings.hrc:231
+#: sc/inc/strings.hrc:232
msgctxt "STR_COVARIANCE_UNDO_NAME"
msgid "Covariance"
msgstr "Kehebiant"
#. VyxUL
-#: sc/inc/strings.hrc:232
+#: sc/inc/strings.hrc:233
#, fuzzy
msgctxt "STR_COVARIANCE_LABEL"
msgid "Covariances"
@@ -17994,100 +18000,100 @@ msgstr "Kehebiant"
#. 8gmqu
#. DescriptiveStatisticsDialog
-#: sc/inc/strings.hrc:234
+#: sc/inc/strings.hrc:235
msgctxt "STR_DESCRIPTIVE_STATISTICS_UNDO_NAME"
msgid "Descriptive Statistics"
msgstr "Stadegoù deskrivañ"
#. FGXC5
-#: sc/inc/strings.hrc:235
+#: sc/inc/strings.hrc:236
msgctxt "STRID_CALC_MEAN"
msgid "Mean"
msgstr "Keitad"
#. 2sHVR
-#: sc/inc/strings.hrc:236
+#: sc/inc/strings.hrc:237
msgctxt "STRID_CALC_STD_ERROR"
msgid "Standard Error"
msgstr "Fazi skoueriek"
#. KrDBB
-#: sc/inc/strings.hrc:237
+#: sc/inc/strings.hrc:238
msgctxt "STRID_CALC_MODE"
msgid "Mode"
msgstr "Mod"
#. AAbEo
-#: sc/inc/strings.hrc:238
+#: sc/inc/strings.hrc:239
#, fuzzy
msgctxt "STRID_CALC_MEDIAN"
msgid "Median"
msgstr "Kreiztuenn"
#. h2HaP
-#: sc/inc/strings.hrc:239
+#: sc/inc/strings.hrc:240
msgctxt "STRID_CALC_VARIANCE"
msgid "Variance"
msgstr "Hebiant"
#. 3uYMC
-#: sc/inc/strings.hrc:240
+#: sc/inc/strings.hrc:241
msgctxt "STRID_CALC_STD_DEVIATION"
msgid "Standard Deviation"
msgstr "Forc'had rizh"
#. JTx7f
-#: sc/inc/strings.hrc:241
+#: sc/inc/strings.hrc:242
#, fuzzy
msgctxt "STRID_CALC_KURTOSIS"
msgid "Kurtosis"
msgstr "Kurtosis"
#. EXJJt
-#: sc/inc/strings.hrc:242
+#: sc/inc/strings.hrc:243
#, fuzzy
msgctxt "STRID_CALC_SKEWNESS"
msgid "Skewness"
msgstr "Ankemparzhder"
#. HkRYo
-#: sc/inc/strings.hrc:243
+#: sc/inc/strings.hrc:244
msgctxt "STRID_CALC_RANGE"
msgid "Range"
msgstr "Lijorenn"
#. LHk8p
-#: sc/inc/strings.hrc:244
+#: sc/inc/strings.hrc:245
msgctxt "STRID_CALC_MIN"
msgid "Minimum"
msgstr "Izek"
#. LtMJs
-#: sc/inc/strings.hrc:245
+#: sc/inc/strings.hrc:246
msgctxt "STRID_CALC_MAX"
msgid "Maximum"
msgstr "Uc'hek"
#. Q5r5c
-#: sc/inc/strings.hrc:246
+#: sc/inc/strings.hrc:247
msgctxt "STRID_CALC_SUM"
msgid "Sum"
msgstr "Sammad"
#. s8K23
-#: sc/inc/strings.hrc:247
+#: sc/inc/strings.hrc:248
msgctxt "STRID_CALC_COUNT"
msgid "Count"
msgstr "Kont"
#. pU8QG
-#: sc/inc/strings.hrc:248
+#: sc/inc/strings.hrc:249
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile"
msgstr ""
#. PGXzY
-#: sc/inc/strings.hrc:249
+#: sc/inc/strings.hrc:250
#, fuzzy
msgctxt "STRID_CALC_THIRD_QUARTILE"
msgid "Third Quartile"
@@ -18095,120 +18101,120 @@ msgstr "Trede perranner"
#. gABRP
#. RandomNumberGeneratorDialog
-#: sc/inc/strings.hrc:251
+#: sc/inc/strings.hrc:252
#, fuzzy
msgctxt "STR_UNDO_DISTRIBUTION_TEMPLATE"
msgid "Random ($(DISTRIBUTION))"
msgstr "Dargouezhek ($(DISTRIBUTION))"
#. A8Rc9
-#: sc/inc/strings.hrc:252
+#: sc/inc/strings.hrc:253
msgctxt "STR_DISTRIBUTION_UNIFORM_REAL"
msgid "Uniform"
msgstr "Unvan"
#. 9ke8L
-#: sc/inc/strings.hrc:253
+#: sc/inc/strings.hrc:254
msgctxt "STR_DISTRIBUTION_UNIFORM_INTEGER"
msgid "Uniform Integer"
msgstr "niver kevan unvan"
#. GC2LH
-#: sc/inc/strings.hrc:254
+#: sc/inc/strings.hrc:255
msgctxt "STR_DISTRIBUTION_NORMAL"
msgid "Normal"
msgstr "Reizh"
#. XjQ2x
-#: sc/inc/strings.hrc:255
+#: sc/inc/strings.hrc:256
msgctxt "STR_DISTRIBUTION_CAUCHY"
msgid "Cauchy"
msgstr "Cauchy"
#. G5CqB
-#: sc/inc/strings.hrc:256
+#: sc/inc/strings.hrc:257
msgctxt "STR_DISTRIBUTION_BERNOULLI"
msgid "Bernoulli"
msgstr "Bernoulli"
#. GpJUB
-#: sc/inc/strings.hrc:257
+#: sc/inc/strings.hrc:258
msgctxt "STR_DISTRIBUTION_BINOMIAL"
msgid "Binomial"
msgstr "Binomiek"
#. 6yJKm
-#: sc/inc/strings.hrc:258
+#: sc/inc/strings.hrc:259
msgctxt "STR_DISTRIBUTION_NEGATIVE_BINOMIAL"
msgid "Negative Binomial"
msgstr "Binomiek leiel"
#. zzpmN
-#: sc/inc/strings.hrc:259
+#: sc/inc/strings.hrc:260
msgctxt "STR_DISTRIBUTION_CHI_SQUARED"
msgid "Chi Squared"
msgstr "Khi-daou"
#. NGBzX
-#: sc/inc/strings.hrc:260
+#: sc/inc/strings.hrc:261
msgctxt "STR_DISTRIBUTION_GEOMETRIC"
msgid "Geometric"
msgstr "Mentoniel"
#. BNZPE
-#: sc/inc/strings.hrc:261
+#: sc/inc/strings.hrc:262
msgctxt "STR_RNG_PARAMETER_MINIMUM"
msgid "Minimum"
msgstr "Izek"
#. EThhi
-#: sc/inc/strings.hrc:262
+#: sc/inc/strings.hrc:263
msgctxt "STR_RNG_PARAMETER_MAXIMUM"
msgid "Maximum"
msgstr "Uc'hek"
#. RPYEG
-#: sc/inc/strings.hrc:263
+#: sc/inc/strings.hrc:264
msgctxt "STR_RNG_PARAMETER_MEAN"
msgid "Mean"
msgstr "Keitad"
#. VeqrX
-#: sc/inc/strings.hrc:264
+#: sc/inc/strings.hrc:265
msgctxt "STR_RNG_PARAMETER_STANDARD_DEVIATION"
msgid "Standard Deviation"
msgstr "Forc'had rizh"
#. ChwWE
-#: sc/inc/strings.hrc:265
+#: sc/inc/strings.hrc:266
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_MEDIAN"
msgid "Median"
msgstr "Kreiztuenn"
#. SzgEb
-#: sc/inc/strings.hrc:266
+#: sc/inc/strings.hrc:267
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_SIGMA"
msgid "Sigma"
msgstr "sigma"
#. 94TBK
-#: sc/inc/strings.hrc:267
+#: sc/inc/strings.hrc:268
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_PROBABILITY"
msgid "p Value"
msgstr "Gwerzh p"
#. AfUsB
-#: sc/inc/strings.hrc:268
+#: sc/inc/strings.hrc:269
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NUMBER_OF_TRIALS"
msgid "Number of Trials"
msgstr "Niver a daolioù arnod"
#. DdfR6
-#: sc/inc/strings.hrc:269
+#: sc/inc/strings.hrc:270
#, fuzzy
msgctxt "STR_RNG_PARAMETER_STANDARD_NU_VALUE"
msgid "nu Value"
@@ -18216,366 +18222,366 @@ msgstr "Gwerzh nu"
#. gygpC
#. SamplingDialog
-#: sc/inc/strings.hrc:271
+#: sc/inc/strings.hrc:272
msgctxt "STR_SAMPLING_UNDO_NAME"
msgid "Sampling"
msgstr "Standilhonañ"
#. zLuBp
#. Names of dialogs
-#: sc/inc/strings.hrc:273
+#: sc/inc/strings.hrc:274
#, fuzzy
msgctxt "STR_FTEST"
msgid "F-test"
msgstr "Prouad f"
#. bQEfv
-#: sc/inc/strings.hrc:274
+#: sc/inc/strings.hrc:275
#, fuzzy
msgctxt "STR_FTEST_UNDO_NAME"
msgid "F-test"
msgstr "Prouad f"
#. UdsVZ
-#: sc/inc/strings.hrc:275
+#: sc/inc/strings.hrc:276
msgctxt "STR_TTEST"
msgid "Paired t-test"
msgstr ""
#. A7xTa
-#: sc/inc/strings.hrc:276
+#: sc/inc/strings.hrc:277
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
msgstr ""
#. dWPSe
-#: sc/inc/strings.hrc:277
+#: sc/inc/strings.hrc:278
#, fuzzy
msgctxt "STR_ZTEST"
msgid "z-test"
msgstr "Prouad-z"
#. QvZ7V
-#: sc/inc/strings.hrc:278
+#: sc/inc/strings.hrc:279
#, fuzzy
msgctxt "STR_ZTEST_UNDO_NAME"
msgid "z-test"
msgstr "Prouad-z"
#. D6AqL
-#: sc/inc/strings.hrc:279
+#: sc/inc/strings.hrc:280
#, fuzzy
msgctxt "STR_CHI_SQUARE_TEST"
msgid "Test of Independence (Chi-Square)"
msgstr "Prouad an dizalc'h (Khi-daou)"
#. PvFSb
-#: sc/inc/strings.hrc:280
+#: sc/inc/strings.hrc:281
msgctxt "STR_REGRESSION_UNDO_NAME"
msgid "Regression"
msgstr "Argizañ"
#. NXrYh
-#: sc/inc/strings.hrc:281
+#: sc/inc/strings.hrc:282
msgctxt "STR_REGRESSION"
msgid "Regression"
msgstr "Argizañ"
#. AM5WV
-#: sc/inc/strings.hrc:282
+#: sc/inc/strings.hrc:283
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
msgstr ""
#. hd6yJ
-#: sc/inc/strings.hrc:283
+#: sc/inc/strings.hrc:284
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
msgstr ""
#. KNJ5s
#. Common
-#: sc/inc/strings.hrc:285
+#: sc/inc/strings.hrc:286
#, fuzzy
msgctxt "STR_COLUMN_LABEL_TEMPLATE"
msgid "Column %NUMBER%"
msgstr "Bann %NUMBER%"
#. aTAGd
-#: sc/inc/strings.hrc:286
+#: sc/inc/strings.hrc:287
#, fuzzy
msgctxt "STR_ROW_LABEL_TEMPLATE"
msgid "Row %NUMBER%"
msgstr "Renk %NUMBER%"
#. nAbaC
-#: sc/inc/strings.hrc:287
+#: sc/inc/strings.hrc:288
msgctxt "STR_LABEL_ALPHA"
msgid "Alpha"
msgstr "Alfa"
#. FZZCu
-#: sc/inc/strings.hrc:288
+#: sc/inc/strings.hrc:289
#, fuzzy
msgctxt "STR_VARIABLE_1_LABEL"
msgid "Variable 1"
msgstr "Argemmenn 1"
#. pnyaa
-#: sc/inc/strings.hrc:289
+#: sc/inc/strings.hrc:290
#, fuzzy
msgctxt "STR_VARIABLE_2_LABEL"
msgid "Variable 2"
msgstr "Argemmenn 2"
#. LU4CC
-#: sc/inc/strings.hrc:290
+#: sc/inc/strings.hrc:291
#, fuzzy
msgctxt "STR_HYPOTHESIZED_MEAN_DIFFERENCE_LABEL"
msgid "Hypothesized Mean Difference"
msgstr "Diforc'h goulakaet ar c'heitad"
#. sCNt9
-#: sc/inc/strings.hrc:291
+#: sc/inc/strings.hrc:292
#, fuzzy
msgctxt "STR_OBSERVATIONS_LABEL"
msgid "Observations"
msgstr "Niñvadurioù"
#. arX5v
-#: sc/inc/strings.hrc:292
+#: sc/inc/strings.hrc:293
#, fuzzy
msgctxt "STR_OBSERVED_MEAN_DIFFERENCE_LABEL"
msgid "Observed Mean Difference"
msgstr "Diforc'h ar c'heitad bet gwelet"
#. dr3Gt
-#: sc/inc/strings.hrc:293
+#: sc/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_LABEL_RSQUARED"
msgid "R^2"
msgstr "R^2"
#. pnhCA
-#: sc/inc/strings.hrc:294
+#: sc/inc/strings.hrc:295
msgctxt "STR_LABEL_ADJUSTED_RSQUARED"
msgid "Adjusted R^2"
msgstr ""
#. ACsNA
-#: sc/inc/strings.hrc:295
+#: sc/inc/strings.hrc:296
msgctxt "STR_LABEL_XVARIABLES_COUNT"
msgid "Count of X variables"
msgstr ""
#. kEPsb
-#: sc/inc/strings.hrc:296
+#: sc/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_DEGREES_OF_FREEDOM_LABEL"
msgid "df"
msgstr "df"
#. FYUYT
-#: sc/inc/strings.hrc:297
+#: sc/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_P_VALUE_LABEL"
msgid "P-value"
msgstr "Gwerzh P"
#. S3BHc
-#: sc/inc/strings.hrc:298
+#: sc/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_CRITICAL_VALUE_LABEL"
msgid "Critical Value"
msgstr "Gwerzh eizhik"
#. wgpT3
-#: sc/inc/strings.hrc:299
+#: sc/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
msgstr "Prouad stadegoù"
#. kTwBX
-#: sc/inc/strings.hrc:300
+#: sc/inc/strings.hrc:301
msgctxt "STR_LABEL_LOWER"
msgid "Lower"
msgstr ""
#. GgFPs
-#: sc/inc/strings.hrc:301
+#: sc/inc/strings.hrc:302
msgctxt "STR_LABEL_Upper"
msgid "Upper"
msgstr ""
#. hkXzo
-#: sc/inc/strings.hrc:302
+#: sc/inc/strings.hrc:303
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
msgstr ""
#. rTFFF
-#: sc/inc/strings.hrc:303
+#: sc/inc/strings.hrc:304
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
msgstr ""
#. rtSox
#. RegressionDialog
-#: sc/inc/strings.hrc:305
+#: sc/inc/strings.hrc:306
#, fuzzy
msgctxt "STR_LABEL_LINEAR"
msgid "Linear"
msgstr "_Uelinennek"
#. kVG6g
-#: sc/inc/strings.hrc:306
+#: sc/inc/strings.hrc:307
msgctxt "STR_LABEL_LOGARITHMIC"
msgid "Logarithmic"
msgstr "Treoliek"
#. wmyFW
-#: sc/inc/strings.hrc:307
+#: sc/inc/strings.hrc:308
msgctxt "STR_LABEL_POWER"
msgid "Power"
msgstr "Mac'h"
#. GabFM
-#: sc/inc/strings.hrc:308
+#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
msgstr ""
#. 8x8DM
-#: sc/inc/strings.hrc:309
+#: sc/inc/strings.hrc:310
msgctxt "STR_MESSAGE_YINVALID_RANGE"
msgid "Dependent variable(s) range is not valid."
msgstr ""
#. E7BD2
-#: sc/inc/strings.hrc:310
+#: sc/inc/strings.hrc:311
msgctxt "STR_MESSAGE_INVALID_CONFIDENCE_LEVEL"
msgid "Confidence level must be in the interval (0, 1)."
msgstr ""
#. ZdyQs
-#: sc/inc/strings.hrc:311
+#: sc/inc/strings.hrc:312
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
msgstr ""
#. UpZqC
-#: sc/inc/strings.hrc:312
+#: sc/inc/strings.hrc:313
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
msgstr ""
#. DrsBe
-#: sc/inc/strings.hrc:313
+#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
msgid "Univariate regression : The observation count in X and Y must match."
msgstr ""
#. KuttF
-#: sc/inc/strings.hrc:314
+#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_MULTIVARIATE_NUMOBS_MISMATCH"
msgid "Multivariate regression : The observation count in X and Y must match."
msgstr ""
#. 6Cghz
-#: sc/inc/strings.hrc:315
+#: sc/inc/strings.hrc:316
#, fuzzy
msgctxt "STR_LABEL_REGRESSION_MODEL"
msgid "Regression Model"
msgstr "Skouerenn argizañ"
#. bmR5w
-#: sc/inc/strings.hrc:316
+#: sc/inc/strings.hrc:317
msgctxt "STR_LABEL_REGRESSION_STATISTICS"
msgid "Regression Statistics"
msgstr ""
#. RNHCx
-#: sc/inc/strings.hrc:317
+#: sc/inc/strings.hrc:318
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
msgstr ""
#. 4DANj
-#: sc/inc/strings.hrc:318
+#: sc/inc/strings.hrc:319
msgctxt "STR_LABEL_CONFIDENCE_LEVEL"
msgid "Confidence level"
msgstr ""
#. 9LhbX
-#: sc/inc/strings.hrc:319
+#: sc/inc/strings.hrc:320
msgctxt "STR_LABEL_COEFFICIENTS"
msgid "Coefficients"
msgstr ""
#. nyH7s
-#: sc/inc/strings.hrc:320
+#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_TSTATISTIC"
msgid "t-Statistic"
msgstr ""
#. PGno2
-#: sc/inc/strings.hrc:321
+#: sc/inc/strings.hrc:322
#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
msgstr "Kenskejañ"
#. oa4Cm
-#: sc/inc/strings.hrc:322
+#: sc/inc/strings.hrc:323
msgctxt "STR_LABEL_PREDICTEDY"
msgid "Predicted Y"
msgstr ""
#. QFEjs
-#: sc/inc/strings.hrc:323
+#: sc/inc/strings.hrc:324
msgctxt "STR_LINEST_RAW_OUTPUT_TITLE"
msgid "LINEST raw output"
msgstr ""
#. bk7FH
#. F Test
-#: sc/inc/strings.hrc:325
+#: sc/inc/strings.hrc:326
#, fuzzy
msgctxt "STR_FTEST_P_RIGHT_TAIL"
msgid "P (F<=f) right-tail"
msgstr "P (F<=f) war an tu dehou"
#. CkHJw
-#: sc/inc/strings.hrc:326
+#: sc/inc/strings.hrc:327
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_RIGHT_TAIL"
msgid "F Critical right-tail"
msgstr "F war an tu dehou eizhik"
#. J7yMZ
-#: sc/inc/strings.hrc:327
+#: sc/inc/strings.hrc:328
#, fuzzy
msgctxt "STR_FTEST_P_LEFT_TAIL"
msgid "P (F<=f) left-tail"
msgstr "P (F<=f) war an tu kleiz"
#. R3BNC
-#: sc/inc/strings.hrc:328
+#: sc/inc/strings.hrc:329
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_LEFT_TAIL"
msgid "F Critical left-tail"
msgstr "F war an tu kleiz dehou"
#. Bve5D
-#: sc/inc/strings.hrc:329
+#: sc/inc/strings.hrc:330
#, fuzzy
msgctxt "STR_FTEST_P_TWO_TAIL"
msgid "P two-tail"
msgstr "P daoudu"
#. 4YZrT
-#: sc/inc/strings.hrc:330
+#: sc/inc/strings.hrc:331
#, fuzzy
msgctxt "STR_FTEST_F_CRITICAL_TWO_TAIL"
msgid "F Critical two-tail"
@@ -18583,49 +18589,49 @@ msgstr "F daoudu eizhik"
#. qaf4N
#. t Test
-#: sc/inc/strings.hrc:332
+#: sc/inc/strings.hrc:333
#, fuzzy
msgctxt "STR_TTEST_PEARSON_CORRELATION"
msgid "Pearson Correlation"
msgstr "Keflen Pearson"
#. C6BU8
-#: sc/inc/strings.hrc:333
+#: sc/inc/strings.hrc:334
#, fuzzy
msgctxt "STR_TTEST_VARIANCE_OF_THE_DIFFERENCES"
msgid "Variance of the Differences"
msgstr "Hebiant an diforc'hioù"
#. j8NuP
-#: sc/inc/strings.hrc:334
+#: sc/inc/strings.hrc:335
#, fuzzy
msgctxt "STR_TTEST_T_STAT"
msgid "t Stat"
msgstr "Stadeg t"
#. bKoeX
-#: sc/inc/strings.hrc:335
+#: sc/inc/strings.hrc:336
#, fuzzy
msgctxt "STR_TTEST_P_ONE_TAIL"
msgid "P (T<=t) one-tail"
msgstr "P (T<=t) untu"
#. dub8R
-#: sc/inc/strings.hrc:336
+#: sc/inc/strings.hrc:337
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_ONE_TAIL"
msgid "t Critical one-tail"
msgstr "t untu eizhik"
#. FrDDz
-#: sc/inc/strings.hrc:337
+#: sc/inc/strings.hrc:338
#, fuzzy
msgctxt "STR_TTEST_P_TWO_TAIL"
msgid "P (T<=t) two-tail"
msgstr "P (T<=t) daoudu"
#. RQqAd
-#: sc/inc/strings.hrc:338
+#: sc/inc/strings.hrc:339
#, fuzzy
msgctxt "STR_TTEST_T_CRITICAL_TWO_TAIL"
msgid "t Critical two-tail"
@@ -18633,41 +18639,41 @@ msgstr "t daoudu eizhik"
#. kDCsZ
#. Z Test
-#: sc/inc/strings.hrc:340
+#: sc/inc/strings.hrc:341
msgctxt "STR_ZTEST_Z_VALUE"
msgid "z"
msgstr ""
#. CF8D5
-#: sc/inc/strings.hrc:341
+#: sc/inc/strings.hrc:342
#, fuzzy
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
msgstr "Hebiant anavezet"
#. cYWDr
-#: sc/inc/strings.hrc:342
+#: sc/inc/strings.hrc:343
#, fuzzy
msgctxt "STR_ZTEST_P_ONE_TAIL"
msgid "P (Z<=z) one-tail"
msgstr "P (Z<=z) untu"
#. DmEVf
-#: sc/inc/strings.hrc:343
+#: sc/inc/strings.hrc:344
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_ONE_TAIL"
msgid "z Critical one-tail"
msgstr "z untu eizhik"
#. G8PeP
-#: sc/inc/strings.hrc:344
+#: sc/inc/strings.hrc:345
#, fuzzy
msgctxt "STR_ZTEST_P_TWO_TAIL"
msgid "P (Z<=z) two-tail"
msgstr "P (T<=z) daoudu"
#. rGBfK
-#: sc/inc/strings.hrc:345
+#: sc/inc/strings.hrc:346
#, fuzzy
msgctxt "STR_ZTEST_Z_CRITICAL_TWO_TAIL"
msgid "z Critical two-tail"
@@ -18675,111 +18681,111 @@ msgstr "z daoudu eizhik"
#. mCsCB
#. Fourier Analysis
-#: sc/inc/strings.hrc:347
+#: sc/inc/strings.hrc:348
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
msgstr ""
#. sc3hp
-#: sc/inc/strings.hrc:348
+#: sc/inc/strings.hrc:349
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
msgstr ""
#. AtC94
-#: sc/inc/strings.hrc:349
+#: sc/inc/strings.hrc:350
msgctxt "STR_REAL_PART"
msgid "Real"
msgstr ""
#. SoyPr
-#: sc/inc/strings.hrc:350
+#: sc/inc/strings.hrc:351
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
msgstr ""
#. ymnyT
-#: sc/inc/strings.hrc:351
+#: sc/inc/strings.hrc:352
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
msgstr ""
#. NGmmD
-#: sc/inc/strings.hrc:352
+#: sc/inc/strings.hrc:353
msgctxt "STR_PHASE_PART"
msgid "Phase"
msgstr ""
#. E7Eez
-#: sc/inc/strings.hrc:353
+#: sc/inc/strings.hrc:354
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
msgstr ""
#. wF2RV
-#: sc/inc/strings.hrc:354
+#: sc/inc/strings.hrc:355
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
msgstr ""
#. DRbrH
-#: sc/inc/strings.hrc:355
+#: sc/inc/strings.hrc:356
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
msgstr ""
#. gjC2w
-#: sc/inc/strings.hrc:356
+#: sc/inc/strings.hrc:357
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
msgstr ""
#. SnGyL
-#: sc/inc/strings.hrc:357
+#: sc/inc/strings.hrc:358
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
msgstr ""
#. EaQGL
#. infobar for allowing links to update or not
-#: sc/inc/strings.hrc:359
+#: sc/inc/strings.hrc:360
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
msgstr ""
#. w5Gd7
#. Insert image dialog
-#: sc/inc/strings.hrc:361
+#: sc/inc/strings.hrc:362
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
msgstr ""
#. itvXY
-#: sc/inc/strings.hrc:362
+#: sc/inc/strings.hrc:363
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
msgstr ""
#. P8vG7
-#: sc/inc/strings.hrc:363
+#: sc/inc/strings.hrc:364
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
msgstr ""
#. SSc6B
-#: sc/inc/strings.hrc:365
+#: sc/inc/strings.hrc:366
msgctxt "sharedocumentdlg|nouserdata"
msgid "No user data available."
msgstr "Roadennoù an arveriaded hegerz ebet"
#. FFnfu
-#: sc/inc/strings.hrc:366
+#: sc/inc/strings.hrc:367
msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(haeziñ ezpellaus)"
#. hitQA
-#: sc/inc/strings.hrc:367
+#: sc/inc/strings.hrc:368
msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
msgid "No named ranges available in the selected document"
msgstr ""
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index c6a3d9741ea..4c9cea7787c 100644
--- a/source/br/sd/messages.po
+++ b/source/br/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3642,9 +3642,9 @@ msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Lakaat da genglotañ gant ar bajennad voulladus"
-#. Wb2WZ
+#. dETyo
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:230
-msgctxt "drawprinteroptions|extended_tip|fitoprinttable"
+msgctxt "drawprinteroptions|extended_tip|fittoprinttable"
msgid "Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer."
msgstr ""
@@ -3654,9 +3654,9 @@ msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Dasparzhañ war veur a bajenn baper"
-#. WU6QM
+#. gYaD7
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:252
-msgctxt "drawprinteroptions|extended_tip|disrtibuteonmultiple"
+msgctxt "drawprinteroptions|extended_tip|distributeonmultiple"
msgid "Prints a large format document, such as a poster or banner, by distributing the document page across multiple sheets of paper. The distribution option calculates how many sheets of paper are needed. You can then piece together the sheets."
msgstr ""
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index 0079cccd6de..4d478d8534e 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+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"
@@ -3019,148 +3019,148 @@ msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
-#. qVgcX
-#: sfx2/uiconfig/ui/developmenttool.ui:104
-#: sfx2/uiconfig/ui/developmenttool.ui:421
-msgctxt "developmenttool|object"
-msgid "Object"
-msgstr ""
-
#. tC2rt
-#: sfx2/uiconfig/ui/developmenttool.ui:137
+#: sfx2/uiconfig/ui/developmenttool.ui:96
msgctxt "developmenttool|dom_current_selection_toggle-tooltip"
msgid "Current Selection In Document"
msgstr ""
#. Po2S3
-#: sfx2/uiconfig/ui/developmenttool.ui:138
+#: sfx2/uiconfig/ui/developmenttool.ui:97
msgctxt "developmenttool|dom_current_selection_toggle"
msgid "Current Selection"
msgstr ""
#. eB6NR
-#: sfx2/uiconfig/ui/developmenttool.ui:150
+#: sfx2/uiconfig/ui/developmenttool.ui:109
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
msgstr ""
#. FD2yt
-#: sfx2/uiconfig/ui/developmenttool.ui:151
+#: sfx2/uiconfig/ui/developmenttool.ui:110
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
msgstr ""
+#. qVgcX
+#: sfx2/uiconfig/ui/developmenttool.ui:155
+#: sfx2/uiconfig/ui/developmenttool.ui:418
+msgctxt "developmenttool|object"
+msgid "Object"
+msgstr ""
+
#. x6GLB
-#: sfx2/uiconfig/ui/developmenttool.ui:204
+#: sfx2/uiconfig/ui/developmenttool.ui:203
msgctxt "developmenttool|tooltip-back"
msgid "Back"
msgstr ""
#. SinPk
-#: sfx2/uiconfig/ui/developmenttool.ui:205
+#: sfx2/uiconfig/ui/developmenttool.ui:204
msgctxt "developmenttool|back"
msgid "Back"
msgstr ""
#. 4CBb3
-#: sfx2/uiconfig/ui/developmenttool.ui:218
+#: sfx2/uiconfig/ui/developmenttool.ui:217
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
msgstr ""
#. vCciB
-#: sfx2/uiconfig/ui/developmenttool.ui:219
+#: sfx2/uiconfig/ui/developmenttool.ui:218
msgctxt "developmenttool|inspect"
msgid "Inspect"
msgstr ""
#. nFMXe
-#: sfx2/uiconfig/ui/developmenttool.ui:232
+#: sfx2/uiconfig/ui/developmenttool.ui:231
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
msgstr ""
#. CFuvW
-#: sfx2/uiconfig/ui/developmenttool.ui:233
+#: sfx2/uiconfig/ui/developmenttool.ui:232
msgctxt "developmenttool|refresh"
msgid "Refresh"
msgstr ""
#. 6gFmn
-#: sfx2/uiconfig/ui/developmenttool.ui:257
+#: sfx2/uiconfig/ui/developmenttool.ui:256
msgctxt "developmenttool|classname"
msgid "Class name:"
msgstr ""
#. a9j7f
-#: sfx2/uiconfig/ui/developmenttool.ui:320
-#: sfx2/uiconfig/ui/developmenttool.ui:366
+#: sfx2/uiconfig/ui/developmenttool.ui:319
+#: sfx2/uiconfig/ui/developmenttool.ui:364
msgctxt "developmenttool|name"
msgid "Name"
msgstr ""
#. VFqAa
-#: sfx2/uiconfig/ui/developmenttool.ui:340
+#: sfx2/uiconfig/ui/developmenttool.ui:338
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
msgstr ""
#. iCdWe
-#: sfx2/uiconfig/ui/developmenttool.ui:389
+#: sfx2/uiconfig/ui/developmenttool.ui:386
msgctxt "developmenttool|services"
msgid "Services"
msgstr ""
#. H7pYE
-#: sfx2/uiconfig/ui/developmenttool.ui:436
+#: sfx2/uiconfig/ui/developmenttool.ui:432
msgctxt "developmenttool|value"
msgid "Value"
msgstr ""
#. Jjkqh
-#: sfx2/uiconfig/ui/developmenttool.ui:451
+#: sfx2/uiconfig/ui/developmenttool.ui:446
msgctxt "developmenttool|type"
msgid "Type"
msgstr ""
#. zpXuY
-#: sfx2/uiconfig/ui/developmenttool.ui:466
+#: sfx2/uiconfig/ui/developmenttool.ui:460
msgctxt "developmenttool|info"
msgid "Info"
msgstr ""
#. AUktw
-#: sfx2/uiconfig/ui/developmenttool.ui:518
+#: sfx2/uiconfig/ui/developmenttool.ui:511
msgctxt "developmenttool|properties"
msgid "Properties"
msgstr ""
#. wGJtn
-#: sfx2/uiconfig/ui/developmenttool.ui:545
+#: sfx2/uiconfig/ui/developmenttool.ui:538
msgctxt "developmenttool|method"
msgid "Method"
msgstr ""
#. EnGfg
-#: sfx2/uiconfig/ui/developmenttool.ui:560
+#: sfx2/uiconfig/ui/developmenttool.ui:552
msgctxt "developmenttool|returntype"
msgid "Return Type"
msgstr ""
#. AKnSa
-#: sfx2/uiconfig/ui/developmenttool.ui:575
+#: sfx2/uiconfig/ui/developmenttool.ui:566
msgctxt "developmenttool|parameters"
msgid "Parameters"
msgstr ""
#. tmttq
-#: sfx2/uiconfig/ui/developmenttool.ui:590
+#: sfx2/uiconfig/ui/developmenttool.ui:580
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
msgstr ""
#. Q2CBK
-#: sfx2/uiconfig/ui/developmenttool.ui:613
+#: sfx2/uiconfig/ui/developmenttool.ui:602
msgctxt "developmenttool|methods"
msgid "Methods"
msgstr ""
@@ -3172,55 +3172,55 @@ msgid "Inspect"
msgstr ""
#. zjFgn
-#: sfx2/uiconfig/ui/documentfontspage.ui:27
+#: sfx2/uiconfig/ui/documentfontspage.ui:28
msgctxt "documentfontspage|embedFonts"
msgid "_Embed fonts in the document"
msgstr "_Enkorfañ an nodrezhoù en teul"
#. FzuRv
-#: sfx2/uiconfig/ui/documentfontspage.ui:35
+#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
msgstr ""
#. 6rfon
-#: sfx2/uiconfig/ui/documentfontspage.ui:47
+#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
msgstr ""
#. V8E5f
-#: sfx2/uiconfig/ui/documentfontspage.ui:66
+#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
msgstr ""
#. Gip6V
-#: sfx2/uiconfig/ui/documentfontspage.ui:93
+#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
msgstr ""
#. nFM92
-#: sfx2/uiconfig/ui/documentfontspage.ui:108
+#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
msgstr ""
#. nSg9b
-#: sfx2/uiconfig/ui/documentfontspage.ui:123
+#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
msgstr ""
#. EFytK
-#: sfx2/uiconfig/ui/documentfontspage.ui:142
+#: sfx2/uiconfig/ui/documentfontspage.ui:144
msgctxt "documentfontspage|fontScriptFrameLabel"
msgid "Font scripts to embed"
msgstr ""
#. izc2Y
-#: sfx2/uiconfig/ui/documentfontspage.ui:156
+#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
msgstr ""
@@ -3694,19 +3694,19 @@ msgid "Remove Property"
msgstr ""
#. 8gPai
-#: sfx2/uiconfig/ui/linefragment.ui:149
+#: sfx2/uiconfig/ui/linefragment.ui:148
msgctxt "linefragment|SFX_ST_EDIT"
msgid "..."
msgstr ""
#. x4Fjd
-#: sfx2/uiconfig/ui/linefragment.ui:185
+#: sfx2/uiconfig/ui/linefragment.ui:184
msgctxt "linefragment|yes"
msgid "Yes"
msgstr ""
#. mJFyB
-#: sfx2/uiconfig/ui/linefragment.ui:200
+#: sfx2/uiconfig/ui/linefragment.ui:199
msgctxt "linefragment|no"
msgid "No"
msgstr ""
@@ -4566,61 +4566,61 @@ msgid "Wrap _around"
msgstr "Kl_ask tro-dro dezhi"
#. onEmh
-#: sfx2/uiconfig/ui/securityinfopage.ui:21
+#: sfx2/uiconfig/ui/securityinfopage.ui:22
msgctxt "securityinfopage|readonly"
msgid "_Open file read-only"
msgstr "_Digeriñ ur restr e mod lenn nemetken"
#. HCEUE
-#: sfx2/uiconfig/ui/securityinfopage.ui:30
+#: sfx2/uiconfig/ui/securityinfopage.ui:31
msgctxt "securityinfopage|extended_tip|readonly"
msgid "Select to allow this document to be opened in read-only mode only."
msgstr ""
#. GvCw9
-#: sfx2/uiconfig/ui/securityinfopage.ui:41
+#: sfx2/uiconfig/ui/securityinfopage.ui:42
msgctxt "securityinfopage|recordchanges"
msgid "Record _changes"
msgstr "Enrollañ ar _c'hemmoù"
#. pNhop
-#: sfx2/uiconfig/ui/securityinfopage.ui:49
+#: sfx2/uiconfig/ui/securityinfopage.ui:50
msgctxt "securityinfopage|extended_tip|recordchanges"
msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record."
msgstr ""
#. Nv8rA
-#: sfx2/uiconfig/ui/securityinfopage.ui:65
+#: sfx2/uiconfig/ui/securityinfopage.ui:66
msgctxt "securityinfopage|protect"
msgid "Protect..."
msgstr "Gwareziñ..."
#. 6T6ZP
-#: sfx2/uiconfig/ui/securityinfopage.ui:71
+#: sfx2/uiconfig/ui/securityinfopage.ui:72
msgctxt "securityinfopage|extended_tip|protect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. jgWP4
-#: sfx2/uiconfig/ui/securityinfopage.ui:83
+#: sfx2/uiconfig/ui/securityinfopage.ui:84
msgctxt "securityinfopage|unprotect"
msgid "_Unprotect..."
msgstr "_Diwareziñ..."
#. UEdGx
-#: sfx2/uiconfig/ui/securityinfopage.ui:90
+#: sfx2/uiconfig/ui/securityinfopage.ui:91
msgctxt "securityinfopage|extended_tip|unprotect"
msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection."
msgstr ""
#. JNezG
-#: sfx2/uiconfig/ui/securityinfopage.ui:112
+#: sfx2/uiconfig/ui/securityinfopage.ui:113
msgctxt "securityinfopage|label47"
msgid "File Sharing Options"
msgstr "Dibarzhioù a-fet rannañ ur restr"
#. VXrJ5
-#: sfx2/uiconfig/ui/securityinfopage.ui:120
+#: sfx2/uiconfig/ui/securityinfopage.ui:121
msgctxt "securityinfopage|extended_tip|SecurityInfoPage"
msgid "Sets password options for the current document."
msgstr ""
diff --git a/source/br/starmath/messages.po b/source/br/starmath/messages.po
index 8eecb104bf6..c6e5afdcbcf 100644
--- a/source/br/starmath/messages.po
+++ b/source/br/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+0200\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3269,127 +3269,140 @@ msgid "These changes will apply for all new formulas."
msgstr "Arloet e vo ar c'hemmoù-mañ d'an holl reollunioù nevez."
#. 6EqHz
-#: starmath/uiconfig/smath/ui/smathsettings.ui:35
+#: starmath/uiconfig/smath/ui/smathsettings.ui:41
msgctxt "smathsettings|title"
msgid "_Title row"
msgstr "_Renk an titl"
#. C2ppj
-#: starmath/uiconfig/smath/ui/smathsettings.ui:43
+#: starmath/uiconfig/smath/ui/smathsettings.ui:49
msgctxt "extended_tip|title"
msgid "Specifies whether you want the name of the document to be included in the printout."
msgstr ""
#. TPGNp
-#: starmath/uiconfig/smath/ui/smathsettings.ui:55
+#: starmath/uiconfig/smath/ui/smathsettings.ui:61
msgctxt "smathsettings|text"
msgid "_Formula text"
msgstr "_Testenn ar reollun"
#. MkGvA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:63
+#: starmath/uiconfig/smath/ui/smathsettings.ui:69
msgctxt "extended_tip|text"
msgid "Specifies whether to include the contents of the Commands window at the bottom of the printout."
msgstr ""
#. z9Sxv
-#: starmath/uiconfig/smath/ui/smathsettings.ui:75
+#: starmath/uiconfig/smath/ui/smathsettings.ui:81
msgctxt "smathsettings|frame"
msgid "B_order"
msgstr "_Riblenn"
#. EYcyA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:83
+#: starmath/uiconfig/smath/ui/smathsettings.ui:89
msgctxt "extended_tip|frame"
msgid "Applies a thin border to the formula area in the printout."
msgstr ""
#. Fs5q2
-#: starmath/uiconfig/smath/ui/smathsettings.ui:99
+#: starmath/uiconfig/smath/ui/smathsettings.ui:105
msgctxt "smathsettings|label4"
msgid "Print Options"
msgstr "Dibarzhioù moullañ"
#. QCh6f
-#: starmath/uiconfig/smath/ui/smathsettings.ui:129
+#: starmath/uiconfig/smath/ui/smathsettings.ui:135
msgctxt "smathsettings|sizenormal"
msgid "O_riginal size"
msgstr "Ment a-_orin"
#. sDAYF
-#: starmath/uiconfig/smath/ui/smathsettings.ui:138
+#: starmath/uiconfig/smath/ui/smathsettings.ui:144
msgctxt "extended_tip|sizenormal"
msgid "Prints the formula without adjusting the current font size."
msgstr ""
#. P4NBd
-#: starmath/uiconfig/smath/ui/smathsettings.ui:150
+#: starmath/uiconfig/smath/ui/smathsettings.ui:156
msgctxt "smathsettings|sizescaled"
msgid "Fit to _page"
msgstr "Lakaat da genglotañ gant ar _bajenn"
#. zhmgc
-#: starmath/uiconfig/smath/ui/smathsettings.ui:159
+#: starmath/uiconfig/smath/ui/smathsettings.ui:165
msgctxt "extended_tip|sizescaled"
msgid "Adjusts the formula to the page format used in the printout."
msgstr ""
#. Jy2Fh
-#: starmath/uiconfig/smath/ui/smathsettings.ui:176
+#: starmath/uiconfig/smath/ui/smathsettings.ui:182
msgctxt "smathsettings|sizezoomed"
msgid "_Scaling:"
msgstr "_Skeuliadañ :"
#. vFT2d
-#: starmath/uiconfig/smath/ui/smathsettings.ui:199
+#: starmath/uiconfig/smath/ui/smathsettings.ui:205
msgctxt "extended_tip|zoom"
msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor."
msgstr ""
#. kMZqq
-#: starmath/uiconfig/smath/ui/smathsettings.ui:222
+#: starmath/uiconfig/smath/ui/smathsettings.ui:228
msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Mentrezh moullañ"
#. s7A4r
-#: starmath/uiconfig/smath/ui/smathsettings.ui:251
+#: starmath/uiconfig/smath/ui/smathsettings.ui:257
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Leuskel a-_gostez ~~ ha ` e dibenn al linennad"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:259
+#: starmath/uiconfig/smath/ui/smathsettings.ui:265
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:271
+#: starmath/uiconfig/smath/ui/smathsettings.ui:277
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Enkorfañ an arouezioù arveret hepken (ment restr vihanoc'h)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:279
+#: starmath/uiconfig/smath/ui/smathsettings.ui:285
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:291
+#: starmath/uiconfig/smath/ui/smathsettings.ui:297
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Serriñ emgefreek ar c'hrochedoù, ar c'hrommelloù, ar briataennoù"
+#. M4uaa
+#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+msgctxt "smathsettings|smzoom"
+msgid "Scaling code input window:"
+msgstr ""
+
+#. sZMPm
+#: starmath/uiconfig/smath/ui/smathsettings.ui:337
+#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+msgctxt "extended_tip|smzoom"
+msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
+msgstr ""
+
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:310
+#: starmath/uiconfig/smath/ui/smathsettings.ui:363
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Dibarzhioù liesseurt"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:325
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index 432cd9d7407..6a5b39c078a 100644
--- a/source/br/svx/messages.po
+++ b/source/br/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-05-05 17:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:15+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Breton <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/br/>\n"
@@ -14104,6 +14104,12 @@ msgctxt "crashreportdlg|check_safemode"
msgid "Restart %PRODUCTNAME to enter safe mode"
msgstr ""
+#. w9G97
+#: svx/uiconfig/ui/crashreportdlg.ui:144
+msgctxt "crashreportdlg|privacy"
+msgid "Privacy Policy"
+msgstr ""
+
#. gsFSM
#: svx/uiconfig/ui/datanavigator.ui:12
msgctxt "datanavigator|instancesadd"
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index 5697e60b725..baccd42ff27 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-05-14 14:16+0200\n"
+"POT-Creation-Date: 2021-05-31 15:16+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"
@@ -8329,1213 +8329,1219 @@ msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr ""
-#. hDUSa
+#. Uszmm
#: sw/inc/strings.hrc:1115
+msgctxt "STR_FLY_AT_CHAR"
+msgid "to character"
+msgstr ""
+
+#. hDUSa
+#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "ouzh ar bajenn"
#. JMHRz
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1117
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Daveenn X :"
#. oCZWW
-#: sw/inc/strings.hrc:1117
+#: sw/inc/strings.hrc:1118
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Daveenn Y :"
#. YNKE6
-#: sw/inc/strings.hrc:1118
+#: sw/inc/strings.hrc:1119
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "e krec'h"
#. GPTAu
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1120
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Kreizet a-serzh"
#. fcpTS
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1121
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "en traoñ"
#. 37hos
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1122
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Krec'h al linenn"
#. MU7hC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1123
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Kreizet war al linenn"
#. ZvEq7
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1124
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Traoñ al linenn"
#. jypsG
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1125
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr ""
#. Cui3U
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1126
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr ""
#. 4RL9X
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1127
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "a-zehou"
#. wzGK7
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1128
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Kreizet a-blaen"
#. ngRmB
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1129
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "a-gleiz"
#. JyHkM
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1130
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "en diabarzh"
#. iXSZZ
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "en diavaez"
#. kDY9Z
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1132
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "War al led a-bezh"
#. Hvn8D
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1133
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Bannoù"
#. 6j6TA
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1134
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Led al linenn gefarz :"
#. dvdDt
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1135
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Maez notennoù en traoñ bajenn uc'hek :"
#. BWqF3
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1136
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Da embann en teul e mod Lenn hepken"
#. SCL5F
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1137
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Troc'hañ"
#. CFmBk
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1138
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr ""
#. HvZBm
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1139
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr ""
#. QDaFk
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1140
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "ereet ouzh "
#. rWmT8
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1141
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "et "
#. H2Kwq
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1142
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Kontañ al linennoù"
#. yjSiJ
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1143
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "na gontañ al linennoù"
#. HE4BV
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1144
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "adkregiñ gant kontañ al linennoù da :"
#. 7Q8qC
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1145
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Lintr : "
#. sNxPE
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1146
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Ruz : "
#. u73NC
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1147
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Gwer : "
#. qQsPp
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1148
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Glas : "
#. BS4nZ
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1149
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Dargemm : "
#. avJBK
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1150
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Gamma : "
#. HQCJZ
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1151
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Boullder : "
#. 5jDK3
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1152
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Tuginañ"
#. DVSAx
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1153
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "chom hep tuginañ"
#. Z7tXB
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1154
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Mod Kevregañ : "
#. RXuUF
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1155
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Skoueriek"
#. kbALJ
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1156
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Liveoù louedoù"
#. eSHEj
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1157
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Gwenn & Du"
#. tABTr
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1158
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Rouedigell"
#. 8SwC3
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1159
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "C'hwelañ"
#. hWEeF
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1160
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Kael ebet"
#. HEuEv
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1161
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Kael (al linennoù hepken)"
#. VFgMq
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1162
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Kael (linennoù hag arouezennoù)"
#. VRJrB
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1163
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Heuliañ ar gwidennadurioù testenn"
#. Sb3Je
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1164
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Na heuliañ ar gwidennadurioù testenn"
#. yXFKP
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1165
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Toueziañ ar riblennoù"
#. vwHbS
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1166
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Na doueziañ ar riblennoù"
#. 3874B
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1168
msgctxt "ST_TBL"
msgid "Table"
msgstr "Taolenn"
#. T9JAj
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1169
msgctxt "ST_FRM"
msgid "Frame"
msgstr ""
#. Fsnm6
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1170
msgctxt "ST_PGE"
msgid "Page"
msgstr "Pajenn"
#. pKFCz
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1171
msgctxt "ST_DRW"
msgid "Drawing"
msgstr "Tresadenn"
#. amiSY
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1172
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Reoliñ"
#. GEw9u
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1173
msgctxt "ST_REG"
msgid "Section"
msgstr "Kevrenn"
#. bEiyL
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1174
msgctxt "ST_BKM"
msgid "Bookmark"
msgstr "Sined"
#. 6gXCo
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1175
msgctxt "ST_GRF"
msgid "Graphics"
msgstr "Skeudennoù"
#. d5eSc
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1176
msgctxt "ST_OLE"
msgid "OLE object"
msgstr "Ergorenn mod OLE"
#. h5QQ8
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1177
msgctxt "ST_OUTL"
msgid "Headings"
msgstr "Titloù"
#. Cbktp
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1178
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Diuzad"
#. nquvS
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1179
msgctxt "ST_FTN"
msgid "Footnote"
msgstr "Notenn diaz bajenn"
#. GpAUo
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1180
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Kouner"
#. nDFKa
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1181
msgctxt "ST_POSTIT"
msgid "Comment"
msgstr "Askelenn"
#. qpbDE
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1182
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Arren ar c'hlask"
#. ipxfH
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1183
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
msgstr "Enankad an ibil"
#. sfmff
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1184
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Reollun an daolenn"
#. DtkuT
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1185
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Reollun an daolenn fall"
#. A6Vgk
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1186
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr ""
#. pCp7u
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1187
msgctxt "ST_FIELD"
msgid "Field"
msgstr ""
#. LYuHA
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1188
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr ""
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1190
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Taolenn da-heul"
#. yhnpi
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1191
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1192
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Pajenn da-heul"
#. UWeq4
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1193
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Tresadenn da-heul"
#. ZVCrD
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1194
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Elfenn reoliñ da-heul"
#. NGAqr
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Kevrenn da-heul"
#. Mwcvm
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1196
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Sined da-heul"
#. xbxDs
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1197
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Skeudenn da-heul"
#. 4ovAF
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1198
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Ergorenn mod OLE war-lerc'h"
#. YzK6w
-#: sw/inc/strings.hrc:1198
+#: sw/inc/strings.hrc:1199
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Titl da-heul"
#. skdRc
-#: sw/inc/strings.hrc:1199
+#: sw/inc/strings.hrc:1200
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Diuzad da-heul"
#. RBFga
-#: sw/inc/strings.hrc:1200
+#: sw/inc/strings.hrc:1201
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Notenn diaz pajenn war-lerc'h"
#. GNLrx
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1202
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Kouner da-heul"
#. mFCfp
-#: sw/inc/strings.hrc:1202
+#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Askelenn war-lerc'h"
#. gbnwp
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Kenderc'hel gant ar c'hlask pelloc'h"
#. TXYkA
-#: sw/inc/strings.hrc:1204
+#: sw/inc/strings.hrc:1205
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Enankad an ibil war-lerc'h"
#. EyvbV
-#: sw/inc/strings.hrc:1205
+#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Taolenn gent"
#. cC5vJ
-#: sw/inc/strings.hrc:1206
+#: sw/inc/strings.hrc:1207
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1207
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Pajenn gent"
#. p5jbU
-#: sw/inc/strings.hrc:1208
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Tresadenn gent"
#. 2WMmZ
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Elfenn reoliñ kent"
#. 6uGDP
-#: sw/inc/strings.hrc:1210
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Diuzad kent"
#. YYCtk
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Sined kent"
#. nFLdX
-#: sw/inc/strings.hrc:1212
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Skeudenn gent"
#. VuxvB
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Ergorenn mod OLE kent"
#. QSuct
-#: sw/inc/strings.hrc:1214
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Titl kent"
#. CzLBr
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Diuzad kent"
#. B7PoL
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Notenn diaz pajenn gent"
#. AgtLD
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Kouner kent"
#. GJQ6F
-#: sw/inc/strings.hrc:1218
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Askelenn kent"
#. GWnfD
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Kenderc'hel gant ar c'hlask etrezek ar c'hrec'h"
#. uDtcG
-#: sw/inc/strings.hrc:1220
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Enankad an ibil kent"
#. VR6DX
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Reollun taolenn kent"
#. GqESF
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Reollun taolenn da-heul"
#. gBgxo
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Reollun taolenn faziek kent"
#. UAon9
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Reollun taolenn faziek da-heul"
#. L2Apv
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr ""
#. jCsGs
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr ""
#. o3BBz
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr ""
#. bQ33Z
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr ""
-#. 36kGp
-#: sw/inc/strings.hrc:1229
+#. bhUaK
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
-msgid "Previous field with current field type"
+msgid "Previous '%FIELDTYPE' field"
msgstr ""
-#. GCXbu
-#: sw/inc/strings.hrc:1230
+#. A8HWi
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
-msgid "Next field with current field type"
+msgid "Next '%FIELDTYPE' field"
msgstr ""
#. hSYa3
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1233
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Enlakaet"
#. LnFkq
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1234
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Dilamet"
#. cTNEn
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1235
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Mentrezhet"
#. YWr7C
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1236
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Taolenn daskemmet"
#. 6xVDN
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1237
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Arloet eo bet ar stiloù rannbennad"
#. 32AND
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr ""
#. wLDkj
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1239
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Renk enlakaet "
#. Eb5Gb
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1240
#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Renk dilamet"
#. i5ZJt
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1241
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr ""
#. 4gE3z
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1242
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr ""
#. DRCyp
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1243
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Notenn dibenn : "
#. qpW2q
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1244
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Notenn diaz pajenn : "
#. 3RFUd
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1245
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-klik evit digeriñ lañser ar c'hlavioù speredek (Smart Tag)"
#. QCD36
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1246
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Reollin (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1247
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Reollin ar bajenn gentañ (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1248
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Reollin ar bajenn gleiz (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1249
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Reollin ar bajenn dehou (%1) "
#. 6GzuM
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1250
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Troad pajenn (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1251
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Troad pajenn ar bajenn gentañ (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1252
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Troad pajenn ar bajenn gleiz (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1253
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Troad pajenn ar bajenn dehou (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1254
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Dilemel ar reollin..."
#. wL3Fr
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1255
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Mentrezhañ ar reollin..."
#. DrAUe
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1256
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Dilemel an troad pajenn..."
#. 9Xgou
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1257
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Mentrezhañ an troad pajenn..."
#. ApT5B
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1259
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr ""
#. wVAZJ
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1261
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr ""
#. uvDKE
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1263
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "N'haller ket digeriñ restr ar skeudenn"
#. iJuAv
-#: sw/inc/strings.hrc:1263
+#: sw/inc/strings.hrc:1264
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "N'haller ket lenn restr ar skeudenn"
#. Bwwho
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1265
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Mentrezh skeudenn dianav"
#. bfog5
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1266
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "N'eo ket skoret handelv ar restr skeudenn"
#. xy4Vm
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1267
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "N'eo ket bet kavet ar sil skeudennoù"
#. tEqyq
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1268
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Memor re skort evit enlakaat ar skeudenn."
#. 5ihue
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1269
msgctxt "STR_INSERT_GRAPHIC"